Skip to content

Commit b005cd4

Browse files
committed
NITS
1 parent 930596d commit b005cd4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

utils/SPIRVRunner/SPIRVRunner.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,9 @@ std::vector<TensorBuffer> launchKernel(sycl::queue stream, sycl::kernel kernel,
386386
tb.index = triton_args.dev_buffers.size() - 1;
387387
triton_args.host_outbuffers.push_back(tb);
388388
std::cout
389-
<< "Tensor output: "
390-
<< triton_args.host_outbuffers.back().buffer_ptr.sizes() << ", "
389+
<< "Tensor output[" << tb.index
390+
<< "]: " << triton_args.host_outbuffers.back().buffer_ptr.sizes()
391+
<< ", "
391392
<< triton_args.host_outbuffers.back().buffer_ptr.scalar_type()
392393
<< " (" << triton_args.host_outbuffers.back().buffer_ptr.nbytes()
393394
<< " bytes)" << std::endl;

0 commit comments

Comments
 (0)