Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test PR, you can ignore it and still have a good day #2450

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
30 changes: 0 additions & 30 deletions .github/workflows/bandit.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/benchmarks-nightly.yml

This file was deleted.

27 changes: 26 additions & 1 deletion .github/workflows/benchmarks-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ jobs:
pip install --force-reinstall -r ${{github.workspace}}/ur-repo/third_party/benchmark_requirements.txt

# We need to fetch special ref for proper PR's merge commit. Note, this ref may be absent if the PR is already merged.

# REMOVE start
- name: Fetch PR's merge commit
if: ${{ inputs.pr_no != 0 }}
working-directory: ${{github.workspace}}/ur-repo
Expand All @@ -100,6 +102,7 @@ jobs:
git checkout origin/pr/${PR_NO}/merge
git rev-parse origin/pr/${PR_NO}/merge

# HERE
- name: Checkout SYCL
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
Expand Down Expand Up @@ -155,6 +158,27 @@ jobs:

- name: Install UR
run: cmake --install ${{github.workspace}}/ur_build
# # remove end

- name: Checkout UMF
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
repository: EuphoricThinking/unified-memory-framework
ref: 6aef9bf11b47d0b1390209aeafb6998f0da475c9
path: umf-repo
fetch-depth: 1
fetch-tags: false

- name: Configure UMF
run: >
cmake -DCMAKE_BUILD_TYPE=Release
-S${{github.workspace}}/umf-repo
-B${{github.workspace}}/umf_build
-DUMF_BUILD_BENCHMARKS=ON
-DUMF_TESTS_FAIL_ON_SKIP=ON

- name: Build UMF
run: cmake --build ${{github.workspace}}/umf_build -j $(nproc)

- name: Run benchmarks
working-directory: ${{ github.workspace }}/ur-repo/
Expand All @@ -164,6 +188,7 @@ jobs:
~/bench_workdir
--sycl ${{ github.workspace }}/sycl_build
--ur ${{ github.workspace }}/ur_install
--umf ${{ github.workspace }}/umf_build
--adapter ${{ matrix.adapter.str_name }}
${{ inputs.upload_report && '--output-html' || '' }}
${{ inputs.bench_script_params }}
Expand Down Expand Up @@ -199,5 +224,5 @@ jobs:
if: ${{ always() && inputs.upload_report }}
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ur-repo/benchmark_results.html
path: umf-repo/benchmark_results.html
key: benchmark-results-${{ matrix.adapter.str_name }}-${{ github.run_id }}
1 change: 1 addition & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Compute Benchmarks
# for tests

on:
workflow_dispatch:
Expand Down
75 changes: 0 additions & 75 deletions .github/workflows/build-fuzz-reusable.yml

This file was deleted.

125 changes: 0 additions & 125 deletions .github/workflows/build-hw-reusable.yml

This file was deleted.

Loading