2021-02-01 13:31:45 +01:00
|
|
|
/* ******************************************************************************
|
|
|
|
*
|
2019-06-06 14:21:15 +02:00
|
|
|
*
|
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
* terms of the Apache License, Version 2.0 which is available at
|
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
2021-02-01 13:31:45 +01:00
|
|
|
* See the NOTICE file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2019-06-06 14:21:15 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
//
|
|
|
|
// @author raver119@gmail.com
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ND4J_ARRAY_OPTIONS_H
|
|
|
|
#define ND4J_ARRAY_OPTIONS_H
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <system/op_boilerplate.h>
|
|
|
|
#include <system/pointercast.h>
|
|
|
|
#include <system/dll.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
#include <array/DataType.h>
|
|
|
|
#include <array/ArrayType.h>
|
|
|
|
#include <array/SpaceType.h>
|
|
|
|
#include <array/SparseType.h>
|
|
|
|
#include <initializer_list>
|
|
|
|
|
|
|
|
|
|
|
|
#define ARRAY_SPARSE 2
|
|
|
|
#define ARRAY_COMPRESSED 4
|
|
|
|
#define ARRAY_EMPTY 8
|
2020-01-04 11:27:50 +01:00
|
|
|
#define ARRAY_RAGGED 16
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-01-04 11:27:50 +01:00
|
|
|
|
|
|
|
#define ARRAY_CSR 32
|
|
|
|
#define ARRAY_CSC 64
|
|
|
|
#define ARRAY_COO 128
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
// complex values
|
|
|
|
#define ARRAY_COMPLEX 512
|
|
|
|
|
|
|
|
// quantized values
|
|
|
|
#define ARRAY_QUANTIZED 1024
|
|
|
|
|
|
|
|
// 16 bit float FP16
|
|
|
|
#define ARRAY_HALF 4096
|
|
|
|
|
|
|
|
// 16 bit bfloat16
|
|
|
|
#define ARRAY_BHALF 2048
|
|
|
|
|
|
|
|
// regular 32 bit float
|
|
|
|
#define ARRAY_FLOAT 8192
|
|
|
|
|
|
|
|
// regular 64 bit float
|
|
|
|
#define ARRAY_DOUBLE 16384
|
|
|
|
|
|
|
|
// 8 bit integer
|
|
|
|
#define ARRAY_CHAR 32768
|
|
|
|
|
|
|
|
// 16 bit integer
|
|
|
|
#define ARRAY_SHORT 65536
|
|
|
|
|
|
|
|
// 32 bit integer
|
|
|
|
#define ARRAY_INT 131072
|
|
|
|
|
|
|
|
// 64 bit integer
|
|
|
|
#define ARRAY_LONG 262144
|
|
|
|
|
|
|
|
// boolean values
|
|
|
|
#define ARRAY_BOOL 524288
|
|
|
|
|
2020-01-04 11:27:50 +01:00
|
|
|
// UTF values
|
|
|
|
#define ARRAY_UTF8 1048576
|
|
|
|
#define ARRAY_UTF16 4194304
|
|
|
|
#define ARRAY_UTF32 16777216
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
// flag for extras
|
|
|
|
#define ARRAY_EXTRAS 2097152
|
|
|
|
|
|
|
|
|
|
|
|
// flag for signed/unsigned integers
|
|
|
|
#define ARRAY_UNSIGNED 8388608
|
|
|
|
|
2021-02-01 06:31:20 +01:00
|
|
|
// flag for arrays with padded buffer
|
|
|
|
#define ARRAY_HAS_PADDED_BUFFER (1<<25)
|
2019-06-06 14:21:15 +02:00
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
namespace sd {
|
2019-06-06 14:21:15 +02:00
|
|
|
class ND4J_EXPORT ArrayOptions {
|
|
|
|
|
|
|
|
private:
|
|
|
|
static FORCEINLINE _CUDA_HD Nd4jLong& extra(Nd4jLong* shape);
|
|
|
|
|
|
|
|
public:
|
|
|
|
static FORCEINLINE _CUDA_HD bool isNewFormat(const Nd4jLong *shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD bool hasPropertyBitSet(const Nd4jLong *shapeInfo, int property);
|
|
|
|
static FORCEINLINE _CUDA_HD bool togglePropertyBit(Nd4jLong *shapeInfo, int property);
|
|
|
|
static FORCEINLINE _CUDA_HD void unsetPropertyBit(Nd4jLong *shapeInfo, int property);
|
2021-02-01 06:31:20 +01:00
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
static FORCEINLINE _CUDA_HD void setPropertyBit(Nd4jLong *shapeInfo, int property);
|
|
|
|
static FORCEINLINE _CUDA_HD void setPropertyBits(Nd4jLong *shapeInfo, std::initializer_list<int> properties);
|
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD bool isSparseArray(Nd4jLong *shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD bool isUnsigned(Nd4jLong *shapeInfo);
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
static FORCEINLINE _CUDA_HD sd::DataType dataType(const Nd4jLong *shapeInfo);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD SpaceType spaceType(Nd4jLong *shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD SpaceType spaceType(const Nd4jLong *shapeInfo);
|
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD ArrayType arrayType(Nd4jLong *shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD ArrayType arrayType(const Nd4jLong *shapeInfo);
|
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD SparseType sparseType(Nd4jLong *shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD SparseType sparseType(const Nd4jLong *shapeInfo);
|
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD bool hasExtraProperties(Nd4jLong *shapeInfo);
|
|
|
|
|
2021-02-01 06:31:20 +01:00
|
|
|
static FORCEINLINE _CUDA_HD bool hasPaddedBuffer(const Nd4jLong* shapeInfo);
|
|
|
|
static FORCEINLINE _CUDA_HD void flagAsPaddedBuffer(Nd4jLong* shapeInfo);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD void resetDataType(Nd4jLong *shapeInfo);
|
2021-02-01 06:31:20 +01:00
|
|
|
static FORCEINLINE _CUDA_HD Nd4jLong propertyWithoutDataType(const Nd4jLong *shapeInfo);
|
2020-03-02 10:49:41 +01:00
|
|
|
static FORCEINLINE _CUDA_HD void setDataType(Nd4jLong *shapeInfo, const sd::DataType dataType);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
static FORCEINLINE _CUDA_HD void copyDataType(Nd4jLong* to, const Nd4jLong* from);
|
|
|
|
};
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD Nd4jLong& ArrayOptions::extra(Nd4jLong* shape) {
|
|
|
|
return shape[shape[0] + shape[0] + 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::isNewFormat(const Nd4jLong *shapeInfo) {
|
|
|
|
return (extra(const_cast<Nd4jLong*>(shapeInfo)) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::isSparseArray(Nd4jLong *shapeInfo) {
|
|
|
|
return hasPropertyBitSet(shapeInfo, ARRAY_SPARSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::hasExtraProperties(Nd4jLong *shapeInfo) {
|
|
|
|
return hasPropertyBitSet(shapeInfo, ARRAY_EXTRAS);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::hasPropertyBitSet(const Nd4jLong *shapeInfo, int property) {
|
|
|
|
if (!isNewFormat(shapeInfo))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return ((extra(const_cast<Nd4jLong*>(shapeInfo)) & property) == property);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::isUnsigned(Nd4jLong *shapeInfo) {
|
|
|
|
if (!isNewFormat(shapeInfo))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return hasPropertyBitSet(shapeInfo, ARRAY_UNSIGNED);
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
FORCEINLINE _CUDA_HD sd::DataType ArrayOptions::dataType(const Nd4jLong *shapeInfo) {
|
2019-06-06 14:21:15 +02:00
|
|
|
/*if (hasPropertyBitSet(shapeInfo, ARRAY_QUANTIZED))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::QINT8;
|
2019-06-06 14:21:15 +02:00
|
|
|
else */if (hasPropertyBitSet(shapeInfo, ARRAY_FLOAT))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::FLOAT32;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_DOUBLE))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::DOUBLE;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_HALF))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::HALF;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_BHALF))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::BFLOAT16;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_BOOL))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::BOOL;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UNSIGNED)) {
|
|
|
|
if (hasPropertyBitSet(shapeInfo, ARRAY_CHAR))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UINT8;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_SHORT))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UINT16;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_INT))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UINT32;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_LONG))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UINT64;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF8))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UTF8;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF16))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UTF16;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF32))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType ::UTF32;
|
2019-06-06 14:21:15 +02:00
|
|
|
else {
|
|
|
|
//shape::printShapeInfoLinear("Bad unsigned datatype (not)stored in shape", const_cast<Nd4jLong*>(shapeInfo));
|
|
|
|
#ifndef __CUDA_ARCH__
|
|
|
|
throw std::runtime_error("Bad datatype A");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_CHAR))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::INT8;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_SHORT))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::INT16;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_INT))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::INT32;
|
2019-06-06 14:21:15 +02:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_LONG))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::INT64;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF8))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::UTF8;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF16))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::UTF16;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_UTF32))
|
2020-03-02 10:49:41 +01:00
|
|
|
return sd::DataType::UTF32;
|
2019-06-06 14:21:15 +02:00
|
|
|
else {
|
|
|
|
//shape::printShapeInfoLinear("Bad signed datatype (not)stored in shape", const_cast<Nd4jLong*>(shapeInfo));
|
|
|
|
#ifndef __CUDA_ARCH__
|
|
|
|
throw std::runtime_error("Bad datatype B");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD SpaceType ArrayOptions::spaceType(const Nd4jLong *shapeInfo) {
|
|
|
|
return spaceType(const_cast<Nd4jLong *>(shapeInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD SpaceType ArrayOptions::spaceType(Nd4jLong *shapeInfo) {
|
|
|
|
if (hasPropertyBitSet(shapeInfo, ARRAY_QUANTIZED))
|
|
|
|
return SpaceType::QUANTIZED;
|
|
|
|
if (hasPropertyBitSet(shapeInfo, ARRAY_COMPLEX))
|
|
|
|
return SpaceType::COMPLEX;
|
|
|
|
else // by default we return continuous type here
|
|
|
|
return SpaceType::CONTINUOUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD ArrayType ArrayOptions::arrayType(const Nd4jLong *shapeInfo) {
|
|
|
|
return arrayType(const_cast<Nd4jLong *>(shapeInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD ArrayType ArrayOptions::arrayType(Nd4jLong *shapeInfo) {
|
|
|
|
if (hasPropertyBitSet(shapeInfo, ARRAY_SPARSE))
|
|
|
|
return ArrayType::SPARSE;
|
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_COMPRESSED))
|
|
|
|
return ArrayType::COMPRESSED;
|
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_EMPTY))
|
|
|
|
return ArrayType::EMPTY;
|
2020-01-04 11:27:50 +01:00
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_RAGGED))
|
|
|
|
return ArrayType::RAGGED;
|
2019-06-06 14:21:15 +02:00
|
|
|
else // by default we return DENSE type here
|
|
|
|
return ArrayType::DENSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::togglePropertyBit(Nd4jLong *shapeInfo, int property) {
|
|
|
|
extra(shapeInfo) ^= property;
|
|
|
|
|
|
|
|
return hasPropertyBitSet(shapeInfo, property);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::setPropertyBit(Nd4jLong *shapeInfo, int property) {
|
|
|
|
extra(shapeInfo) |= property;
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::unsetPropertyBit(Nd4jLong *shapeInfo, int property) {
|
2021-02-01 06:31:20 +01:00
|
|
|
extra(shapeInfo) &= ~property;
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD SparseType ArrayOptions::sparseType(const Nd4jLong *shapeInfo) {
|
|
|
|
return sparseType(const_cast<Nd4jLong *>(shapeInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD SparseType ArrayOptions::sparseType(Nd4jLong *shapeInfo) {
|
|
|
|
#ifndef __CUDA_ARCH__
|
|
|
|
if (!isSparseArray(shapeInfo))
|
|
|
|
throw std::runtime_error("Not a sparse array");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (hasPropertyBitSet(shapeInfo, ARRAY_CSC))
|
|
|
|
return SparseType::CSC;
|
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_CSR))
|
|
|
|
return SparseType::CSR;
|
|
|
|
else if (hasPropertyBitSet(shapeInfo, ARRAY_COO))
|
|
|
|
return SparseType::COO;
|
|
|
|
else
|
|
|
|
return SparseType::LIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::setPropertyBits(Nd4jLong *shapeInfo, std::initializer_list<int> properties) {
|
|
|
|
for (auto v: properties) {
|
|
|
|
if (!hasPropertyBitSet(shapeInfo, v))
|
|
|
|
setPropertyBit(shapeInfo, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-01 06:31:20 +01:00
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::flagAsPaddedBuffer(Nd4jLong* shapeInfo) {
|
|
|
|
if (!isNewFormat(shapeInfo))
|
|
|
|
return ;
|
|
|
|
|
|
|
|
return setPropertyBit(shapeInfo, ARRAY_HAS_PADDED_BUFFER);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD bool ArrayOptions::hasPaddedBuffer(const Nd4jLong* shapeInfo) {
|
|
|
|
if (!isNewFormat(shapeInfo))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return hasPropertyBitSet(shapeInfo, ARRAY_HAS_PADDED_BUFFER);
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE _CUDA_HD Nd4jLong ArrayOptions::propertyWithoutDataType(const Nd4jLong *shapeInfo){
|
|
|
|
Nd4jLong property = shapeInfo[shapeInfo[0] + shapeInfo[0] + 1];
|
|
|
|
property = property & (~ARRAY_BOOL);
|
|
|
|
property = property & (~ARRAY_HALF);
|
|
|
|
property = property & (~ARRAY_BHALF);
|
|
|
|
property = property & (~ARRAY_FLOAT);
|
|
|
|
property = property & (~ARRAY_DOUBLE);
|
|
|
|
property = property & (~ARRAY_INT);
|
|
|
|
property = property & (~ARRAY_LONG);
|
|
|
|
property = property & (~ARRAY_CHAR);
|
|
|
|
property = property & (~ARRAY_SHORT);
|
|
|
|
property = property & (~ARRAY_UNSIGNED);
|
|
|
|
return property;
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::resetDataType(Nd4jLong *shapeInfo) {
|
2021-02-01 06:31:20 +01:00
|
|
|
extra(shapeInfo) = propertyWithoutDataType(shapeInfo);
|
2019-06-06 14:21:15 +02:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::setDataType(Nd4jLong *shapeInfo, const sd::DataType dataType) {
|
2019-06-06 14:21:15 +02:00
|
|
|
resetDataType(shapeInfo);
|
2020-03-02 10:49:41 +01:00
|
|
|
if (dataType == sd::DataType::UINT8 ||
|
|
|
|
dataType == sd::DataType::UINT16 ||
|
|
|
|
dataType == sd::DataType::UINT32 ||
|
|
|
|
dataType == sd::DataType::UINT64) {
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
setPropertyBit(shapeInfo, ARRAY_UNSIGNED);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (dataType) {
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::BOOL:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_BOOL);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::HALF:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_HALF);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::BFLOAT16:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_BHALF);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::FLOAT32:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_FLOAT);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::DOUBLE:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_DOUBLE);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::INT8:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_CHAR);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::INT16:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_SHORT);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::INT32:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_INT);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::INT64:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_LONG);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UINT8:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_CHAR);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UINT16:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_SHORT);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UINT32:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_INT);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UINT64:
|
2019-06-06 14:21:15 +02:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_LONG);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UTF8:
|
2020-01-04 11:27:50 +01:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_UTF8);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UTF16:
|
2020-01-04 11:27:50 +01:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_UTF16);
|
|
|
|
break;
|
2020-03-02 10:49:41 +01:00
|
|
|
case sd::DataType::UTF32:
|
2020-01-04 11:27:50 +01:00
|
|
|
setPropertyBit(shapeInfo, ARRAY_UTF32);
|
2019-06-06 14:21:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
#ifndef __CUDA_ARCH__
|
|
|
|
throw std::runtime_error("Can't set unknown data type");
|
|
|
|
#else
|
|
|
|
printf("Can't set unknown data type");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
FORCEINLINE _CUDA_HD void ArrayOptions::copyDataType(Nd4jLong* to, const Nd4jLong* from) {
|
|
|
|
setDataType(to, dataType(from));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ND4J_ARRAY_OPTIONS_H :)
|