diff --git a/src/include/array/access.cc.h b/src/include/array/access.cc.h deleted file mode 100644 index 68aee49..0000000 --- a/src/include/array/access.cc.h +++ /dev/null @@ -1,41 +0,0 @@ - -#include "access.h" - -namespace CNORXZ -{ - namespace - { - using namespace CNORXZInternal; - } - - /************************ - * AccessTemplate * - ************************/ - - template - auto AccessTemplate::get(size_t pos) - { - return THIS().get(pos); - } - - template - auto AccessTemplate::get(size_t pos) const - { - return THIS().get(pos); - } - - template - auto AccessTemplate::oget(size_t pos) const - { - return THIS().oget(pos); - } - - template - template - void AccessTemplate::exec(size_t pos, const Op& op, ExtType e) const - { - return THIS().template exec(pos,op,e); - } - - -} // namespace CNORXZ diff --git a/src/include/array/access.h b/src/include/array/access.h deleted file mode 100644 index bd46f56..0000000 --- a/src/include/array/access.h +++ /dev/null @@ -1,173 +0,0 @@ - -#ifndef __cxz_access_h__ -#define __cxz_access_h__ - -namespace CNORXZ -{ - namespace - { - using namespace CNORXZInternal; - } - - - template - struct VType - { - typedef T type; - static constexpr size_t MULT = sizeof(type)/sizeof(T); - }; - - template <> - struct VType - { - typedef v256 type; - static constexpr size_t MULT = sizeof(type)/sizeof(double); - }; - - template