diff --git a/examples/sycl/CMakeLists.txt b/examples/sycl/CMakeLists.txt index ad759ae80..69cf8932e 100644 --- a/examples/sycl/CMakeLists.txt +++ b/examples/sycl/CMakeLists.txt @@ -1,3 +1,7 @@ +# MIT license +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: MIT + set(TARGET ls-sycl-device) add_executable(${TARGET} ls-sycl-device.cpp) install(TARGETS ${TARGET} RUNTIME) diff --git a/examples/sycl/build.sh b/examples/sycl/build.sh index 5556f3c6c..26ad2f7da 100755 --- a/examples/sycl/build.sh +++ b/examples/sycl/build.sh @@ -1,3 +1,8 @@ + +# MIT license +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: MIT + mkdir -p build cd build source /opt/intel/oneapi/setvars.sh diff --git a/examples/sycl/ls-sycl-device.cpp b/examples/sycl/ls-sycl-device.cpp index 2f9d8f78e..42847154a 100644 --- a/examples/sycl/ls-sycl-device.cpp +++ b/examples/sycl/ls-sycl-device.cpp @@ -1,3 +1,8 @@ +/*MIT license + Copyright (C) 2024 Intel Corporation + SPDX-License-Identifier: MIT +*/ + #include "ggml-sycl.h" int main(int argc, char ** argv) { diff --git a/examples/sycl/run-llama2.sh b/examples/sycl/run-llama2.sh index 3bdac7377..f5f4c1e98 100755 --- a/examples/sycl/run-llama2.sh +++ b/examples/sycl/run-llama2.sh @@ -1,5 +1,9 @@ #!/bin/bash +# MIT license +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: MIT + INPUT2="Building a website can be done in 10 simple steps:\nStep 1:" source /opt/intel/oneapi/setvars.sh diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index 6a0d12d63..9764d9c35 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -1,3 +1,8 @@ +/*MIT license + Copyright (C) 2024 Intel Corporation + SPDX-License-Identifier: MIT +*/ + #include #include #include diff --git a/ggml-sycl.h b/ggml-sycl.h index 629159dd2..0eabb53cc 100644 --- a/ggml-sycl.h +++ b/ggml-sycl.h @@ -1,3 +1,8 @@ +/*MIT license + Copyright (C) 2024 Intel Corporation + SPDX-License-Identifier: MIT +*/ + #pragma once #include "ggml.h"