Further optimization of Conv2D, fused Conv_Add_Activation, bring latest code from ficus OpConv.fx. (#22401)

This commit is contained in:
Zihao Mu
2022-08-26 17:57:25 +08:00
committed by GitHub
parent 67fa8a2f47
commit bb64db98d8
12 changed files with 1194 additions and 905 deletions
+1 -1
View File
@@ -284,7 +284,7 @@ TEST(Reproducibility_SSD, Accuracy)
Mat out = net.forward("detection_out");
Mat ref = blobFromNPY(_tf("ssd_out.npy"));
normAssertDetections(ref, out, "", FLT_MIN);
normAssertDetections(ref, out, "", 0.06);
}
typedef testing::TestWithParam<tuple<Backend, Target> > Reproducibility_MobileNet_SSD;