File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -447,11 +447,11 @@ TEST_CASE("cuda-sandbox", "[pdlp]") {
447447 cudaDeviceProp prop;
448448 cudaGetDeviceProperties (&prop, 0 );
449449 printf (" Cuda device %d: %s\n " , 0 , prop.name );
450- printf (" Clock rate (KHz): %d\n " , prop.clockRate );
451- printf (" Memory clock rate (KHz): %d\n " , prop.memoryClockRate );
450+ // printf(" Clock rate (KHz): %d\n", prop.clockRate);
451+ // printf(" Memory clock rate (KHz): %d\n", prop.memoryClockRate);
452452 printf (" Memory bus width (bits): %d\n " , prop.memoryBusWidth );
453- printf (" Peak memory bandwidth (GB/s): %f\n " ,
454- 2.0 * prop.memoryClockRate * (prop.memoryBusWidth / 8 ) / 1.0e6 );
453+ // printf(" Peak memory bandwidth (GB/s): %f\n",
454+ // 2.0 * prop.memoryClockRate * (prop.memoryBusWidth / 8) / 1.0e6);
455455 printf (" Global memory available on device (GB): %f\n " ,
456456 prop.totalGlobalMem / 1.0e9 );
457457 printf (" Shared memory available per block (B): %zu\n " ,
You can’t perform that action at this time.
0 commit comments