summaryrefslogtreecommitdiff
path: root/ggml-cuda
diff options
context:
space:
mode:
authorIwan Kawrakow <iwan.kawrakow@gmail.com>2024-07-24 20:11:42 +0300
committerIwan Kawrakow <iwan.kawrakow@gmail.com>2024-07-24 20:11:42 +0300
commit770f3585c2a6a1b047689a7635f27140239268bc (patch)
treeac1b8adfce365ed4461f564a8c52d6e739fba07d /ggml-cuda
parent9eee03f4eec5a67042c7c192fbf28994fabae5b8 (diff)
Add copyright notices
Only on the files where I have contributed in a significant way, or the files I wrote myself.
Diffstat (limited to 'ggml-cuda')
-rw-r--r--ggml-cuda/convert.cu7
-rw-r--r--ggml-cuda/vecdotq.cuh7
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) {