| 54 | } |
| 55 | |
| 56 | static bool isMetalRuntime() { |
| 57 | auto rtInfo = Express::ExecutorScope::Current()->getRuntime(); |
| 58 | if (rtInfo.first.empty()) { |
| 59 | return false; |
| 60 | } |
| 61 | return rtInfo.first.begin()->first == MNN_FORWARD_METAL; |
| 62 | } |
| 63 | |
| 64 | class StaticModuleOutputReuseTest : public MNNTestCase { |
| 65 | public: |
no test coverage detected