| 81 | } |
| 82 | |
| 83 | std::string GenerateModuleWithGraphEntryPoint(const std::string& header) { |
| 84 | const std::string src = R"( |
| 85 | %default_graph_type = OpTypeGraphARM 1 %int8tensor %int8tensor |
| 86 | OpGraphEntryPointARM %default_graph "default_entry_point" %var_int8tensor %var_int8tensor |
| 87 | %default_graph = OpGraphARM %default_graph_type |
| 88 | %in = OpGraphInputARM %int8tensor %uint_0 |
| 89 | OpGraphSetOutputARM %in %uint_0 |
| 90 | OpGraphEndARM |
| 91 | )"; |
| 92 | return GenerateModule(header) + src; |
| 93 | } |
| 94 | |
| 95 | // |
| 96 | // Layout tests |
no test coverage detected