Skip to content

Commit 4c41718

Browse files
committed
opencl: remove copyright marker since main license already covers
1 parent adca707 commit 4c41718

11 files changed

+0
-33
lines changed

ggml/include/ggml-opencl.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
#ifndef GGML_OPENCL2_H
52
#define GGML_OPENCL2_H
63

ggml/src/ggml-opencl/ggml-opencl.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
#define CL_TARGET_OPENCL_VERSION 220
52

63
// suppress warnings in CL headers for GCC and Clang

ggml/src/ggml-opencl/kernels/ggml-opencl.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
#ifdef cl_khr_fp16
52
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
63
#elif defined(cl_amd_fp16)

ggml/src/ggml-opencl/kernels/ggml-opencl_cvt.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
//------------------------------------------------------------------------------
52
// This file is contains additional kernels for data conversion.
63
// These kernels are used when loading the model, so its performance is less

ggml/src/ggml-opencl/kernels/ggml-opencl_gemv_noshuffle.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
52
#pragma OPENCL EXTENSION cl_khr_subgroups : enable
63
#pragma OPENCL EXTENSION cl_qcom_subgroup_uniform_load: enable

ggml/src/ggml-opencl/kernels/ggml-opencl_gemv_noshuffle_general.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
52
#pragma OPENCL EXTENSION cl_khr_subgroups : enable
63
#pragma OPENCL EXTENSION cl_qcom_subgroup_uniform_load: enable

ggml/src/ggml-opencl/kernels/ggml-opencl_mm.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
//------------------------------------------------------------------------------
52
// This file is contains additional mulmat kernels
63
// (and potentially other kernels).

ggml/src/ggml-opencl/kernels/ggml-opencl_mul_mat_Ab_Bi_8x4.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
// src0_q, src0_d, src1 are transposed as a preprocessing step
52
// 4-bit weights are transposed in groups of 4 (unsigned short int)
63
// consider weights originally "next to each other", now "on top of each other"

ggml/src/ggml-opencl/kernels/ggml-opencl_transpose_16.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
// 16-bit transpose, loading/storing an 8x8 tile of elements
52

63
kernel void kernel_transpose_16(

ggml/src/ggml-opencl/kernels/ggml-opencl_transpose_32.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// SPDX-FileCopyrightText: Copyright (c) Qualcomm Innovation Center, Inc. All rights reserved
2-
// SPDX-License-Identifier: MIT
3-
41
// 32-bit transpose, loading/storing a 4x4 tile of elements
52

63
kernel void kernel_transpose_32(

0 commit comments

Comments
 (0)