Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-codegen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christian Heinigk
dune-codegen
Commits
b13701f0
Commit
b13701f0
authored
6 years ago
by
Dominic Kempf
Browse files
Options
Downloads
Patches
Plain Diff
[cmake] Skip all transpose tests on Clang - CI does not accept my partial exclusion
parent
dfce5c8f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/perftool/test/CMakeLists.txt
+8
-4
8 additions, 4 deletions
dune/perftool/test/CMakeLists.txt
dune/perftool/test/transpose.mini
+0
-3
0 additions, 3 deletions
dune/perftool/test/transpose.mini
with
8 additions
and
7 deletions
dune/perftool/test/CMakeLists.txt
+
8
−
4
View file @
b13701f0
dune_add_system_test
(
SOURCE test_transpose.cc
BASENAME test_transpose
INIFILE transpose.mini
)
# There is a clang bug for a 16x8 transpose and I did not manage to include
# only that one due to a weirdness in CI - it worked on my machine through testtools.
if
(
NOT
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"Clang"
))
dune_add_system_test
(
SOURCE test_transpose.cc
BASENAME test_transpose
INIFILE transpose.mini
)
endif
()
This diff is collapsed.
Click to expand it.
dune/perftool/test/transpose.mini
+
0
−
3
View file @
b13701f0
...
...
@@ -6,9 +6,6 @@ __exec_suffix = {__static.BASETYPE}_{__static.N}x{__static.M}
{__static.N} == 2 and {shorttype} == f | exclude
{__static.N} == 16 and {shorttype} == d | exclude
# This transpose is bugged in clang - urgh!
( $\{CMAKE_CXX_COMPILER_ID\} STREQUAL Clang ) AND ( {__static.N} STREQUAL 16 ) | cmake_guard
# These transposes are not yet implemented
{__static.M} == 16 | exclude
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment