unary.cuh 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * llama.cpp - commit 3f1ae2e32cde00c39b96be6d01c2997c29bae555 - do not edit this file
  3. *
  4. * MIT License
  5. *
  6. * Copyright (c) 2023-2024 The ggml authors
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in all
  16. * copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  24. * SOFTWARE.
  25. */
  26. #include "common.cuh"
  27. #define CUDA_NEG_BLOCK_SIZE 256
  28. #define CUDA_STEP_BLOCK_SIZE 256
  29. #define CUDA_GELU_BLOCK_SIZE 256
  30. #define CUDA_SILU_BLOCK_SIZE 256
  31. #define CUDA_TANH_BLOCK_SIZE 256
  32. #define CUDA_RELU_BLOCK_SIZE 256
  33. #define CUDA_SIGMOID_BLOCK_SIZE 256
  34. #define CUDA_HARDSIGMOID_BLOCK_SIZE 256
  35. #define CUDA_EXP_BLOCK_SIZE 256
  36. #define CUDA_HARDSWISH_BLOCK_SIZE 256
  37. #define CUDA_SQR_BLOCK_SIZE 256
  38. #define CUDA_SQRT_BLOCK_SIZE 256
  39. #define CUDA_SIN_BLOCK_SIZE 256
  40. #define CUDA_COS_BLOCK_SIZE 256
  41. void ggml_cuda_op_neg(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  42. void ggml_cuda_op_step(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  43. void ggml_cuda_op_gelu(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  44. void ggml_cuda_op_silu(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  45. void ggml_cuda_op_gelu_quick(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  46. void ggml_cuda_op_tanh(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  47. void ggml_cuda_op_relu(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  48. void ggml_cuda_op_sigmoid(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  49. void ggml_cuda_op_hardsigmoid(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  50. void ggml_cuda_op_exp(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  51. void ggml_cuda_op_hardswish(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  52. void ggml_cuda_op_leaky_relu(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  53. void ggml_cuda_op_sqr(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  54. void ggml_cuda_op_sqrt(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  55. void ggml_cuda_op_sin(ggml_backend_cuda_context & ctx, ggml_tensor * dst);
  56. void ggml_cuda_op_cos(ggml_backend_cuda_context & ctx, ggml_tensor * dst);