From 11230f4eda98a5ccc35d3aace4e0e3e4bd0cc99e Mon Sep 17 00:00:00 2001 From: Sarah Yurick Date: Thu, 3 Oct 2024 15:10:33 -0700 Subject: [PATCH] more debugging Signed-off-by: Sarah Yurick --- .github/workflows/gpuci.yml | 4 +--- nemo_curator/utils/import_utils.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gpuci.yml b/.github/workflows/gpuci.yml index 3d8d604e..8103e036 100644 --- a/.github/workflows/gpuci.yml +++ b/.github/workflows/gpuci.yml @@ -33,9 +33,7 @@ jobs: run: | whoami docker exec nemo-curator-container nvidia-smi - docker exec nemo-curator-container pytest --markers - docker exec nemo-curator-container pwd - docker exec nemo-curator-container ls -la + docker exec nemo-curator-container find / -name "libnvrtc*" - name: Verify installations run: | diff --git a/nemo_curator/utils/import_utils.py b/nemo_curator/utils/import_utils.py index 6ffee38e..21a4daca 100644 --- a/nemo_curator/utils/import_utils.py +++ b/nemo_curator/utils/import_utils.py @@ -346,7 +346,7 @@ def gpu_only_import(module, *, alt=None): return safe_import( module, - msg=f"{module} is not enabled in non GPU-enabled installations or environemnts. {GPU_INSTALL_STRING}", + msg=f"{module} is not enabled in non GPU-enabled installations or environments. {GPU_INSTALL_STRING}", alt=alt, )