Giter Club home page Giter Club logo

gparallelizer's People

Contributors

alextkachman avatar

Watchers

 avatar

gparallelizer's Issues

Unit tests are required.

What steps will reproduce the problem?
1. Get merge sort example working with version 0.6
2. Update to 0.7 jar of GParallizer.
3. Merge sort example does not work.

What is the expected output? What do you see instead?
Should give same output as with 0.6 version

What version of the product are you using? On what operating system?
0.7, WinXP

Please provide any additional information below.
I suggest project should also include user invocable unit/system tests
and/or runnable examples.


Original issue reported on code.google.com by [email protected] on 31 May 2009 at 5:34

Shorten method names for readability

re: this discussion:
http://www.nabble.com/-ANN--Spock-Framework-0.1-released!-td22344380.html#a22371
802

Parallelizer.withParallelizer and Asynchronizer.withAsynchronizer are
_long_ method names, and it would be nice to shorten them.  Sure they can
be statically imported and aliased, but that has to be done in every file.  

Alternative method names could be "doParallel" and "doAsync" respectively.  

Thanks!

Original issue reported on code.google.com by [email protected] on 29 Jul 2009 at 2:05

Support other methods

GDK defines more iterative methods than the ones currently supported by
GParallelizer.

Original issue reported on code.google.com by [email protected] on 21 Nov 2008 at 5:23

Add support for mixins

Mixins do not work under Groovy 1.6-RC1. Check with final Groovy 1.6
release and document ways to mixin actors into other classes.

Original issue reported on code.google.com by [email protected] on 13 Jan 2009 at 12:56

Pattern-matching for messages in actors

Actors should enable pattern-matching for incoming messages.

Something like:

react {
   match {int a -> println a+1}
   match {String s -> println s}
   match {FibMessage fibMsg -> ...}
  ...
   }
} 

Original issue reported on code.google.com by [email protected] on 4 Mar 2009 at 7:54

DSL is not visible inside nested closures, consider adding support for them

The following piece of code currently doesn't work:

        Parallelizer.withParallelizer {
            def result = ['abc', '123', 'xyz'].findAllAsync {word ->
                word.anyAsync {it in ['a', 'y', '5']}
            }
            assertEquals(['abc', 'xyz'], result)
        }

as the anyAsync() method doesn't exist for the thread executing the
closure's code.
The code has to be modified to allow nested async calls:

        Parallelizer.withParallelizer {pool ->
            def result = ['abc', '123', 'xyz'].findAllAsync {word ->
                Parallelizer.withExistingParallelizer(pool) {
                    word.anyAsync {it in ['a', 'y', '5']}
                }
            }
            assertEquals(['abc', 'xyz'], result)
        }

Original issue reported on code.google.com by [email protected] on 21 Nov 2008 at 5:22

Parallelizer examples not working with GParallelizer 0.6 and jsr166y.jar

What steps will reproduce the problem?
1. Grab GParallelizer 0.6 and jsr166y jar files
2. Run one of the Parallelizer examples

What is the expected output? What do you see instead?
The code should run. Instead, I get the following ...
Caught: java.lang.NoClassDefFoundError: jsr166y/forkjoin/ForkJoinPool

What version of the product are you using? On what operating system?
GParallelizer 0.6, Groovy 1.6.2, JDK 1.6.0

Please provide any additional information below.
The jsr166y jar is not using a package named jsr166y.forkjoin.

Original issue reported on code.google.com by [email protected] on 12 May 2009 at 4:37

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.