| 1 | #include "common.cuh" |
| 2 | |
| 3 | void ggml_cuda_op_norm(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 4 | |
| 5 | void ggml_cuda_op_group_norm(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 6 | |
| 7 | void ggml_cuda_op_rms_norm(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 8 | |
| 9 | void ggml_cuda_op_rms_norm_fused(ggml_backend_cuda_context & ctx, ggml_tensor * dst, ggml_tensor * mul_tensor); |
| 10 | |
| 11 | void ggml_cuda_op_rms_norm_fused_add(ggml_backend_cuda_context & ctx, |
| 12 | ggml_tensor * dst, |
| 13 | ggml_tensor * mul_tensor, |
| 14 | ggml_tensor * add_tensor); |
| 15 | |
| 16 | void ggml_cuda_op_rms_norm_back(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 17 | |
| 18 | void ggml_cuda_op_l2_norm(ggml_backend_cuda_context & ctx, ggml_tensor * dst); |
| 19 | |