Skip to content
Snippets Groups Projects
Commit 4b16cd69 authored by patavirt's avatar patavirt
Browse files

array: use __restrict

parent 7949a1ff
No related branches found
No related tags found
No related merge requests found
......@@ -14,10 +14,22 @@
#include <initializer_list>
#include <stdexcept>
#include <Eigen/Core>
namespace array {
constexpr size_t Dynamic = SIZE_MAX;
#ifdef __GNUC__
#define ARRAY_RESTRICT __restrict
#else
#ifdef EIGEN_RESTRICT
#define ARRAY_RESTRICT EIGEN_RESTRICT
#else
#define ARRAY_RESTRICT
#endif
#endif
#ifdef NDEBUG
constexpr bool bounds_check = false;
#else
......@@ -288,7 +300,7 @@ public:
protected:
typedef detail::Base<Shape> Base;
Scalar *data_;
Scalar *ARRAY_RESTRICT data_;
template <size_t axis>
static constexpr Eigen::Index eigen_shape()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment