Skip to content

Commit dc5f43f

Browse files
committed
WIP
1 parent 3f8f4f3 commit dc5f43f

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

.github/workflows/pr.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,44 @@ jobs:
2828
- name: Run clang-format check
2929
run: pre-commit run --all-files --show-diff-on-failure --color always
3030
unit-tests:
31-
runs-on: ubuntu-latest
3231
# One runner for each domain
3332
strategy:
3433
fail-fast: false
3534
matrix:
3635
include:
3736
- config: generic SYCL BLAS
3837
domain: blas
38+
arch: x86
3939
build_options: -DREF_BLAS_ROOT=${PWD}/lapack/install -DENABLE_GENERIC_BLAS_BACKEND=ON -DENABLE_MKLCPU_BACKEND=OFF -DGENERIC_BLAS_TUNING_TARGET=INTEL_CPU
4040
- config: portFFT
4141
domain: dft
42+
arch: x86
4243
build_options: -DENABLE_PORTFFT_BACKEND=ON -DENABLE_MKLCPU_BACKEND=OFF
4344
test_options: -R 'DFT/CT/.*ComputeTests_in_place_COMPLEX.COMPLEX_SINGLE_in_place_buffer.sizes_8_batches_1*'
4445
- config: oneMath BLAS
4546
domain: blas
46-
build_options: -DREF_BLAS_ROOT=${PWD}/lapack/install
47+
arch: x86
48+
build_options: -DREF_BLAS_ROOT=${PWD}/lapack/
49+
- config: oneMath BLAS
50+
domain: blas
51+
arch: Arm
52+
build_options: -DENABLE_MKLCPU_BACKEND=OFF -DENABLE_ARMPL_BACKEND=ON
4753
- config: oneMath DFT
4854
domain: dft
55+
arch: x86
4956
- config: oneMath LAPACK
5057
domain: lapack
58+
arch: x86
5159
build_options: -DREF_LAPACK_ROOT=${PWD}/lapack/install
5260
- config: oneMath RNG
5361
domain: rng
54-
name: unit tests ${{ matrix.config }} CPU
62+
arch: x86
63+
- config: oneMath RNG
64+
domain: rng
65+
arch: Arm
66+
build_options: -DENABLE_MKLCPU_BACKEND=OFF -DENABLE_ARMPL_BACKEND=ON
67+
runs-on: ${{ matrix.arch=='Arm' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
68+
name: unit tests ${{ matrix.config }} ${{ matrix.arch}} CPU
5569
steps:
5670
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
5771
- name: Check if the changes affect this domain

src/blas/backends/armpl/armpl_level3.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
* SPDX-License-Identifier: Apache-2.0
1919
*******************************************************************************/
2020

21+
// FIXME: !!! DO NOT MERGE !!!
22+
// This is a dummy change to trigger CI for testing
23+
2124
#include <sycl/sycl.hpp>
2225

2326
#include "oneapi/math/exceptions.hpp"

src/rng/backends/armpl/philox4x32x10.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
* SPDX-License-Identifier: Apache-2.0
1919
*******************************************************************************/
2020

21+
// FIXME: !!! DO NOT MERGE !!!
22+
// This is a dummy change to trigger CI for testing
23+
2124
#include <iostream>
2225
#if __has_include(<sycl/sycl.hpp>)
2326
#include <sycl/sycl.hpp>

0 commit comments

Comments
 (0)