2019-06-06 14:21:15 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* 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
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
//
|
|
|
|
// @author raver119@gmail.com
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "testlayers.h"
|
|
|
|
#include <ops/declarable/CustomOperations.h>
|
2020-03-02 10:49:41 +01:00
|
|
|
#include <helpers/ConstantShapeHelper.h>
|
|
|
|
#include <array/ShapeDescriptor.h>
|
2019-06-06 14:21:15 +02:00
|
|
|
#include <array/ConstantDataBuffer.h>
|
|
|
|
#include <helpers/PointersManager.h>
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
using namespace sd;
|
|
|
|
using namespace sd::ops;
|
|
|
|
using namespace sd::graph;
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
class ConstantShapeHelperTests : public testing::Test {
|
|
|
|
public:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConstantHelperTests : public testing::Test {
|
|
|
|
public:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2019-07-22 13:00:24 +02:00
|
|
|
class ConstantTadHelperTests : public testing::Test {
|
|
|
|
public:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ConstantShapeHelperTests, test_cachedAmount_1) {
|
|
|
|
auto ttlBefore = ConstantShapeHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
auto arrayA = NDArrayFactory::create<bool>('c', {7, 11, 17, 23, 31, 43});
|
|
|
|
|
|
|
|
auto ttlMiddle = ConstantShapeHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
auto arrayB = NDArrayFactory::create<bool>('c', {7, 11, 17, 23, 31, 43});
|
|
|
|
|
|
|
|
auto ttlAfter = ConstantShapeHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
ASSERT_TRUE(ttlBefore <= ttlMiddle);
|
|
|
|
ASSERT_EQ(ttlMiddle, ttlAfter);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ConstantTadHelperTests, test_cachedAmount_1) {
|
|
|
|
auto arrayA = NDArrayFactory::create<bool>('c', {7, 11, 17, 23, 31, 43});
|
|
|
|
auto ttlBefore = ConstantTadHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
auto packAA = ConstantTadHelper::getInstance()->tadForDimensions(arrayA.shapeInfo(), {3, 4});
|
|
|
|
|
|
|
|
auto ttlMiddle = ConstantTadHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
auto packAB = ConstantTadHelper::getInstance()->tadForDimensions(arrayA.shapeInfo(), {3, 4});
|
|
|
|
|
|
|
|
auto ttlAfter = ConstantTadHelper::getInstance()->totalCachedEntries();
|
|
|
|
|
|
|
|
ASSERT_TRUE(ttlBefore <= ttlMiddle);
|
|
|
|
ASSERT_EQ(ttlMiddle, ttlAfter);
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_1) {
|
2020-03-02 10:49:41 +01:00
|
|
|
auto ptr = ShapeBuilders::createShapeInfo(sd::DataType::BFLOAT16, 'f', {5, 10, 15});
|
2019-06-06 14:21:15 +02:00
|
|
|
ShapeDescriptor descriptor(ptr);
|
|
|
|
ShapeDescriptor descriptor2(ptr);
|
|
|
|
|
|
|
|
ASSERT_EQ(descriptor, descriptor2);
|
|
|
|
|
|
|
|
ASSERT_EQ(1, descriptor.ews());
|
|
|
|
ASSERT_EQ(3, descriptor.rank());
|
|
|
|
ASSERT_EQ('f', descriptor.order());
|
2020-03-02 10:49:41 +01:00
|
|
|
ASSERT_EQ(sd::DataType::BFLOAT16, descriptor.dataType());
|
2019-06-06 14:21:15 +02:00
|
|
|
ASSERT_FALSE(descriptor.isEmpty());
|
|
|
|
|
|
|
|
ASSERT_FALSE(ConstantShapeHelper::getInstance()->checkBufferExistenceForShapeInfo(descriptor));
|
|
|
|
|
|
|
|
auto buffer = ConstantShapeHelper::getInstance()->bufferForShapeInfo(descriptor);
|
|
|
|
|
|
|
|
ASSERT_TRUE(ConstantShapeHelper::getInstance()->checkBufferExistenceForShapeInfo(descriptor));
|
|
|
|
|
|
|
|
auto buffer2 = ConstantShapeHelper::getInstance()->bufferForShapeInfo(descriptor2);
|
|
|
|
|
|
|
|
|
|
|
|
ASSERT_TRUE(buffer.primary() != nullptr);
|
|
|
|
ASSERT_TRUE(buffer.primary() == buffer2.primary());
|
|
|
|
ASSERT_TRUE(buffer.special() == buffer2.special());
|
|
|
|
|
|
|
|
delete []ptr;
|
|
|
|
}
|
|
|
|
|
2020-02-24 05:51:01 +01:00
|
|
|
TEST_F(ConstantShapeHelperTests, stress_test_1) {
|
|
|
|
|
|
|
|
for (auto x = 0; x < 1000; x++) {
|
2020-03-02 10:49:41 +01:00
|
|
|
auto ptr = ShapeBuilders::createShapeInfo(sd::DataType::FLOAT32, 'c', {5, x + 10, x + 1});
|
2020-02-24 05:51:01 +01:00
|
|
|
ShapeDescriptor descriptor(ptr);
|
|
|
|
ConstantShapeHelper::getInstance()->createShapeInfo(descriptor);
|
|
|
|
delete [] ptr;
|
|
|
|
}
|
2020-03-02 10:49:41 +01:00
|
|
|
ShapeDescriptor aShape(sd::DataType::FLOAT32, 'c', {(Nd4jLong)5, (Nd4jLong)382, (Nd4jLong)373});
|
2020-02-24 05:51:01 +01:00
|
|
|
// nd4j_printf("%d\n", ConstantShapeHelper::getInstance()->cachedEntriesForDevice(0));
|
|
|
|
|
|
|
|
auto timeStart = std::chrono::system_clock::now();
|
|
|
|
ASSERT_TRUE(ConstantShapeHelper::getInstance()->checkBufferExistenceForShapeInfo(aShape));
|
|
|
|
auto timeEnd = std::chrono::system_clock::now();
|
|
|
|
|
|
|
|
auto outerTime = std::chrono::duration_cast<std::chrono::nanoseconds>(timeEnd - timeStart).count();
|
|
|
|
nd4j_printf("Total time (us) %lld\n", outerTime);
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:21:15 +02:00
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_3) {
|
|
|
|
auto array = NDArrayFactory::create_<float>('c', {128});
|
|
|
|
|
|
|
|
ASSERT_TRUE(array->shapeInfo() != nullptr);
|
|
|
|
|
|
|
|
#ifdef __CUDABLAS__
|
|
|
|
ASSERT_TRUE(array->specialShapeInfo() != nullptr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
delete array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_4) {
|
|
|
|
auto array = NDArrayFactory::create_<float>('c', {128, 256});
|
|
|
|
|
2019-12-20 20:35:39 +01:00
|
|
|
auto dup = new NDArray(array->dup('f'));
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
ASSERT_TRUE(dup->shapeInfo() != nullptr);
|
|
|
|
|
|
|
|
#ifdef __CUDABLAS__
|
|
|
|
ASSERT_TRUE(dup->specialShapeInfo() != nullptr);
|
2020-03-02 10:49:41 +01:00
|
|
|
PointersManager manager(sd::LaunchContext ::defaultContext(), "test");
|
2019-06-06 14:21:15 +02:00
|
|
|
// manager.printDevContentOnDev<Nd4jLong>(dup->specialShapeInfo(), shape::shapeInfoLength(2), 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
delete array;
|
|
|
|
delete dup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_5) {
|
|
|
|
|
|
|
|
auto arrayA = NDArrayFactory::create<int>(1);
|
|
|
|
auto arrayB = NDArrayFactory::create_<float>('c', {128, 256});
|
|
|
|
|
2019-11-13 15:15:18 +01:00
|
|
|
//arrayA.printShapeInfo("A");
|
|
|
|
//arrayB->printShapeInfo("B");
|
2019-06-06 14:21:15 +02:00
|
|
|
ASSERT_EQ(0, arrayA.rankOf());
|
|
|
|
ASSERT_EQ(2, arrayB->rankOf());
|
|
|
|
ASSERT_NE(arrayA.dataType(), arrayB->dataType());
|
|
|
|
|
|
|
|
delete arrayB;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_6) {
|
2020-03-02 10:49:41 +01:00
|
|
|
ShapeDescriptor descriptorA(sd::DataType::INT32, 'c', {});
|
|
|
|
ShapeDescriptor descriptorB(sd::DataType::FLOAT32, 'c', {10, 10});
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
// ASSERT_FALSE(descriptorA < descriptorB);
|
|
|
|
// ASSERT_TRUE(descriptorB < descriptorA);
|
|
|
|
|
|
|
|
ASSERT_TRUE(descriptorA < descriptorB);
|
|
|
|
ASSERT_FALSE(descriptorB < descriptorA);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ConstantShapeHelperTests, basic_test_7) {
|
|
|
|
auto array = NDArrayFactory::create_<float>('c', {32, 256});
|
|
|
|
|
|
|
|
IndicesList indices({NDIndex::all(), NDIndex::interval(0,1)});
|
|
|
|
auto strided = array->subarray(indices);
|
2019-12-20 20:35:39 +01:00
|
|
|
strided.assign(1.0f);
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
//strided->printIndexedBuffer("column");
|
|
|
|
|
|
|
|
delete array;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ConstantHelperTests, basic_test_1) {
|
|
|
|
|
|
|
|
ConstantDescriptor descriptor({1, 2, 3});
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
ConstantDataBuffer* fBuffer = ConstantHelper::getInstance()->constantBuffer(descriptor, sd::DataType::FLOAT32);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto fPtr = fBuffer->primaryAsT<float>();
|
|
|
|
|
|
|
|
ASSERT_NEAR(1.f, fPtr[0], 1e-5);
|
|
|
|
ASSERT_NEAR(2.f, fPtr[1], 1e-5);
|
|
|
|
ASSERT_NEAR(3.f, fPtr[2], 1e-5);
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
auto iBuffer = ConstantHelper::getInstance()->constantBuffer(descriptor, sd::DataType::INT32);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto iPtr = iBuffer->primaryAsT<int>();
|
|
|
|
|
|
|
|
ASSERT_EQ(1, iPtr[0]);
|
|
|
|
ASSERT_EQ(2, iPtr[1]);
|
|
|
|
ASSERT_EQ(3, iPtr[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ConstantHelperTests, basic_test_2) {
|
|
|
|
|
|
|
|
double array[] = {1., 2., 3.};
|
|
|
|
ConstantDescriptor descriptor(array, 3);
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
ConstantDataBuffer* fBuffer = ConstantHelper::getInstance()->constantBuffer(descriptor, sd::DataType::FLOAT32);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto fPtr = fBuffer->primaryAsT<float>();
|
|
|
|
|
|
|
|
ASSERT_NEAR(1.f, fPtr[0], 1e-5);
|
|
|
|
ASSERT_NEAR(2.f, fPtr[1], 1e-5);
|
|
|
|
ASSERT_NEAR(3.f, fPtr[2], 1e-5);
|
|
|
|
|
2020-03-02 10:49:41 +01:00
|
|
|
auto iBuffer = ConstantHelper::getInstance()->constantBuffer(descriptor, sd::DataType::INT32);
|
2019-06-06 14:21:15 +02:00
|
|
|
auto iPtr = iBuffer->primaryAsT<int>();
|
|
|
|
|
|
|
|
ASSERT_EQ(1, iPtr[0]);
|
|
|
|
ASSERT_EQ(2, iPtr[1]);
|
|
|
|
ASSERT_EQ(3, iPtr[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
TEST_F(ConstantShapeHelperTests, ShapeDescriptor_1) {
|
|
|
|
|
|
|
|
Nd4jLong shapeInfo1[] = {4, 2, 5, 5, 2, 25, 5, 1, 50, 8192, 0, 99};
|
|
|
|
Nd4jLong shapeInfo2[] = {4, 2, 5, 5, 2, 50, 10, 2, 1, 8192, 1, 99};
|
|
|
|
|
|
|
|
ShapeDescriptor descr1(shapeInfo1);
|
|
|
|
ShapeDescriptor descr2(shapeInfo2);
|
|
|
|
|
|
|
|
ASSERT_FALSE(descr1 == descr2);
|
|
|
|
}
|