| 140 | } |
| 141 | |
| 142 | static ggml_tensor * make_input_with_size(ggml_context * ctx, size_t size_bytes) { |
| 143 | GGML_ASSERT(size_bytes % 4 == 0); |
| 144 | return make_input_1d(ctx, size_bytes / 4); |
| 145 | } |
| 146 | |
| 147 | static void assign_names(ggml_context * ctx, const char * prefix = "x") { |
| 148 | int i = 0; |
no test coverage detected