From 4163d32c4981bc798e85207ac16b4608049693c8 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Fri, 10 Sep 2021 15:52:26 -0700 Subject: [PATCH] [DOCS] Fixed leftover exit() in 01-vector-add tutorial --- 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 7543c6243..4446cf6e9 100644 --- a/python/tutorials/01-vector-add.py +++ b/python/tutorials/01-vector-add.py @@ -85,7 +85,6 @@ print( f'The maximum difference between torch and triton is ' f'{torch.max(torch.abs(output_torch - output_triton))}' ) -exit() # %% # Seems like we're good to go!