Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
env:
NOMP_CONDA_ENV: /usr/share/miniconda/envs/libnomp
NOMP_INSTALL_DIR: ${{ github.workspace }}/install
NOMP_VERBOSE: 1
NOMP_CACHE_NUMBER: 0 # Increase to reset cache manually.
POCL_CACHE_NUMBER: 0 # Increase to reset cache manually.
jobs:
Expand All @@ -24,7 +25,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
compiler: [gcc-10, clang-15]
compiler: [gcc-12, clang-16]
fail-fast: false
name: "${{ matrix.compiler }}"
env:
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
git+https://github.com/inducer/loopy.git#egg=loopy
git+https://github.com/inducer/pymbolic.git#egg=pymbolic
loopy==2025.1
pymbolic==2024.2.2
libclang==14.0.6
pytools==2024.1.13
pytools==2024.1.16
symengine==0.13.0
siphash24==1.7
2 changes: 1 addition & 1 deletion scripts/lnrun
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function run_test() {

echo -e "Running tests..."
num_errors=0
cd "${NOMP_TEST_DIR}" &&
cd "${NOMP_TEST_DIR}"
for t in $(ls ${TESTS}); do
echo " $t --nomp-backend ${NOMP_BACKEND} --nomp-device ${NOMP_DEVICE} \
--nomp-platform ${NOMP_PLATFORM} --nomp-install-dir ${NOMP_INSTALL_DIR} \
Expand Down
Loading