-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add atan2 for DataVector #304
Conversation
@@ -14,7 +14,7 @@ See LICENSE.txt for details. | |||
* [Charm++](http://charm.cs.illinois.edu/) 6.8 or newer (must be compiled from source) | |||
* [Git](https://git-scm.com/) | |||
* BLAS (e.g. [OpenBLAS](http://www.openblas.net)) | |||
* [Blaze](https://bitbucket.org/blaze-lib/blaze/overview) | |||
* [Blaze](https://bitbucket.org/blaze-lib/blaze/overview) v3.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it worth enforcing this in CMake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I'll have to see if there's a way to do that. I posted a similar question as an issue on the Blaze repo: https://bitbucket.org/blaze-lib/blaze/issues/138/check-blaze-version
cbb7e22
to
d2ed655
Compare
This depends on #315 for Blaze's find_package updates. Before this can be merged the buildenv will need to be updated, which I'm working on now. Spack has merged the PR mentioned in the description. |
d2ed655
to
0f04343
Compare
src/Utilities/PointerVector.hpp
Outdated
@@ -6,16 +6,99 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <cmath> | |||
#include "Utilities/Blaze.hpp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
include blank line and comment
0f04343
to
5ab72cf
Compare
Codecov Report
@@ Coverage Diff @@
## develop #304 +/- ##
===========================================
+ Coverage 98.51% 98.52% +<.01%
===========================================
Files 177 178 +1
Lines 6614 6641 +27
===========================================
+ Hits 6516 6543 +27
Misses 98 98
Continue to review full report at Codecov.
|
5ab72cf
to
bd6c60a
Compare
bd6c60a
to
72f2cc9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mac builds are failing because blaze 3.2 is required but only 3.1 is found
Okay, pushed a commit that should fix this |
This should be rebased after #303 is merged, and should only be merged after https://github.com/LLNL/spack/pull/5992 is merged into spack