| 1130 | // |
| 1131 | |
| 1132 | inline static void ggml_vec_set_i8(const int n, int8_t * x, const int8_t v) { for (int i = 0; i < n; ++i) x[i] = v; } |
| 1133 | |
| 1134 | inline static void ggml_vec_set_i16(const int n, int16_t * x, const int16_t v) { for (int i = 0; i < n; ++i) x[i] = v; } |
| 1135 |
no outgoing calls
no test coverage detected