ggml-cuda.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #pragma once
  2. #include "ggml.h"
  3. #include "ggml-backend.h"
  4. #ifdef GGML_USE_HIPBLAS
  5. #define GGML_CUDA_NAME "ROCm"
  6. #define GGML_CUBLAS_NAME "hipBLAS"
  7. #else
  8. #define GGML_CUDA_NAME "CUDA"
  9. #define GGML_CUBLAS_NAME "cuBLAS"
  10. #endif
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #define GGML_CUDA_MAX_DEVICES 16
  15. // Always success. To check if CUDA is actually loaded, use `ggml_cublas_loaded`.
  16. GGML_API void ggml_init_cublas(void);
  17. // Returns `true` if there are available CUDA devices and cublas loads successfully; otherwise, it returns `false`.
  18. GGML_API bool ggml_cublas_loaded(void);
  19. GGML_API void * ggml_cuda_host_malloc(size_t size);
  20. GGML_API void ggml_cuda_host_free(void * ptr);
  21. GGML_API bool ggml_cuda_can_mul_mat(const struct ggml_tensor * src0, const struct ggml_tensor * src1, struct ggml_tensor * dst);
  22. GGML_API void ggml_cuda_set_tensor_split(const float * tensor_split);
  23. GGML_API void ggml_cuda_transform_tensor(void * data, struct ggml_tensor * tensor);
  24. GGML_API void ggml_cuda_free_data(struct ggml_tensor * tensor);
  25. GGML_API void ggml_cuda_assign_buffers(struct ggml_tensor * tensor);
  26. GGML_API void ggml_cuda_assign_buffers_no_scratch(struct ggml_tensor * tensor);
  27. GGML_API void ggml_cuda_assign_buffers_force_inplace(struct ggml_tensor * tensor);
  28. GGML_API void ggml_cuda_assign_buffers_no_alloc(struct ggml_tensor * tensor);
  29. GGML_API void ggml_cuda_assign_scratch_offset(struct ggml_tensor * tensor, size_t offset);
  30. GGML_API void ggml_cuda_copy_to_device(struct ggml_tensor * tensor);
  31. GGML_API void ggml_cuda_set_main_device(int main_device);
  32. GGML_API void ggml_cuda_set_mul_mat_q(bool mul_mat_q);
  33. GGML_API void ggml_cuda_set_scratch_size(size_t scratch_size);
  34. GGML_API void ggml_cuda_free_scratch(void);
  35. GGML_API bool ggml_cuda_compute_forward(struct ggml_compute_params * params, struct ggml_tensor * tensor);
  36. GGML_API int ggml_cuda_get_device_count(void);
  37. GGML_API void ggml_cuda_get_device_description(int device, char * description, size_t description_size);
  38. // backend API
  39. GGML_API ggml_backend_t ggml_backend_cuda_init(void); // TODO: take a list of devices to use
  40. #ifdef __cplusplus
  41. }
  42. #endif