Create a directory to bypass a profiler error to be able to test with host code only

This commit is contained in:
Cosmin Ciocan
2024-01-02 15:35:42 +01:00
parent 5f1bc88625
commit d70fe0f5e2
+4
View File
@@ -27,10 +27,14 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
# the mkdir command bypasses a profiler error, which allows us to run it
# with host code only to at least check that the profiler parameters are
# correctly provided
- name: Install CUDA tools - name: Install CUDA tools
run: | run: |
sudo apt update sudo apt update
sudo apt install nvidia-cuda-toolkit sudo apt install nvidia-cuda-toolkit
mkdir -p /usr/lib/x86_64-linux-gnu/nsight-compute/sections
- name: Install Python dependencies - name: Install Python dependencies
run: | run: |