mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Fix reduced pipeline by excluding test case standalone op (#11458)
* exclude reduce build from standalone op test * exclude test from reduced op build
This commit is contained in:
parent
3624f7c5a5
commit
8467af832f
1 changed files with 2 additions and 1 deletions
|
|
@ -405,7 +405,8 @@ TEST(CApiTest, custom_op_handler) {
|
|||
#endif
|
||||
}
|
||||
|
||||
#if !defined(ORT_MINIMAL_BUILD)
|
||||
#if !defined(ORT_MINIMAL_BUILD) && !defined(REDUCED_OPS_BUILD)
|
||||
//disable test in reduced-op-build since TOPK and GRU are excluded there
|
||||
TEST(CApiTest, instant_op_handler) {
|
||||
std::vector<Input> inputs(1);
|
||||
Input& input = inputs[0];
|
||||
|
|
|
|||
Loading…
Reference in a new issue