* Migrate range1,4 to template plugin test * Fix cpplint issue * Return NULL in default case in range test * Fix cpplint error
411 lines
14 KiB
C++
411 lines
14 KiB
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <gtest/gtest.h>
|
|
#include "base_reference_test.hpp"
|
|
#include "openvino/op/range.hpp"
|
|
#include "openvino/op/constant.hpp"
|
|
|
|
using namespace ov;
|
|
using namespace reference_tests;
|
|
|
|
namespace {
|
|
|
|
struct RangeParams {
|
|
template <class IT>
|
|
RangeParams(const Shape& iShape,
|
|
const Shape& oShape,
|
|
const element::Type& iType,
|
|
const element::Type& oType,
|
|
const element::Type& nodeType,
|
|
const std::vector<IT>& oValues,
|
|
float start,
|
|
float stop,
|
|
float step)
|
|
: inShape(iShape),
|
|
outShape(oShape),
|
|
inType(iType),
|
|
outType(oType),
|
|
nodeType(nodeType),
|
|
outData(CreateTensor(oType, oValues)),
|
|
start(start),
|
|
stop(stop),
|
|
step(step) {}
|
|
|
|
Shape inShape;
|
|
Shape outShape;
|
|
element::Type inType;
|
|
element::Type outType;
|
|
element::Type nodeType;
|
|
runtime::Tensor inData;
|
|
runtime::Tensor outData;
|
|
float start;
|
|
float stop;
|
|
float step;
|
|
};
|
|
|
|
static std::shared_ptr<op::v0::Constant> CreateConstant(Shape& ishape, element::Type ntype, float input) {
|
|
switch (ntype) {
|
|
case element::Type_t::f64:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<double>{input});
|
|
case element::Type_t::f32:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<float>{input});
|
|
case element::Type_t::f16:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<float16>{input});
|
|
case element::Type_t::bf16:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<bfloat16>{input});
|
|
case element::Type_t::i64:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<int64_t>{static_cast<int64_t>(input)});
|
|
case element::Type_t::i32:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<int32_t>{static_cast<int16_t>(input)});
|
|
case element::Type_t::i16:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<int16_t>{static_cast<int16_t>(input)});
|
|
case element::Type_t::i8:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<int8_t>{static_cast<int8_t>(input)});
|
|
case element::Type_t::u64:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<uint64_t>{static_cast<uint64_t>(input)});
|
|
case element::Type_t::u32:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<uint32_t>{static_cast<uint32_t>(input)});
|
|
case element::Type_t::u16:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<uint16_t>{static_cast<uint16_t>(input)});
|
|
case element::Type_t::u8:
|
|
return std::make_shared<op::v0::Constant>(ntype, ishape, std::vector<uint8_t>{static_cast<uint8_t>(input)});
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
class ReferenceRangeV0LayerTest : public testing::TestWithParam<RangeParams>, public CommonReferenceTest {
|
|
public:
|
|
void SetUp() override {
|
|
auto params = GetParam();
|
|
function = CreateFunction(params.inShape,
|
|
params.outShape,
|
|
params.inType,
|
|
params.outType,
|
|
params.nodeType,
|
|
params.start,
|
|
params.stop,
|
|
params.step);
|
|
refOutData = {params.outData};
|
|
}
|
|
|
|
static std::string getTestCaseName(const testing::TestParamInfo<RangeParams>& obj) {
|
|
auto param = obj.param;
|
|
std::ostringstream result;
|
|
result << "iShape=" << param.inShape << "_";
|
|
result << "oShape=" << param.outShape << "_";
|
|
result << "iType=" << param.inType << "_";
|
|
result << "oType=" << param.outType << "_";
|
|
result << "nType=" << param.nodeType;
|
|
return result.str();
|
|
}
|
|
|
|
private:
|
|
static std::shared_ptr<Function> CreateFunction(Shape& ishape,
|
|
Shape& oshape,
|
|
element::Type& itype,
|
|
element::Type& otype,
|
|
element::Type& ntype,
|
|
float fstart,
|
|
float fstop,
|
|
float fstep) {
|
|
auto start = CreateConstant(ishape, ntype, fstart);
|
|
auto stop = CreateConstant(ishape, ntype, fstop);
|
|
auto step = CreateConstant(ishape, ntype, fstep);
|
|
auto range = std::make_shared<op::v0::Range>(start, stop, step);
|
|
return std::make_shared<Function>(NodeVector{range}, ParameterVector{});
|
|
}
|
|
};
|
|
|
|
class ReferenceRangeV4LayerTest : public testing::TestWithParam<RangeParams>, public CommonReferenceTest {
|
|
public:
|
|
void SetUp() override {
|
|
auto params = GetParam();
|
|
function = CreateFunction(params.inShape,
|
|
params.outShape,
|
|
params.inType,
|
|
params.outType,
|
|
params.nodeType,
|
|
params.start,
|
|
params.stop,
|
|
params.step);
|
|
refOutData = {params.outData};
|
|
}
|
|
|
|
static std::string getTestCaseName(const testing::TestParamInfo<RangeParams>& obj) {
|
|
auto param = obj.param;
|
|
std::ostringstream result;
|
|
result << "iShape=" << param.inShape << "_";
|
|
result << "oShape=" << param.outShape << "_";
|
|
result << "iType=" << param.inType << "_";
|
|
result << "oType=" << param.outType << "_";
|
|
result << "nType=" << param.nodeType;
|
|
return result.str();
|
|
}
|
|
|
|
private:
|
|
static std::shared_ptr<Function> CreateFunction(Shape& ishape,
|
|
Shape& oshape,
|
|
element::Type& itype,
|
|
element::Type& otype,
|
|
element::Type& ntype,
|
|
float fstart,
|
|
float fstop,
|
|
float fstep) {
|
|
auto start = CreateConstant(ishape, ntype, fstart);
|
|
auto stop = CreateConstant(ishape, ntype, fstop);
|
|
auto step = CreateConstant(ishape, ntype, fstep);
|
|
auto range = std::make_shared<op::v4::Range>(start, stop, step, otype);
|
|
return std::make_shared<Function>(NodeVector{range}, ParameterVector{});
|
|
}
|
|
};
|
|
|
|
TEST_P(ReferenceRangeV0LayerTest, RangeWithHardcodedRefs) {
|
|
Exec();
|
|
}
|
|
|
|
TEST_P(ReferenceRangeV4LayerTest, RangeWithHardcodedRefs) {
|
|
Exec();
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV0Int() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{4},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{-5, -2, 1, 4},
|
|
-5,
|
|
6,
|
|
3),
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{2},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{10, 7},
|
|
10,
|
|
5,
|
|
-3)};
|
|
return params;
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV0UnsignedInt() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{10},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
|
|
0,
|
|
10,
|
|
1)
|
|
};
|
|
return params;
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV0Float() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{4},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{0.0f, 0.25f, 0.5f, 0.75},
|
|
0.0f,
|
|
1.0f,
|
|
0.25f),
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{10},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{-1.0f, -0.8f, -0.6f, -0.4f, -0.2f, 0.0f, 0.2f, 0.4f, 0.6f, 0.8f},
|
|
-1.0f,
|
|
0.875f,
|
|
0.2f),
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{8},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{2.0f, 1.75f, 1.5f, 1.25f, 1.0f, 0.75f, 0.5f, 0.25},
|
|
2.0f,
|
|
0.0f,
|
|
-0.25f)};
|
|
return params;
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV4Int() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{4},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{-5, -2, 1, 4},
|
|
-5,
|
|
6,
|
|
3),
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{2},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{10, 7},
|
|
10,
|
|
5,
|
|
-3)
|
|
};
|
|
|
|
return params;
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV4UnsignedInt() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{10},
|
|
IN_ET,
|
|
IN_ET,
|
|
element::Type_t::f32,
|
|
std::vector<T>{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
|
|
1.2f,
|
|
11.3f,
|
|
1.6f),
|
|
RangeParams(
|
|
ov::Shape{},
|
|
ov::Shape{10},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
|
|
0,
|
|
10,
|
|
1)
|
|
};
|
|
|
|
return params;
|
|
}
|
|
|
|
template <element::Type_t IN_ET>
|
|
std::vector<RangeParams> generateParamsForRangeV4Float() {
|
|
using T = typename element_type_traits<IN_ET>::value_type;
|
|
|
|
std::vector<RangeParams> params{
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{4},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{0.0f, 0.25f, 0.5f, 0.75f},
|
|
0.0f,
|
|
1.0f,
|
|
0.25f),
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{10},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{-1.0f, -0.8f, -0.6f, -0.4f, -0.2f, 0.0f, 0.2f, 0.4f, 0.6f, 0.8f},
|
|
-1.0f,
|
|
0.875f,
|
|
0.2f),
|
|
RangeParams(ov::Shape{},
|
|
ov::Shape{8},
|
|
IN_ET,
|
|
IN_ET,
|
|
IN_ET,
|
|
std::vector<T>{2.0f, 1.75f, 1.5f, 1.25f, 1.0f, 0.75f, 0.5f, 0.25f},
|
|
2,
|
|
0,
|
|
-0.25)
|
|
};
|
|
|
|
return params;
|
|
}
|
|
|
|
std::vector<RangeParams> generateCombinedParamsForRangeV0() {
|
|
const std::vector<std::vector<RangeParams>> allTypeParams{
|
|
generateParamsForRangeV0Float<element::Type_t::f32>(),
|
|
generateParamsForRangeV0Float<element::Type_t::f16>(),
|
|
generateParamsForRangeV0Float<element::Type_t::bf16>(),
|
|
generateParamsForRangeV0Int<element::Type_t::i64>(),
|
|
generateParamsForRangeV0Int<element::Type_t::i32>(),
|
|
generateParamsForRangeV0Int<element::Type_t::i16>(),
|
|
generateParamsForRangeV0Int<element::Type_t::i8>(),
|
|
generateParamsForRangeV0UnsignedInt<element::Type_t::u64>(),
|
|
generateParamsForRangeV0UnsignedInt<element::Type_t::u32>(),
|
|
generateParamsForRangeV0UnsignedInt<element::Type_t::u16>(),
|
|
generateParamsForRangeV0UnsignedInt<element::Type_t::u8>(),
|
|
};
|
|
|
|
std::vector<RangeParams> combinedParams;
|
|
|
|
for (const auto& params : allTypeParams) {
|
|
combinedParams.insert(combinedParams.end(), params.begin(), params.end());
|
|
}
|
|
|
|
return combinedParams;
|
|
}
|
|
|
|
std::vector<RangeParams> generateCombinedParamsForRangeV4() {
|
|
const std::vector<std::vector<RangeParams>> allTypeParams{
|
|
generateParamsForRangeV4Float<element::Type_t::f32>(),
|
|
generateParamsForRangeV4Float<element::Type_t::f16>(),
|
|
generateParamsForRangeV4Float<element::Type_t::bf16>(),
|
|
generateParamsForRangeV4Int<element::Type_t::i64>(),
|
|
generateParamsForRangeV4Int<element::Type_t::i32>(),
|
|
generateParamsForRangeV4Int<element::Type_t::i8>(),
|
|
generateParamsForRangeV4UnsignedInt<element::Type_t::u64>(),
|
|
generateParamsForRangeV4UnsignedInt<element::Type_t::u32>(),
|
|
generateParamsForRangeV4UnsignedInt<element::Type_t::u8>(),
|
|
};
|
|
|
|
std::vector<RangeParams> combinedParams;
|
|
|
|
for (const auto& params : allTypeParams) {
|
|
combinedParams.insert(combinedParams.end(), params.begin(), params.end());
|
|
}
|
|
|
|
return combinedParams;
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(
|
|
smoke_Range_V0_With_Hardcoded_Refs,
|
|
ReferenceRangeV0LayerTest,
|
|
::testing::ValuesIn(generateCombinedParamsForRangeV0()),
|
|
ReferenceRangeV0LayerTest::getTestCaseName);
|
|
|
|
INSTANTIATE_TEST_SUITE_P(
|
|
smoke_Range_V4_With_Hardcoded_Refs,
|
|
ReferenceRangeV4LayerTest,
|
|
::testing::ValuesIn(generateCombinedParamsForRangeV4()),
|
|
ReferenceRangeV4LayerTest::getTestCaseName);
|
|
|
|
} // namespace
|