| 3132 | } |
| 3133 | |
| 3134 | struct ggml_tensor * ggml_dup( |
| 3135 | struct ggml_context * ctx, |
| 3136 | struct ggml_tensor * a) { |
| 3137 | return ggml_dup_impl(ctx, a, false); |
| 3138 | } |
| 3139 | |
| 3140 | struct ggml_tensor * ggml_dup_inplace( |
| 3141 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected