Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
enjalot committed May 26, 2011
1 parent 1b5542d commit 3f7a7e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions experiments/bitonic/bitonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@ def local(self, array_length, direction):
if __name__ == "__main__":
#These tests wont work as is since class was restructured to fit in with sph

#n = 1048576
n = 32768*2
n = 1048576*2
#n = 32768*2
#n = 16384
n = 8192
#n = 8192
hashes = np.ndarray((n,), dtype=np.uint32)
indices = np.ndarray((n,), dtype=np.uint32)
print "hashes size", hashes.size
Expand Down
2 changes: 1 addition & 1 deletion experiments/radix/nv/radix.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def reorder(self, startbit, num):

if __name__ == "__main__":

n = 1048576
n = 1048576*2
#n = 32768*2
#n = 16384
#n = 8192
Expand Down
1 change: 1 addition & 0 deletions part1.5/cll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ CL::CL()
std::vector<cl::Platform> platforms;
err = cl::Platform::get(&platforms);
printf("cl::Platform::get(): %s\n", oclErrorString(err));
printf("number of platforms: %d\n", platforms.size());
if (platforms.size() == 0) {
printf("Platform size 0\n");
}
Expand Down

0 comments on commit 3f7a7e8

Please sign in to comment.