Skip to content
Snippets Groups Projects
Commit 5adf2b83 authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Fixed a minor bug where sample size was ignored.

Issue: #1
parent 5b15b489
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ public class Main{
}
};
kernel.execute(Range.create(512));
kernel.execute(Range.create(size));
for (int i = 0; i < size; i++) {
System.out.printf("%6.2f + %6.2f = %8.2f\n", a[i], b[i], sum[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment