| 862 | return true; |
| 863 | } |
| 864 | virtual bool run(int precision) { |
| 865 | ExecutorScope::Current()->lazyEval = true; |
| 866 | ExecutorScope::Current()->setLazyComputeMode(MNN::Express::Executor::LAZY_CONTENT); |
| 867 | auto res = _run(precision, true); |
| 868 | if (!res) { |
| 869 | FUNC_PRINT(1); |
| 870 | return false; |
| 871 | } |
| 872 | ExecutorScope::Current()->setLazyComputeMode(MNN::Express::Executor::LAZY_FULL); |
| 873 | res = _run(precision, true); |
| 874 | return res; |
| 875 | } |
| 876 | }; |
| 877 | MNNTestSuiteRegister(SessionTest, "expr/SessionTest"); |
| 878 |
nothing calls this directly
no test coverage detected