diff options
Diffstat (limited to 'llama.cpp/ggml/src/ggml-cuda/binbcast.cuh')
| -rw-r--r-- | llama.cpp/ggml/src/ggml-cuda/binbcast.cuh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-cuda/binbcast.cuh b/llama.cpp/ggml/src/ggml-cuda/binbcast.cuh new file mode 100644 index 0000000..62bc950 --- /dev/null +++ b/llama.cpp/ggml/src/ggml-cuda/binbcast.cuh @@ -0,0 +1,11 @@ +#include "common.cuh" + +void ggml_cuda_op_repeat(ggml_backend_cuda_context & ctx, ggml_tensor * dst); +void ggml_cuda_op_add(ggml_backend_cuda_context & ctx, ggml_tensor * dst); +void ggml_cuda_op_sub(ggml_backend_cuda_context & ctx, ggml_tensor * dst); +void ggml_cuda_op_mul(ggml_backend_cuda_context & ctx, ggml_tensor * dst); +void ggml_cuda_op_div(ggml_backend_cuda_context & ctx, ggml_tensor * dst); + +void ggml_cuda_op_repeat_back(ggml_backend_cuda_context & ctx, ggml_tensor * dst); + +void ggml_cuda_op_fused_add(ggml_backend_cuda_context & ctx, ggml_tensor * dst, int n_fuse); |
