111 lines
3.4 KiB
C++
111 lines
3.4 KiB
C++
|
/*******************************************************************************
|
||
|
* Copyright (c) 2015-2018 Skymind, Inc.
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
* 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
|
||
|
******************************************************************************/
|
||
|
|
||
|
//
|
||
|
// Created by raver119 on 13.01.2018.
|
||
|
//
|
||
|
|
||
|
#include "testlayers.h"
|
||
|
#include <array/ArrayOptions.h>
|
||
|
#include <NDArray.h>
|
||
|
|
||
|
using namespace nd4j;
|
||
|
|
||
|
|
||
|
class ArrayOptionsTests : public testing::Test {
|
||
|
public:
|
||
|
Nd4jLong shape[8] = {2, 5, 5, 5, 1, 0, 1, 99};
|
||
|
};
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_0) {
|
||
|
shape[5] = 1;
|
||
|
|
||
|
|
||
|
ASSERT_TRUE(ArrayOptions::isNewFormat(shape));
|
||
|
ASSERT_FALSE(ArrayOptions::isSparseArray(shape));
|
||
|
}
|
||
|
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_1) {
|
||
|
shape[5] = 2;
|
||
|
|
||
|
|
||
|
ASSERT_TRUE(ArrayOptions::isNewFormat(shape));
|
||
|
ASSERT_TRUE(ArrayOptions::isSparseArray(shape));
|
||
|
}
|
||
|
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_2) {
|
||
|
shape[5] = 258;
|
||
|
|
||
|
ASSERT_TRUE(ArrayOptions::isNewFormat(shape));
|
||
|
|
||
|
ASSERT_TRUE(ArrayOptions::isSparseArray(shape));
|
||
|
ASSERT_EQ(SpaceType::CONTINUOUS, ArrayOptions::spaceType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_3) {
|
||
|
ASSERT_EQ(0, shape::extra(shape));
|
||
|
|
||
|
ASSERT_EQ(SpaceType::CONTINUOUS, ArrayOptions::spaceType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_4) {
|
||
|
|
||
|
ArrayOptions::setPropertyBits(shape, {ARRAY_HALF, ARRAY_QUANTIZED});
|
||
|
|
||
|
auto dtype = ArrayOptions::dataType(shape);
|
||
|
|
||
|
ASSERT_FALSE(ArrayOptions::isSparseArray(shape));
|
||
|
ASSERT_TRUE(nd4j::DataType::HALF == ArrayOptions::dataType(shape));
|
||
|
ASSERT_EQ(nd4j::ArrayType::DENSE, ArrayOptions::arrayType(shape));
|
||
|
ASSERT_EQ(nd4j::SpaceType::QUANTIZED, ArrayOptions::spaceType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_5) {
|
||
|
ArrayOptions::setPropertyBits(shape, {ARRAY_SPARSE, ARRAY_INT, ARRAY_CSC});
|
||
|
|
||
|
ASSERT_TRUE(ArrayOptions::isSparseArray(shape));
|
||
|
ASSERT_TRUE(nd4j::DataType::INT32 == ArrayOptions::dataType(shape));
|
||
|
ASSERT_EQ(nd4j::SparseType::CSC, ArrayOptions::sparseType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_6) {
|
||
|
ArrayOptions::setPropertyBits(shape, {ARRAY_EMPTY, ARRAY_INT, ARRAY_CSC});
|
||
|
|
||
|
ASSERT_EQ(nd4j::ArrayType::EMPTY, ArrayOptions::arrayType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_7) {
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::FLOAT32);
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::FLOAT32);
|
||
|
|
||
|
ASSERT_EQ(nd4j::DataType::FLOAT32, ArrayOptions::dataType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_8) {
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::DOUBLE);
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::FLOAT32);
|
||
|
|
||
|
ASSERT_EQ(nd4j::DataType::FLOAT32, ArrayOptions::dataType(shape));
|
||
|
}
|
||
|
|
||
|
TEST_F(ArrayOptionsTests, TestShape_Basic_9) {
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::FLOAT32);
|
||
|
ArrayOptions::setDataType(shape, nd4j::DataType::DOUBLE);
|
||
|
|
||
|
ASSERT_EQ(nd4j::DataType::DOUBLE, ArrayOptions::dataType(shape));
|
||
|
}
|