Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 10 additions & 8 deletions .github/workflows/intel_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading