You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Q5 has following line that runs local tests: !python3 -m pytest -v -k "matmul and cpu".
However this doesn't run test_matmul_tiled test.
To run this test one must add another notebook cell with command !python3 -m pytest -v -k "matmul_tiled"
I guess it's better to update existing line with the following !python3 -m pytest -v -k "matmul and cpu or matmul_tiled"
The text was updated successfully, but these errors were encountered:
Q5 has following line that runs local tests:
!python3 -m pytest -v -k "matmul and cpu"
.However this doesn't run
test_matmul_tiled
test.To run this test one must add another notebook cell with command
!python3 -m pytest -v -k "matmul_tiled"
I guess it's better to update existing line with the following
!python3 -m pytest -v -k "matmul and cpu or matmul_tiled"
The text was updated successfully, but these errors were encountered: