Skip to content

Commit 0351125

Browse files
Rename files
1 parent 87543f5 commit 0351125

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

sycl/source/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ set(SYCL_COMMON_SOURCES
288288
"detail/kernel_compiler/kernel_compiler_opencl.cpp"
289289
"detail/kernel_compiler/kernel_compiler_sycl.cpp"
290290
"detail/kernel_impl.cpp"
291-
"detail/get_kernel_name_based_data.cpp"
292-
"detail/kernel_name_based_data.cpp"
291+
"detail/get_device_kernel_info.cpp"
292+
"detail/device_kernel_info.cpp"
293293
"detail/kernel_program_cache.cpp"
294294
"detail/memory_export.cpp"
295295
"detail/memory_manager.cpp"

sycl/source/detail/kernel_name_based_data.cpp renamed to sycl/source/detail/device_kernel_info.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
//==---------------------- kernel_name_based_data.cpp ----------------------==//
1+
//==---------------------- device_kernel_info.cpp ----------------------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#include <detail/kernel_name_based_data.hpp>
8+
#include <detail/device_kernel_info.hpp>
99
#include <detail/program_manager/program_manager.hpp>
1010

1111
namespace sycl {

sycl/source/detail/kernel_name_based_data.hpp renamed to sycl/source/detail/device_kernel_info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==---------------------- kernel_name_based_data.hpp ----------------------==//
1+
//==---------------------- device_kernel_info.hpp ----------------------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

sycl/source/detail/get_kernel_name_based_data.cpp renamed to sycl/source/detail/get_device_kernel_info.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==-------------------- get_kernel_name_based_data.cpp --------------------==//
1+
//==-------------------- get_device_kernel_info.cpp --------------------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

sycl/source/detail/global_handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
#include <detail/adapter_impl.hpp>
1515
#include <detail/config.hpp>
16+
#include <detail/device_kernel_info.hpp>
1617
#include <detail/global_handler.hpp>
17-
#include <detail/kernel_name_based_data.hpp>
1818
#include <detail/platform_impl.hpp>
1919
#include <detail/program_manager/program_manager.hpp>
2020
#include <detail/scheduler/scheduler.hpp>

sycl/source/detail/kernel_program_cache.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#include "sycl/exception.hpp"
1212
#include <detail/config.hpp>
13+
#include <detail/device_kernel_info.hpp>
1314
#include <detail/kernel_arg_mask.hpp>
14-
#include <detail/kernel_name_based_data.hpp>
1515
#include <detail/platform_impl.hpp>
1616
#include <detail/unordered_multimap.hpp>
1717
#include <sycl/detail/common.hpp>

sycl/source/detail/program_manager/program_manager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#include <detail/device_binary_image.hpp>
1212
#include <detail/device_global_map.hpp>
1313
#include <detail/device_global_map_entry.hpp>
14+
#include <detail/device_kernel_info.hpp>
1415
#include <detail/host_pipe_map_entry.hpp>
1516
#include <detail/kernel_arg_mask.hpp>
16-
#include <detail/kernel_name_based_data.hpp>
1717
#include <detail/spec_constant_impl.hpp>
1818
#include <sycl/detail/cg_types.hpp>
1919
#include <sycl/detail/common.hpp>

0 commit comments

Comments
 (0)