diff options
Diffstat (limited to 'ggml-cuda')
-rw-r--r-- | ggml-cuda/convert.cu | 7 | ||||
-rw-r--r-- | ggml-cuda/vecdotq.cuh | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/ggml-cuda/convert.cu b/ggml-cuda/convert.cu index 4a67c498..66e68a52 100644 --- a/ggml-cuda/convert.cu +++ b/ggml-cuda/convert.cu @@ -1,3 +1,10 @@ +// +// Copyright (C) 2023-2024 The ggml authors +// Copyright (C) 2024 Iwan Kawrakow +// MIT license +// SPDX-License-Identifier: MIT +// + #include "convert.cuh" #include "dequantize.cuh" diff --git a/ggml-cuda/vecdotq.cuh b/ggml-cuda/vecdotq.cuh index f0133e07..b8dd0bdf 100644 --- a/ggml-cuda/vecdotq.cuh +++ b/ggml-cuda/vecdotq.cuh @@ -1,3 +1,10 @@ +// +// Copyright (C) 2023-2024 The ggml authors +// Copyright (C) 2024 Iwan Kawrakow +// MIT license +// SPDX-License-Identifier: MIT +// + #include "common.cuh" static __device__ __forceinline__ int get_int_from_int8(const int8_t * x8, const int & i32) { |