File: benchmark.yml

package info (click to toggle)
ospray 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,048 kB
  • sloc: cpp: 80,569; ansic: 951; sh: 805; makefile: 170; python: 69
file content (108 lines) | stat: -rw-r--r-- 3,009 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
## Copyright 2009 Intel Corporation
## SPDX-License-Identifier: Apache-2.0

name: Benchmark

on:
  schedule:
    - cron: '30 0 * * *'
  workflow_dispatch:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

permissions: read-all

jobs:

### BUILD JOBS ###

  build-linux:
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
    secrets: inherit
    with:
      image: rockylinux:8.7
      env-from-files: .github/workflows/dpcpp.env
      cmd: |
        module load cmake/3.25.3
        module load mpi/mpich-x86_64
        export CC=clang
        export CXX=clang++
        scripts/build/linux.sh -DBUILD_GPU_SUPPORT=ON
      artifact-out: build-linux
      artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt

### Benchmarks ###

  benchmark-x8280-1:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/perf.yml@main
    secrets: inherit
    with:
      runs-on: '"vis-perf-x8280-1"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh
      artifact-in: build-linux

  benchmark-x8380-1:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/perf.yml@main
    secrets: inherit
    with:
      runs-on: '"vis-perf-x8380-1"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh
      artifact-in: build-linux

  benchmark-a-1:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/perf.yml@main
    secrets: inherit
    with:
      runs-on: '"vis-perf-a3970x-1"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh
      artifact-in: build-linux

  benchmark-adl-1:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/perf.yml@main
    secrets: inherit
    with:
      runs-on: '"vis-perf-i9-12900k-1"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh
      artifact-in: build-linux

  benchmark-dg2:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
    secrets: inherit
    with:
      image: ubuntu:22.04
      env-from-files: .github/workflows/gfx-ubuntu22.env
      options: --device=/dev/dri:/dev/dri
      runs-on: '"vis-perf-dg2-01"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh GPU
      artifact-in: build-linux

  benchmark-pvc:
    needs: build-linux
    uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
    secrets: inherit
    with:
      image: ubuntu:22.04
      env-from-files: .github/workflows/gfx-ubuntu22.env
      options: --device=/dev/dri:/dev/dri
      runs-on: '"vis-perf-spr-pvc-01"'
      setup-benny: true
      cmd: |
        scripts/tests/run-benchmarks.sh GPU
      artifact-in: build-linux