Skip to content

Commit a051f08

Browse files
ikawrakowIwan Kawrakow
andauthored
Add copyright notices (ikawrakow#317)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
1 parent abbabf7 commit a051f08

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+294
-2
lines changed

common/common.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#if defined(_MSC_VER)
29
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
310
#endif

common/common.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
// Various helper functions and utilities
29

310
#pragma once

examples/llama-bench/llama-bench.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#include <algorithm>
29
#include <array>
310
#include <cassert>

examples/perplexity/perplexity.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#include "common.h"
29
#include "llama.h"
310

examples/quantize-stats/quantize-stats.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#define LLAMA_API_INTERNAL
29
#include "common.h"
310
#include "ggml.h"

examples/quantize/quantize.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The llama.cpp authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#include "common.h"
29
#include "llama.h"
310

ggml/include/ggml.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//
2+
// Copyright (C) 2023-2025 The ggml authors
3+
// Copyright (C) 2024-2025 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
7+
18
#pragma once
29

310
//

ggml/src/ggml-common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
2-
// Copyright (C) 2023-2024 The ggml authors
32
// Copyright (C) 2024 Iwan Kawrakow
3+
// Copyright (C) 2023-2024 The ggml authors
44
// MIT license
55
// SPDX-License-Identifier: MIT
66
//

ggml/src/ggml-cuda.cu

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//
2+
// Copyright (C) 2023-2024 The ggml authors
3+
// Copyright (C) 2024 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
17
#include "ggml-cuda.h"
28
#include "ggml.h"
39
#include "ggml-backend-impl.h"

ggml/src/ggml-cuda/argsort.cu

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//
2+
// Copyright (C) 2023-2024 The ggml authors
3+
// Copyright (C) 2024 Iwan Kawrakow
4+
// MIT license
5+
// SPDX-License-Identifier: MIT
6+
//
17
#include "argsort.cuh"
28

39
template<typename T>

0 commit comments

Comments
 (0)