Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Show more breadcrumbs
Core Modules
dune-common
Commits
3fdfb96a
Commit
3fdfb96a
authored
6 years ago
by
Simon Praetorius
Browse files
Options
Downloads
Patches
Plain Diff
make tests work with clang and gcc5
parent
759523d9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!518
Feature/float128
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/common/quadmath.hh
+1
-1
1 addition, 1 deletion
dune/common/quadmath.hh
dune/common/test/fvectortest.cc
+2
-0
2 additions, 0 deletions
dune/common/test/fvectortest.cc
with
3 additions
and
1 deletion
dune/common/quadmath.hh
+
1
−
1
View file @
3fdfb96a
...
...
@@ -233,7 +233,7 @@ namespace Dune
DUNE_UNARY_FUNC
(
log10
,
log10q
);
DUNE_UNARY_FUNC
(
log1p
,
log1pq
);
DUNE_UNARY_FUNC
(
log2
,
log2q
);
DUNE_UNARY_FUNC
(
logb
,
logbq
);
//
DUNE_UNARY_FUNC(logb, logbq);
// not available in gcc5
DUNE_CUSTOM_UNARY_FUNC
(
long
int
,
lrint
,
lrintq
);
DUNE_CUSTOM_UNARY_FUNC
(
long
int
,
lround
,
lroundq
);
DUNE_UNARY_FUNC
(
nearbyint
,
nearbyintq
);
...
...
This diff is collapsed.
Click to expand it.
dune/common/test/fvectortest.cc
+
2
−
0
View file @
3fdfb96a
...
...
@@ -545,7 +545,9 @@ int main()
FieldVectorTest
<
float
,
3
>
();
FieldVectorTest
<
double
,
3
>
();
FieldVectorTest
<
long
double
,
3
>
();
#if HAVE_QUADMATH
FieldVectorTest
<
Dune
::
Float128
,
3
>
();
#endif
#if HAVE_GMP
// we skip the complex test and the int test, as these will be very hard to implement with GMPField
typedef
Dune
::
GMPField
<
128u
>
ft
;
...
...
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