diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ef584284f8..825275f350 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -79,10 +79,3 @@ jobs: uses: github/codeql-action/analyze@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8 with: category: "/language:${{matrix.language}}" - - - name: Upload Sarif Artifact - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 - with: - name: codeql-results-${{ matrix.language }} - path: ./results/${{ matrix.language }}.sarif - retention-days: 7 diff --git a/.github/workflows/intel_test.yml b/.github/workflows/intel_test.yml index d8fd08b11f..963911f106 100644 --- a/.github/workflows/intel_test.yml +++ b/.github/workflows/intel_test.yml @@ -28,32 +28,32 @@ jobs: # gpu: BMG # intel_graphics: STAGING # sycl_target: intel_gpu_bmg_g21 - # runner: bmg108629-01 + # runner: bmg # - compiler: RELEASE # gpu: BMG # intel_graphics: STAGING # sycl_target: intel_gpu_bmg_g21 - # runner: bmg108629-01 + # runner: bmg # - compiler: NIGHTLY # gpu: BMG # intel_graphics: ROLLING # sycl_target: intel_gpu_bmg_g21 - # runner: bmg108629-01 + # runner: bmg - compiler: RELEASE gpu: BMG intel_graphics: ROLLING sycl_target: intel_gpu_bmg_g21 - runner: bmg108629-01 + runner: bmg - compiler: RELEASE gpu: PVC intel_graphics: ROLLING sycl_target: intel_gpu_pvc - runner: pvc146162-01 + runner: pvc - compiler: NIGHTLY gpu: PVC intel_graphics: ROLLING sycl_target: intel_gpu_pvc - runner: pvc146162-01 + runner: pvc name: Run Intel ${{ matrix.compiler }} tests on ${{ matrix.gpu }} with intel-graphics ${{ matrix.intel_graphics }} runs-on: ${{ matrix.runner }} @@ -103,7 +103,9 @@ jobs: cmake -G Ninja \ -DCUTLASS_ENABLE_SYCL=ON \ -DDPCPP_SYCL_TARGET=${{ matrix.sycl_target }} \ - -DCUTLASS_SYCL_RUNNING_CI=ON + -DCUTLASS_SYCL_RUNNING_CI=ON \ + -DCUTLASS_ENABLE_BENCHMARKS=ON \ + -DCUTLASS_ENABLE_TESTS=ON # Use reduced parallelism for BMG runners, full for PVC if [[ "${{ matrix.gpu }}" == "BMG" ]]; then cmake --build . -j 2 @@ -121,7 +123,7 @@ jobs: - name: Benchmarks shell: bash run: | - cmake --build . --target cutlass_benchmarks + cmake --build . --target benchmarks -j 1 - name: Cleanup DPC++ if: always() shell: bash