mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	ggml : remove __constant__ specifier for CUDA tables (#5940)
This commit is contained in:
		| @@ -17,7 +17,7 @@ | ||||
| #elif defined(GGML_COMMON_IMPL_CUDA) | ||||
| #include <cstdint> | ||||
|  | ||||
| #define GGML_TABLE_BEGIN(type, name, size) static const __device__ __constant__ type name[size] = { | ||||
| #define GGML_TABLE_BEGIN(type, name, size) static const __device__ type name[size] = { | ||||
| #define GGML_TABLE_END() }; | ||||
|  | ||||
| #define GGML_COMMON_IMPL | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Georgi Gerganov
					Georgi Gerganov