From d70fe0f5e2eee07cd576bbc273b38d3d6b0ddc0b Mon Sep 17 00:00:00 2001 From: Cosmin Ciocan Date: Tue, 2 Jan 2024 15:35:42 +0100 Subject: [PATCH] Create a directory to bypass a profiler error to be able to test with host code only --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 068b773..2ec1379 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,10 +27,14 @@ jobs: with: 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 run: | sudo apt update sudo apt install nvidia-cuda-toolkit + mkdir -p /usr/lib/x86_64-linux-gnu/nsight-compute/sections - name: Install Python dependencies run: |