Minghwa / back40computing

Automatically exported from code.google.com/p/back40computing
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

sort enactor does not accept unsigned int problem size specifiaction #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. If N is a const unsigned int, this will not work
sort_enactor.Sort(sort_storage, N);

2.  This will work
sort_enactor.Sort(sort_storage, (int) N);
3.

What is the expected output? What do you see instead?
I get unspecified launch failures in the first case

What version of the product are you using? On what operating system?
r603 Ubuntu Linux 11.04

Please provide any additional information below.

Original issue reported on code.google.com by jens.gla...@gmail.com on 10 Jul 2011 at 9:54