Skip to content

Commit c9b7018

Browse files
committed
fix printf format codes
1 parent e94aa02 commit c9b7018

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

experimental/kernels/reduce.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -329,13 +329,13 @@ struct SumKernel2d {
329329
for(int j=0;output_size>1;j++){
330330
output_size = (output_size + (num_threads * 2) - 1) / (num_threads * 2);
331331
if (debug)
332-
printf("size0: %d, num_threads: %d, output_size: %d\n", size0, num_threads, output_size);
332+
printf("size0: %zu, num_threads: %d, output_size: %lu\n", size0, num_threads, output_size);
333333
outputs.push_back(createTensor(ctx, Shape{std::max(output_size, static_cast<unsigned long>(num_threads*2)), size1}, kf32));
334334
ops.push_back(createSumKernel2d(ctx, outputs[j], outputs[j+1], input_size, size1, num_threads));
335335
input_size = output_size;
336336
}
337337
if (debug)
338-
printf("ops.size(): %d\n", ops.size());
338+
printf("ops.size(): %zu\n", ops.size());
339339
}
340340
void dispatchKernel(Context& ctx) {
341341
for(int i=0;i<ops.size();i++){

0 commit comments

Comments
 (0)