| 195 | return TinyNN_SUCCESS; |
| 196 | } |
| 197 | void register_subtensor(VM* vm) { |
| 198 | vm_register_instruction_load(vm, ns(Instruction_SubTensor), &load_subtensor); |
| 199 | vm_register_instruction_destruct(vm, TinyNN_INST_SUBTENSOR, &destruct_subtensor); |
| 200 | vm_register_instruction_call(vm, TinyNN_INST_SUBTENSOR, &execute_subtensor); |
| 201 | } |
| 202 | #else |
| 203 | void register_subtensor(VM* vm) {} |
| 204 | #endif |
no test coverage detected