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
7 changes: 3 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nightly_Testing_vs_Kokkos_develop
name: Nightly Build w/ Kokkos develop

on:
schedule:
Expand All @@ -14,8 +14,6 @@ jobs:
python-version: ["3.13"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- run: git checkout develop

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
Expand All @@ -26,6 +24,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade numpy mypy==0.981 cmake pytest pybind11 scikit-build patchelf ninja
- name: Build Kokkos develop branch
uses: actions/checkout@v3
run: |
cd /tmp
mkdir kokkos_install
Expand All @@ -39,7 +38,7 @@ jobs:
- name: Install pykokkos-base
working-directory: base
run: |
python setup.py install -- -DENABLE_LAYOUTS=ON -DENABLE_MEMORY_TRAITS=OFF -DKokkos_DIR=/tmp/kokkos_install/lib/cmake/Kokkos/ -DENABLE_INTERNAL_KOKKOS=OFF
python setup.py install -- -DENABLE_LAYOUTS=ON -DENABLE_MEMORY_TRAITS=OFF -DKokkos_ROOT=/tmp/kokkos_install/lib/cmake/Kokkos/ -DENABLE_INTERNAL_KOKKOS=OFF
- name: Install pykokkos
run: |
python -m pip install .
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

# PyKokkos
[![Build with latest Kokkos](https://github.com/kokkos/pykokkos/actions/workflows/nightly.yml/badge.svg)](https://github.com/kokkos/pykokkos/actions/workflows/nightly.yml)
[![Python Testing](https://github.com/kokkos/pykokkos/actions/workflows/main_ci.yml/badge.svg)](https://github.com/kokkos/pykokkos/actions/workflows/main_ci.yml)
[![Documentation](https://github.com/kokkos/pykokkos/actions/workflows/documentation.yml/badge.svg)](https://github.com/kokkos/pykokkos/actions/workflows/documentation.yml)

Expand Down