File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments