[UR] Initial spec for the enqueue allocation API #4201
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Examples - Adapters on Level Zero HW | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
examples: | |
name: Examples on HW | |
# if: github.repository == 'oneapi-src/unified-runtime' # run only on upstream; forks won't have the HW | |
if: false # temporaily disabled due to conda env setup issues | |
strategy: | |
matrix: | |
adapter: [ | |
{name: L0} | |
] | |
build_type: [Debug, Release] | |
compiler: [{c: gcc, cxx: g++}, {c: clang, cxx: clang++}] | |
runs-on: ${{matrix.adapter.name}} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install pip packages | |
run: pip install -r third_party/requirements.txt | |
- name: Init conda env | |
uses: conda-incubator/setup-miniconda@9f54435e0e72c53962ee863144e47a4b094bfd35 # v2.3.0 | |
with: | |
miniconda-version: "latest" | |
activate-environment: examples | |
environment-file: third_party/deps.yml | |
auto-activate-base: false | |
- name: Configure CMake | |
shell: bash -el {0} | |
run: > | |
cmake | |
-B${{github.workspace}}/build | |
-DCMAKE_C_COMPILER=${{matrix.compiler.c}} | |
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}} | |
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} | |
-DUR_BUILD_ADAPTER_${{matrix.adapter.name}}=ON | |
-DUR_BUILD_EXAMPLE_CODEGEN=ON | |
-DUR_DEVELOPER_MODE=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build -j $(nproc) | |
- name: Test codegen example | |
working-directory: ${{github.workspace}}/build | |
run: bin/codegen | |
# conda init adds content to user's profile making it failing (if conda is gone) | |
- name: Cleanup after conda init | |
run: | | |
cat ${HOME}/.profile || true | |
rm ${HOME}/.profile || true | |
- name: Get information about platform | |
if: ${{ always() }} | |
run: .github/scripts/get_system_info.sh |