Skip to content

Commit

Permalink
Enable whole Tensor comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
t-jankowski committed Jul 2, 2024
1 parent bc505ba commit 1f684f8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/plugins/template/tests/functional/op_reference/tan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,13 @@ struct TanParams {
class ReferenceTanLayerTest : public testing::TestWithParam<TanParams>, public CommonReferenceTest {
public:
void SetUp() override {
legacy_compare = true;
auto params = GetParam();
const auto& params = GetParam();
function = CreateFunction(params.pshape, params.inType);
inputData = {params.inputData};
refOutData = {params.refData};
}
static std::string getTestCaseName(const testing::TestParamInfo<TanParams>& obj) {
auto param = obj.param;
const auto& param = obj.param;
std::ostringstream result;
result << "shape=" << param.pshape << "_";
result << "iType=" << param.inType << "_";
Expand Down

0 comments on commit 1f684f8

Please sign in to comment.