diff --git a/test/test_device_three_way_partition.cu b/test/test_device_three_way_partition.cu index dfaab8d30..27fdf0059 100644 --- a/test/test_device_three_way_partition.cu +++ b/test/test_device_three_way_partition.cu @@ -379,16 +379,16 @@ template struct CountToPair { template - __device__ __host__ Pairoperator()(OffsetT id) + __device__ __host__ Pair operator()(OffsetT id) { - return Pair(static_cast(id), id); + return Pair(static_cast(id), id); } }; template void TestStability(int num_items) { - using T = Pair; + using T = Pair; thrust::device_vector in(num_items); thrust::tabulate(in.begin(), in.end(), CountToPair{}); @@ -584,8 +584,9 @@ int main(int argc, char **argv) // Initialize device CubDebugExit(args.DeviceInit()); - Test(); - Test(); + // NVBug 4136386 + // Test(); + // Test(); Test(); Test();