mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-12 17:57:38 +00:00
dnnl only run opset 10 model tests to reduce footprint/runtime (#4663)
This commit is contained in:
parent
0a8bfb10fa
commit
319d30e50e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue