mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
Exclude a multi-stream case from reduced ops build (#14351)
Exclude a multi-stream case from reduced ops build to unblock [pipeline](https://dev.azure.com/onnxruntime/onnxruntime/_build?definitionId=120&_a=summary). Co-authored-by: Randy Shuai <rashuai@microsoft.com>
This commit is contained in:
parent
5d6a049141
commit
36ba3d8d21
1 changed files with 2 additions and 0 deletions
|
|
@ -2678,6 +2678,7 @@ TEST(CApiTest, GH_11717) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifndef REDUCED_OPS_BUILD
|
||||
TEST(CApiTest, TestMultiStreamInferenceSimpleSSD) {
|
||||
Ort::SessionOptions session_options{};
|
||||
session_options.SetGraphOptimizationLevel(GraphOptimizationLevel::ORT_DISABLE_ALL);
|
||||
|
|
@ -2704,3 +2705,4 @@ TEST(CApiTest, TestMultiStreamInferenceSimpleSSD) {
|
|||
std::vector<int64_t> expected_output_dims = {3, 256, 150, 150};
|
||||
ASSERT_TRUE(output_dims == expected_output_dims);
|
||||
}
|
||||
#endif
|
||||
Loading…
Reference in a new issue