gpu nightly test #2
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: OpenVino GPU Nightly Test | ||
on: | ||
workflow_dispatch: | ||
push: | ||
permissions: read-all | ||
jobs: | ||
nightly: | ||
name: OpenVino GPU Nightly | ||
runs-on: [self-hosted, l0] | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
steps: | ||
- name: "Checkout Graph Compiler" | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'intel/graph-compiler' | ||
ref: 'main' | ||
path: 'graph-compiler' | ||
- name: Setup MLIR Python bindings | ||
working-directory: graph-compiler | ||
id: setup-mlir-python-bindings | ||
uses: ./.github/actions/setup-mlir-python-bindings | ||
Check failure on line 28 in .github/workflows/ov-gpu-nightly.yml GitHub Actions / OpenVino GPU Nightly TestInvalid workflow file
|
||
- name: Build LLVM with IMEX | ||
working-directory: graph-compiler | ||
run: | | ||
scripts/compile.sh --dev --llvm --imex | ||
echo LLVM_INST_PATH=$(pwd)/externals/llvm-project/build >>$GITHUB_ENV | ||
- name: "Checkout OpenVino" | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'dchigarev/openvino' | ||
ref: 'gc-gpu' | ||
path: 'openvino' | ||
- name: Build OpenVino | ||
working-directory: openvino | ||
run: | | ||
cmake -B build -G Ninja -DLLVM_DIR=${LLVM_INST_PATH}/lib/cmake/llvm -DMLIR_DIR=${LLVM_INST_PATH}/lib/cmake/mlir -DENABLE_GRAPH_COMPILER=ON -DENABLE_INTEL_GPU=ON -DENABLE_TESTS=ON | ||
cmake --build build --target all | ||
- name: Benchmark | ||
working-directory: openvino/build | ||
env: | ||
OV_MLIR_MODE: GC_GPU | ||
run: ./bin/intel64/Debug/benchmark_app -m ./src/plugins/intel_gpu/tests/functional/mlir_op/models/matmul_64_128_f16.xml -d GPU -use_device_mem -ip f16 -infer_precision f16 -niter 100 -hint none -nstreams 1 -nthreads 1 | ||