Skip to content

Commit

Permalink
Tacho : compile warnings
Browse files Browse the repository at this point in the history
Signed-off-by: iyamazaki <[email protected]>
  • Loading branch information
iyamazaki committed Dec 11, 2024
1 parent 324ba20 commit 808d111
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2288,7 +2288,7 @@ class NumericToolsLevelSet : public NumericToolsBase<ValueType, DeviceType> {
printf("=====================================================\n");
printf( "\n ** Team = %f s, Device = %f s, Update = %f s **\n",time_parallel,time_device,time_update );
if (variant == 3) {
printf( " extractCRS with total nnzL = %d and nnzU = %d\n\n",colindL.extent(0),colindU.extent(0) );
printf( " extractCRS with total nnzL = %ld and nnzU = %ld\n\n",colindL.extent(0),colindU.extent(0) );
} else {
printf( "\n" );
}
Expand Down Expand Up @@ -4375,7 +4375,7 @@ class NumericToolsLevelSet : public NumericToolsBase<ValueType, DeviceType> {
printf("================================================\n");
printf( "\n ** Team = %f s, Device = %f s, Update = %f s (%d streams) **\n",time_parallel,time_device,time_update,_nstreams );
if (variant == 3) {
printf( " extractCRS with total nnzL = %d and nnzU = %d\n\n",colindL.extent(0),colindU.extent(0) );
printf( " extractCRS with total nnzL = %ld and nnzU = %ld\n\n",colindL.extent(0),colindU.extent(0) );
} else {
printf( "\n" );
}
Expand Down

0 comments on commit 808d111

Please sign in to comment.