From bace26143df15dbf3da7ee769b050c1471eb4754 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Mon, 28 Mar 2022 16:53:23 -0700 Subject: [PATCH] [TUTORIALS] Removed leftover print --- python/tutorials/01-vector-add.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/tutorials/01-vector-add.py b/python/tutorials/01-vector-add.py index c0fb85328..51de7ac6c 100644 --- a/python/tutorials/01-vector-add.py +++ b/python/tutorials/01-vector-add.py @@ -73,7 +73,6 @@ def add(x: torch.Tensor, y: torch.Tensor): add_kernel[grid](x, y, output, n_elements, time_start, time_end, BLOCK_SIZE=1024) # We return a handle to z but, since `torch.cuda.synchronize()` hasn't been called, the kernel is still # running asynchronously at this point. - print((time_end, time_start)) return output