dnnl only run opset 10 model tests to reduce footprint/runtime (#4663)

This commit is contained in:
George Wu 2020-07-30 09:25:53 +00:00 committed by GitHub
parent 0a8bfb10fa
commit 319d30e50e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ TEST_P(ModelTest, Run) {
// them is enabled here to save CI build time.
return;
}
if (model_info->GetONNXOpSetVersion() != 12 && provider_name == "dnnl") {
if (model_info->GetONNXOpSetVersion() == 10 && provider_name == "dnnl") {
// DNNL can run most of the model tests, but only part of
// them is enabled here to save CI build time.
return;