Skip to content

Commit 2924089

Browse files
committed
Add copyrights
1 parent b9b5d68 commit 2924089

11 files changed

+29
-1
lines changed

modules/llama_cpp_plugin/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
cmake_minimum_required(VERSION 3.13)
25

36
project(LlamaCppPlugin)

modules/llama_cpp_plugin/include/compiled_model.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#ifndef LLAMA_CPP_COMPILED_MODEL_HPP
25
#define LLAMA_CPP_COMPILED_MODEL_HPP
36

modules/llama_cpp_plugin/include/infer_request.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#ifndef LLAMA_CPP_INFER_REQUEST_HPP
25
#define LLAMA_CPP_INFER_REQUEST_HPP
36

modules/llama_cpp_plugin/include/plugin.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Copyright (C) 2018-2023 Intel Corporation
22
// SPDX-License-Identifier: Apache-2.0
3-
//
43

54
#ifndef LLAMA_CPP_PLUGIN_HPP
65
#define LLAMA_CPP_PLUGIN_HPP

modules/llama_cpp_plugin/src/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
set( PLUGIN_LIBRARY_NAME CACHE STRING "Library name for the generated plugin" ${TARGET_NAME})
25
if(NOT PLUGIN_LIBRARY_NAME)
36
set( PLUGIN_LIBRARY_NAME "llama_cpp_plugin" )

modules/llama_cpp_plugin/src/compiled_model.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#include "compiled_model.hpp"
25

36
#include <fstream>

modules/llama_cpp_plugin/src/infer_request.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#include "infer_request.hpp"
25

36
#include <openvino/runtime/ivariable_state.hpp>

modules/llama_cpp_plugin/src/plugin.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#include "plugin.hpp"
25

36
#include <openvino/runtime/properties.hpp>

modules/llama_cpp_plugin/tests/e2e/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
13

24
set(TARGET_NAME llama_cpp_e2e_tests)
35

modules/llama_cpp_plugin/tests/e2e/prompt_response.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#include <gtest/gtest.h>
25

36
#include "common_test_utils/file_utils.hpp"

modules/llama_cpp_plugin/tests/e2e/set_device_name.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (C) 2024 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
#include <stdexcept>
25
#include <string>
36

0 commit comments

Comments
 (0)