mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-28 08:31:25 +00:00 
			
		
		
		
	llama : reorganize source code + improve CMake (#8006)
* scripts : update sync [no ci] * files : relocate [no ci] * ci : disable kompute build [no ci] * cmake : fixes [no ci] * server : fix mingw build ggml-ci * cmake : minor [no ci] * cmake : link math library [no ci] * cmake : build normal ggml library (not object library) [no ci] * cmake : fix kompute build ggml-ci * make,cmake : fix LLAMA_CUDA + replace GGML_CDEF_PRIVATE ggml-ci * move public backend headers to the public include directory (#8122) * move public backend headers to the public include directory * nix test * spm : fix metal header --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * scripts : fix sync paths [no ci] * scripts : sync ggml-blas.h [no ci] --------- Co-authored-by: slaren <slarengh@gmail.com>
This commit is contained in:
		
							
								
								
									
										29
									
								
								ggml/include/ggml-vulkan.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								ggml/include/ggml-vulkan.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,29 @@ | ||||
| #pragma once | ||||
|  | ||||
| #include "ggml.h" | ||||
| #include "ggml-backend.h" | ||||
|  | ||||
| #ifdef  __cplusplus | ||||
| extern "C" { | ||||
| #endif | ||||
|  | ||||
| #define GGML_VK_NAME "Vulkan" | ||||
| #define GGML_VK_MAX_DEVICES 16 | ||||
|  | ||||
| GGML_API void ggml_vk_instance_init(void); | ||||
|  | ||||
| // backend API | ||||
| GGML_API GGML_CALL ggml_backend_t ggml_backend_vk_init(size_t dev_num); | ||||
|  | ||||
| GGML_API GGML_CALL bool ggml_backend_is_vk(ggml_backend_t backend); | ||||
| GGML_API GGML_CALL int  ggml_backend_vk_get_device_count(void); | ||||
| GGML_API GGML_CALL void ggml_backend_vk_get_device_description(int device, char * description, size_t description_size); | ||||
| GGML_API GGML_CALL void ggml_backend_vk_get_device_memory(int device, size_t * free, size_t * total); | ||||
|  | ||||
| GGML_API GGML_CALL ggml_backend_buffer_type_t ggml_backend_vk_buffer_type(size_t dev_num); | ||||
| // pinned host buffer for use with the CPU backend for faster copies between CPU and GPU | ||||
| GGML_API GGML_CALL ggml_backend_buffer_type_t ggml_backend_vk_host_buffer_type(void); | ||||
|  | ||||
| #ifdef  __cplusplus | ||||
| } | ||||
| #endif | ||||
		Reference in New Issue
	
	Block a user
	 Georgi Gerganov
					Georgi Gerganov