[DOCS] Fixed leftover exit() in 01-vector-add tutorial

This commit is contained in:
Philippe Tillet
2021-09-10 15:52:26 -07:00
parent 34369906b4
commit 4163d32c49

View File

@@ -85,7 +85,6 @@ print(
f'The maximum difference between torch and triton is ' f'The maximum difference between torch and triton is '
f'{torch.max(torch.abs(output_torch - output_triton))}' f'{torch.max(torch.abs(output_torch - output_triton))}'
) )
exit()
# %% # %%
# Seems like we're good to go! # Seems like we're good to go!