Template slt bug fix/mish partial dynamic (#9976)

* Remove fp16 of Convert layer test from skip_tests.config.cpp as it works now

* update repo

* fix demension dynamic support bug in mish op reference test
This commit is contained in:
Wilson Seok 2022-02-03 00:32:39 -08:00 committed by GitHub
parent 8d27103f06
commit 3d9da2901e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -21,7 +21,7 @@ struct MishParams {
inputShape(inputShape),
inType(iType),
outType(iType),
inputData(CreateTensor(iType, iValues)),
inputData(CreateTensor(inputShape, iType, iValues)),
refData(CreateTensor(iType, oValues)),
testcaseName(test_name) {}

View File

@ -43,8 +43,6 @@ std::vector<std::string> disabledTestPatterns() {
// CVS-64094
R"(.*ReferenceLogSoftmaxLayerTest.*4.*iType=f16.*axis=.*1.*)",
// CVS-64080
R"(.*ReferenceMishLayerTest.*dimensionDynamic.*)",
//CVS-64012
R"(.*ReferenceDeformableConvolutionLayerTest.*f16.*real_offset_padding_stride_dialation.*)",
R"(.*ReferenceDeformableConvolutionLayerTest.*bf16.*)",