forked from ROCm/rocRAND
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci-gputest.yml
42 lines (40 loc) · 1.05 KB
/
.gitlab-ci-gputest.yml
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
test:rocm_vega20:
extends: .rocm
stage: test
needs:
- build:rocm
tags:
- vega20
- rocm
script:
- cd build
- $SUDO_CMD ctest --output-on-failure
- $SUDO_CMD ./benchmark/benchmark_rocrand_generate --dis all --engine all --trials 5
- $SUDO_CMD ./benchmark/benchmark_rocrand_kernel --dis all --engine all --trials 5
test:rocm_s9300:
extends: .rocm
stage: test
needs:
- build:rocm
tags:
- s9300
- rocm
script:
- cd build
- $SUDO_CMD ctest --output-on-failure
- $SUDO_CMD ./benchmark/benchmark_rocrand_generate --dis all --engine all --trials 5
- $SUDO_CMD ./benchmark/benchmark_rocrand_kernel --dis all --engine all --trials 5
allow_failure: true
test:rocm_mi25:
extends: .rocm
stage: test
needs:
- build:rocm-static
tags:
- mi25
- rocm
script:
- cd build
- $SUDO_CMD ctest --output-on-failure
- $SUDO_CMD ./benchmark/benchmark_rocrand_generate --dis all --engine all --trials 5
- $SUDO_CMD ./benchmark/benchmark_rocrand_kernel --dis all --engine all --trials 5