| 2928 | struct ggml_tensor * ggml_ceil_inplace( |
| 2929 | struct ggml_context * ctx, |
| 2930 | struct ggml_tensor * a) { |
| 2931 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_CEIL); |
| 2932 | } |
| 2933 | |
| 2934 | //ggml_round |
| 2935 | |
| 2936 | struct ggml_tensor * ggml_round( |
| 2937 | struct ggml_context * ctx, |