Skip to content
Open
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
5 changes: 5 additions & 0 deletions marray/marray/blas.h
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,11 @@ using value_type = std::remove_cv_t<typename std::decay_t<T>::value_type>;
namespace blas
{

using std::conj;
inline float conj(float x) { return x; }
inline double conj(double x) { return x; }
inline long double conj(long double x) { return x; }

/******************************************************************************
*
* Level 1 BLAS, C++ overloads
Expand Down