Last active
August 3, 2024 14:29
-
-
Save nilreml/c88621af7295c0d9af8ae9599da49c15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PCIe diagnostics: | |
nvidia-smi dmon -s et -d 10 -o DT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Monkeypatch pytorch to run GEMM kernel autotuning on non-enterprise CUDA GPUs | |
# until https://github.com/pytorch/pytorch/issues/109489 is resolved: | |
# Put these 4 lines at the top of the main script, before any imports | |
# TODO: remove once https://github.com/pytorch/pytorch/issues/109489 is resolved | |
from torch._inductor import utils | |
utils._use_template_for_cuda = lambda x, y: True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment