Skip to content

Commit

Permalink
Fixed resolution issue with BenchmarkDecisions.
Browse files Browse the repository at this point in the history
  • Loading branch information
alcides committed Jul 28, 2011
1 parent 7756bf1 commit 7121050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ bin
spooned
compiler/*
*.config
logs
2 changes: 1 addition & 1 deletion src/benchmark/BenchmarkDecisions.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public Double getSeed() {
/* Integral */
System.out.println("> GPU op: fminimum " + input.size());

final double RESOLUTION = (double) input.size();
final double RESOLUTION = 100000;

output2 = new Range(input.size()).map(new LambdaMapper<Integer, Double>() {

Expand Down

0 comments on commit 7121050

Please sign in to comment.