Skip to content

Commit

Permalink
updated changelog, added note about --bench
Browse files Browse the repository at this point in the history
  • Loading branch information
willi-kappler committed Jan 29, 2016
1 parent d773667 commit de5e089
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 0.3 - 2016-01-30
Added support for rust scoped pool and jobsteal
Added second method for rayon: par_iter
New command line options: `--no-ppm`, `--bench`

## 0.2 - 2016-01-24
Added support for Rayon
Added more information and benchmark in the readme file
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Supported command line options:
--img2 <IMAGINARY2> upper part (default: 1.50)
--write_metadata write metadata like run time into the ppm file (default: off)
--no-ppm disable creation of the ppm file, just run the calculation (default: off)
--bench use all available CPUs (default: off)
--bench use all available CPUs (default: off), will change in the future
--max_iter <MAX_ITER> maximum number of iterations (default: 2048)
--num_threads <NUMBER_OF_THREADS> number of threads to use (default: 2)
--re1 <REAL1> left real part (default: -2.0)
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn parse_arguments() -> MandelConfig {
--img2=[IMAGINARY2] 'upper part (default: 1.50)'
--write_metadata 'write metadata like run time into the ppm file (default: off)'
--no-ppm 'disable creation of the ppm file, just run the calculation (default: off)'
--bench 'use all available CPUs (default: off)'
--bench 'use all available CPUs (default: off), will change in the future'
--max_iter=[MAX_ITER] 'maximum number of iterations (default: 2048)'
--img_size=[IMAGE_SIZE] 'size of image in pixel (square, default: 1024, must be a power of two)'
--num_threads=[NUMBER_OF_THREADS] 'number of threads to use (default: 2)'")
Expand Down

0 comments on commit de5e089

Please sign in to comment.