File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
numba_cuda/numba/cuda/memory_management Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,10 @@ extern "C" __global__ void NRT_MemSys_print(void)
8989 if (TheMSys != nullptr )
9090 {
9191 printf (" TheMSys->stats.enabled %d\n " , TheMSys->stats .enabled );
92- printf (" TheMSys->stats.alloc %lu \n " , TheMSys->stats .alloc .load ());
93- printf (" TheMSys->stats.free %lu \n " , TheMSys->stats .free .load ());
94- printf (" TheMSys->stats.mi_alloc %lu \n " , TheMSys->stats .mi_alloc .load ());
95- printf (" TheMSys->stats.mi_free %lu \n " , TheMSys->stats .mi_free .load ());
92+ printf (" TheMSys->stats.alloc %zu \n " , TheMSys->stats .alloc .load ());
93+ printf (" TheMSys->stats.free %zu \n " , TheMSys->stats .free .load ());
94+ printf (" TheMSys->stats.mi_alloc %zu \n " , TheMSys->stats .mi_alloc .load ());
95+ printf (" TheMSys->stats.mi_free %zu \n " , TheMSys->stats .mi_free .load ());
9696 } else {
9797 printf (" TheMsys is null.\n " );
9898 }
You can’t perform that action at this time.
0 commit comments