Compare commits

..

No commits in common. '82b2b35f1e9908401f181a6333110734a9b6e8b9' and 'cc56e79aee596649af83d939984456d5a528234a' have entirely different histories.

  1. 3
      include/Array.h

@ -699,8 +699,6 @@ template <typename T> class Array {
* Its self assigning version is transpose. This is restricted to numerical types.
* \brief Host only
*/
#ifdef CUDATOOLS_USE_EIGEN
Array transposed() const {
static_assert(is_host_num<T>, "Function only available on host-compatible numeric types.");
CT_ERROR_IF(shape().axes(), !=, 2, "Tranpose can only occur on two-dimensional arrays");
@ -730,7 +728,6 @@ template <typename T> class Array {
Array<T> inv(shape());
inv.eigenMap() = this->eigenMap().inverse();
};
#endif
/**
* Pins the memory (page locks) for faster memory transfer in concurrent

Loading…
Cancel
Save