diff --git a/programming_examples/basic/dma_transpose/Makefile b/programming_examples/basic/dma_transpose/Makefile index 1cc5f1e83a..888e9c240c 100644 --- a/programming_examples/basic/dma_transpose/Makefile +++ b/programming_examples/basic/dma_transpose/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/matrix_multiplication/makefile-common b/programming_examples/basic/matrix_multiplication/makefile-common index 1e095eda07..9f336f1099 100644 --- a/programming_examples/basic/matrix_multiplication/makefile-common +++ b/programming_examples/basic/matrix_multiplication/makefile-common @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/matrix_multiplication/matrix_vector/Makefile b/programming_examples/basic/matrix_multiplication/matrix_vector/Makefile index c86e4761af..0b88616bae 100644 --- a/programming_examples/basic/matrix_multiplication/matrix_vector/Makefile +++ b/programming_examples/basic/matrix_multiplication/matrix_vector/Makefile @@ -4,6 +4,8 @@ # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # +# Copyright (C) 2024, Advanced Micro Devices, Inc. +# ##===----------------------------------------------------------------------===## subdir=matrix_vector diff --git a/programming_examples/basic/matrix_multiplication/single_core/Makefile b/programming_examples/basic/matrix_multiplication/single_core/Makefile index 1142d7357e..a1da00108f 100644 --- a/programming_examples/basic/matrix_multiplication/single_core/Makefile +++ b/programming_examples/basic/matrix_multiplication/single_core/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/matrix_multiplication/whole_array/Makefile b/programming_examples/basic/matrix_multiplication/whole_array/Makefile index 617c76e975..cdcf116ba2 100644 --- a/programming_examples/basic/matrix_multiplication/whole_array/Makefile +++ b/programming_examples/basic/matrix_multiplication/whole_array/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## srcdir := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) diff --git a/programming_examples/basic/matrix_scalar_add/Makefile b/programming_examples/basic/matrix_scalar_add/Makefile index bbeb6a2ed2..35b3d0df0c 100644 --- a/programming_examples/basic/matrix_scalar_add/Makefile +++ b/programming_examples/basic/matrix_scalar_add/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/passthrough_dmas/Makefile b/programming_examples/basic/passthrough_dmas/Makefile index 7b61821cfe..135b2944b2 100644 --- a/programming_examples/basic/passthrough_dmas/Makefile +++ b/programming_examples/basic/passthrough_dmas/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/passthrough_kernel/Makefile b/programming_examples/basic/passthrough_kernel/Makefile index 8ad3b4fe2f..11f2824a42 100644 --- a/programming_examples/basic/passthrough_kernel/Makefile +++ b/programming_examples/basic/passthrough_kernel/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_exp/Makefile b/programming_examples/basic/vector_exp/Makefile index 82325049ae..a468a4dc06 100644 --- a/programming_examples/basic/vector_exp/Makefile +++ b/programming_examples/basic/vector_exp/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_reduce_add/Makefile b/programming_examples/basic/vector_reduce_add/Makefile index f802b3ae41..ced739e1e6 100644 --- a/programming_examples/basic/vector_reduce_add/Makefile +++ b/programming_examples/basic/vector_reduce_add/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_reduce_max/Makefile b/programming_examples/basic/vector_reduce_max/Makefile index fb0ce195be..def5d01d8e 100755 --- a/programming_examples/basic/vector_reduce_max/Makefile +++ b/programming_examples/basic/vector_reduce_max/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_scalar_add/Makefile b/programming_examples/basic/vector_scalar_add/Makefile index 1f61250c87..d6c0e29738 100644 --- a/programming_examples/basic/vector_scalar_add/Makefile +++ b/programming_examples/basic/vector_scalar_add/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_scalar_add_runlist/Makefile b/programming_examples/basic/vector_scalar_add_runlist/Makefile index 1f61250c87..d6c0e29738 100644 --- a/programming_examples/basic/vector_scalar_add_runlist/Makefile +++ b/programming_examples/basic/vector_scalar_add_runlist/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_scalar_mul/Makefile b/programming_examples/basic/vector_scalar_mul/Makefile index f4388f5a6b..e969be08f3 100644 --- a/programming_examples/basic/vector_scalar_mul/Makefile +++ b/programming_examples/basic/vector_scalar_mul/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_vector_add/Makefile b/programming_examples/basic/vector_vector_add/Makefile index 8687ff97e2..08a06d2e39 100755 --- a/programming_examples/basic/vector_vector_add/Makefile +++ b/programming_examples/basic/vector_vector_add/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_vector_modulo/Makefile b/programming_examples/basic/vector_vector_modulo/Makefile index 67fcce1092..9bea289476 100755 --- a/programming_examples/basic/vector_vector_modulo/Makefile +++ b/programming_examples/basic/vector_vector_modulo/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/basic/vector_vector_mul/Makefile b/programming_examples/basic/vector_vector_mul/Makefile index 35a8054ed1..b69eff6ff9 100755 --- a/programming_examples/basic/vector_vector_mul/Makefile +++ b/programming_examples/basic/vector_vector_mul/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/ml/eltwise_add/Makefile b/programming_examples/ml/eltwise_add/Makefile index 475b63c63f..21cd3265e3 100644 --- a/programming_examples/ml/eltwise_add/Makefile +++ b/programming_examples/ml/eltwise_add/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/ml/eltwise_mul/Makefile b/programming_examples/ml/eltwise_mul/Makefile index 2dcd94923e..317f66d8d9 100644 --- a/programming_examples/ml/eltwise_mul/Makefile +++ b/programming_examples/ml/eltwise_mul/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/ml/relu/Makefile b/programming_examples/ml/relu/Makefile index 82c42ce10b..441482d352 100644 --- a/programming_examples/ml/relu/Makefile +++ b/programming_examples/ml/relu/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/ml/resnet/layers_conv2_x/Makefile b/programming_examples/ml/resnet/layers_conv2_x/Makefile index ff2361ba48..1e63f3741d 100755 --- a/programming_examples/ml/resnet/layers_conv2_x/Makefile +++ b/programming_examples/ml/resnet/layers_conv2_x/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===## diff --git a/programming_examples/ml/softmax/Makefile b/programming_examples/ml/softmax/Makefile index cf2b334b25..f77d96544f 100755 --- a/programming_examples/ml/softmax/Makefile +++ b/programming_examples/ml/softmax/Makefile @@ -3,6 +3,8 @@ # This file licensed under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +# Copyright (C) 2024, Advanced Micro Devices, Inc. # ##===----------------------------------------------------------------------===##