diff --git a/include/ur_api_funcs.def b/include/ur_api_funcs.def index ae3a0d8a76..5cd8dd7926 100644 --- a/include/ur_api_funcs.def +++ b/include/ur_api_funcs.def @@ -1,4 +1,19 @@ +/* + * + * Copyright (C) 2024 Intel Corporation + * + * Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions. + * See LICENSE.TXT + * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + * + * @file ur_api_funcs.def + * @version v0.11-r0 + * + */ + + // Auto-generated file, do not edit. + _UR_API(urPlatformGet) _UR_API(urPlatformGetInfo) _UR_API(urPlatformGetNativeHandle) diff --git a/scripts/templates/api_funcs.def.mako b/scripts/templates/api_funcs.def.mako index 9ce3f81847..f0fb653208 100644 --- a/scripts/templates/api_funcs.def.mako +++ b/scripts/templates/api_funcs.def.mako @@ -8,6 +8,21 @@ from templates import helper as th x=tags['$x'] X=x.upper() %> +/* + * + * Copyright (C) 2024 Intel Corporation + * + * Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions. + * See LICENSE.TXT + * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + * + * @file ${name}.def + * @version v${ver}-r${rev} + * + */ + + // Auto-generated file, do not edit. + %for tbl in th.get_pfntables(specs, meta, n, tags): %for obj in tbl['functions']: _UR_API(${th.make_func_name(n, tags, obj)})