| 1 | #include "common.cuh" |
|---|---|
| 2 | |
| 3 | void ggml_cuda_op_repeat(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 4 | void ggml_cuda_op_add(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 5 | void ggml_cuda_op_sub(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 6 | void ggml_cuda_op_mul(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 7 | void ggml_cuda_op_div(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 8 | |
| 9 | void ggml_cuda_op_repeat_back(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 10 | |
| 11 | void ggml_cuda_op_fused_add(ggml_backend_cuda_context & ctx, ggml_tensor * dst, int n_fuse); |
| 12 |