Skip to content
Merged
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
4 changes: 2 additions & 2 deletions tests/libs/blas/blas.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ def set_reference(self):
else:
self.reference = {
"cirrus-ex:compute": {
"normal": (16.5, -0.15, None, "Gflops/s"),
"normal": (15.0, -0.15, None, "Gflops/s"),
"transpose": (19.8, -0.15, None, "Gflops/s"),
},
"cirrus-ex:login": {
"normal": (16.75, -0.15, None, "Gflops/s"),
"normal": (15.0, -0.15, None, "Gflops/s"),
"transpose": (16.75, -0.15, None, "Gflops/s"),
},
}
4 changes: 1 addition & 3 deletions tests/synth/mpi_osu/osu_benchmarks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
"""
MPI OSU benchmarks
MPI OSU benchmarks - skip CCE (Cray compilers) as OSU fails to build with CCE
# Based on work by:
# Copyright 2016-2021 Swiss National Supercomputing Centre (CSCS/ETH Zurich)
# ReFrame Project Developers. See the top-level LICENSE file for details.
Expand Down Expand Up @@ -43,7 +43,6 @@ class OSUBuild(rfm.CompileOnlyRegressionTest):
valid_systems = ["archer2:compute", "cirrus:compute", "cirrus-ex:compute"]
valid_prog_environs = [
"PrgEnv-gnu",
"PrgEnv-cray",
"PrgEnv-aocc",
"PrgEnv-intel",
"gcc",
Expand Down Expand Up @@ -79,7 +78,6 @@ class OSUBenchmarkTestBase(rfm.RunOnlyRegressionTest):
valid_systems = ["archer2:compute", "cirrus:compute", "cirrus-ex:compute"]
valid_prog_environs = [
"PrgEnv-gnu",
"PrgEnv-cray",
"PrgEnv-aocc",
"PrgEnv-intel",
"gcc",
Expand Down