Skip to content

Commit 16f2d96

Browse files
committed
xe: rename repetitive file names
1 parent 3e14243 commit 16f2d96

34 files changed

+47
-47
lines changed

src/gpu/gpu_reorder_list.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2019-2024 Intel Corporation
2+
* Copyright 2019-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@
2424
#include "gpu/intel/ocl/custom_reorder.hpp"
2525
#include "gpu/intel/ocl/generic_reorder.hpp"
2626
#include "gpu/intel/ocl/ref_reorder.hpp"
27-
#include "gpu/intel/ocl/rnn/rnn_reorders.hpp"
27+
#include "gpu/intel/ocl/rnn/reorders.hpp"
2828
#endif
2929

3030
#if DNNL_GPU_VENDOR == DNNL_VENDOR_NVIDIA

src/gpu/gpu_rnn_list.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2021-2024 Intel Corporation
2+
* Copyright 2021-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
1717
#include "gpu/gpu_impl_list.hpp"
1818

1919
#if DNNL_GPU_VENDOR == DNNL_VENDOR_INTEL
20-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
20+
#include "gpu/intel/ocl/rnn/grid.hpp"
2121
#endif
2222

2323
#ifdef GENERIC_SYCL_KERNELS_ENABLED

src/gpu/intel/ocl/bnorm/gen9_batch_normalization.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "common/experimental.hpp"
1919
#include "common/utils.hpp"
2020
#include "gpu/intel/compute/utils.hpp"
21-
#include "gpu/intel/ocl/bnorm/bnorm_utils.hpp"
21+
#include "gpu/intel/ocl/bnorm/utils.hpp"
2222
#include "gpu/intel/ocl/utils.hpp"
2323

2424
using namespace dnnl::impl::memory_tracking::names;

src/gpu/intel/ocl/bnorm/gen9_batch_normalization.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2020-2024 Intel Corporation
2+
* Copyright 2020-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
#include "common/primitive.hpp"
2121
#include "gpu/gpu_batch_normalization_pd.hpp"
2222
#include "gpu/intel/gpu_primitive.hpp"
23-
#include "gpu/intel/ocl/bnorm/bnorm_lookup_table.hpp"
23+
#include "gpu/intel/ocl/bnorm/lookup_table.hpp"
2424
#include "gpu/intel/primitive_conf.hpp"
2525

2626
namespace dnnl {

src/gpu/intel/ocl/bnorm/bnorm_lookup_table.cpp src/gpu/intel/ocl/bnorm/lookup_table.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2022-2024 Intel Corporation
2+
* Copyright 2022-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*******************************************************************************/
16-
#include "gpu/intel/ocl/bnorm/bnorm_lookup_table.hpp"
16+
#include "gpu/intel/ocl/bnorm/lookup_table.hpp"
1717
#include "gpu/intel/compute/compute_engine.hpp"
1818

1919
#include <string>

src/gpu/intel/ocl/bnorm/bnorm_lookup_table.hpp src/gpu/intel/ocl/bnorm/lookup_table.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2022-2024 Intel Corporation
2+
* Copyright 2022-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/gpu/intel/ocl/bnorm/bnorm_model.cpp src/gpu/intel/ocl/bnorm/model.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,12 +13,12 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*******************************************************************************/
16-
#include "gpu/intel/ocl/bnorm/bnorm_model.hpp"
16+
#include "gpu/intel/ocl/bnorm/model.hpp"
1717
#include <cmath>
1818
#include "common/utils.hpp"
1919
#include "gpu/intel/compute/utils.hpp"
20-
#include "gpu/intel/ocl/bnorm/bnorm_utils.hpp"
2120
#include "gpu/intel/ocl/bnorm/nhwc_batch_normalization.hpp"
21+
#include "gpu/intel/ocl/bnorm/utils.hpp"
2222

2323
namespace dnnl {
2424
namespace impl {

src/gpu/intel/ocl/bnorm/bnorm_model.hpp src/gpu/intel/ocl/bnorm/model.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/gpu/intel/ocl/bnorm/nhwc_batch_normalization.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#include "common/experimental.hpp"
1818
#include "common/utils.hpp"
1919
#include "gpu/intel/compute/utils.hpp"
20-
#include "gpu/intel/ocl/bnorm/bnorm_model.hpp"
21-
#include "gpu/intel/ocl/bnorm/bnorm_utils.hpp"
20+
#include "gpu/intel/ocl/bnorm/model.hpp"
21+
#include "gpu/intel/ocl/bnorm/utils.hpp"
2222
#include "gpu/intel/ocl/utils.hpp"
2323

2424
using namespace dnnl::impl::memory_tracking::names;

src/gpu/intel/ocl/bnorm/nhwc_batch_normalization.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2020-2024 Intel Corporation
2+
* Copyright 2020-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
#include "common/primitive.hpp"
2121
#include "gpu/gpu_batch_normalization_pd.hpp"
2222
#include "gpu/intel/gpu_primitive.hpp"
23-
#include "gpu/intel/ocl/bnorm/bnorm_lookup_table.hpp"
23+
#include "gpu/intel/ocl/bnorm/lookup_table.hpp"
2424
#include "gpu/intel/primitive_conf.hpp"
2525

2626
namespace dnnl {

src/gpu/intel/ocl/bnorm/nhwc_reusable.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
*******************************************************************************/
1616

1717
#include "gpu/intel/ocl/bnorm/nhwc_reusable.hpp"
18-
#include "gpu/intel/ocl/bnorm/bnorm_model.hpp"
18+
#include "gpu/intel/ocl/bnorm/model.hpp"
1919

2020
#include "common/c_types_map.hpp"
2121
#include "common/type_helpers.hpp"

src/gpu/intel/ocl/bnorm/nhwc_reusable.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#include "gpu/intel/primitive_conf.hpp"
3333

3434
#include "common/experimental.hpp"
35-
#include "gpu/intel/ocl/bnorm/bnorm_utils.hpp"
3635
#include "gpu/intel/ocl/bnorm/nhwc_batch_normalization.hpp"
36+
#include "gpu/intel/ocl/bnorm/utils.hpp"
3737

3838
namespace dnnl {
3939
namespace impl {

src/gpu/intel/ocl/bnorm/bnorm_utils.cpp src/gpu/intel/ocl/bnorm/utils.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,10 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*******************************************************************************/
16-
#include "gpu/intel/ocl/bnorm/bnorm_utils.hpp"
1716
#include "common/utils.hpp"
1817
#include "gpu/intel/compute/utils.hpp"
19-
#include "gpu/intel/ocl/bnorm/bnorm_lookup_table.hpp"
18+
#include "gpu/intel/ocl/bnorm/lookup_table.hpp"
19+
#include "gpu/intel/ocl/bnorm/utils.hpp"
2020

2121
namespace dnnl {
2222
namespace impl {

src/gpu/intel/ocl/bnorm/bnorm_utils.hpp src/gpu/intel/ocl/bnorm/utils.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/gpu/intel/ocl/reduction/atomic_reduction.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "gpu/intel/compute/utils.hpp"
2929
#include "gpu/intel/gpu_primitive_attr.hpp"
3030
#include "gpu/intel/ocl/reduction/atomic_reduction.hpp"
31-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
31+
#include "gpu/intel/ocl/reduction/utils.hpp"
3232
#include "gpu/intel/ocl/utils.hpp"
3333

3434
namespace dnnl {

src/gpu/intel/ocl/reduction/atomic_reduction.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "gpu/intel/compute/dispatch_reusable.hpp"
2525
#include "gpu/intel/gpu_primitive.hpp"
2626
#include "gpu/intel/gpu_primitive_attr.hpp"
27-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
27+
#include "gpu/intel/ocl/reduction/utils.hpp"
2828
#include "gpu/intel/primitive_conf.hpp"
2929

3030
namespace dnnl {

src/gpu/intel/ocl/reduction/combined_reduction.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "gpu/intel/block_structure.hpp"
2121
#include "gpu/intel/compute/device_info.hpp"
2222
#include "gpu/intel/compute/utils.hpp"
23-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
23+
#include "gpu/intel/ocl/reduction/utils.hpp"
2424
#include "gpu/intel/ocl/utils.hpp"
2525
#include "gpu/intel/utils.hpp"
2626

src/gpu/intel/ocl/reduction/combined_reduction.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2021-2024 Intel Corporation
2+
* Copyright 2021-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
#include "common/primitive.hpp"
2121
#include "gpu/gpu_reduction_pd.hpp"
2222
#include "gpu/intel/gpu_primitive.hpp"
23-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
23+
#include "gpu/intel/ocl/reduction/utils.hpp"
2424
#include "gpu/intel/primitive_conf.hpp"
2525

2626
namespace dnnl {

src/gpu/intel/ocl/reduction/reusable_ref_reduction.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#include "gpu/intel/compute/dispatch_reusable.hpp"
2525
#include "gpu/intel/compute/kernel_ctx.hpp"
2626
#include "gpu/intel/gpu_primitive_attr.hpp"
27-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
2827
#include "gpu/intel/ocl/reduction/reusable_ref_reduction.hpp"
28+
#include "gpu/intel/ocl/reduction/utils.hpp"
2929
#include "gpu/intel/ocl/utils.hpp"
3030

3131
namespace dnnl {

src/gpu/intel/ocl/reduction/reusable_ref_reduction.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "gpu/intel/compute/device_info.hpp"
2525
#include "gpu/intel/compute/dispatch_reusable.hpp"
2626
#include "gpu/intel/gpu_primitive.hpp"
27-
#include "gpu/intel/ocl/reduction/reduction_utils.hpp"
27+
#include "gpu/intel/ocl/reduction/utils.hpp"
2828
#include "gpu/intel/primitive_conf.hpp"
2929

3030
namespace dnnl {

src/gpu/intel/ocl/rnn/cell_common.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// Common for RNN and LSTM cell execution
1818

19-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
19+
#include "gpu/intel/ocl/rnn/grid.hpp"
2020

2121
namespace dnnl {
2222
namespace impl {

src/gpu/intel/ocl/rnn/cell_compute.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2024 Intel Corporation
2+
* Copyright 2024-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@
1818
#define GPU_INTEL_OCL_RNN_CELL_COMPUTE_H
1919

2020
#include "gpu/intel/ocl/ocl_conversion.h"
21-
#include "gpu/intel/ocl/rnn/rnn_common.h"
21+
#include "gpu/intel/ocl/rnn/common.h"
2222

2323
#if CELL_COMP_ENABLED
2424
#define DHC_TG get_local_size(0)

src/gpu/intel/ocl/rnn/cell_gru.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*******************************************************************************/
1616

17-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
17+
#include "gpu/intel/ocl/rnn/grid.hpp"
1818

1919
namespace dnnl {
2020
namespace impl {

src/gpu/intel/ocl/rnn/cell_gru_lbr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Cell execution GRU with linear before reset
1919
*/
2020

21-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
21+
#include "gpu/intel/ocl/rnn/grid.hpp"
2222

2323
namespace dnnl {
2424
namespace impl {

src/gpu/intel/ocl/rnn/rnn_common.h src/gpu/intel/ocl/rnn/common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2019-2024 Intel Corporation
2+
* Copyright 2019-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/gpu/intel/ocl/rnn/rnn_grid.cl src/gpu/intel/ocl/rnn/grid.cl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2019-2024 Intel Corporation
2+
* Copyright 2019-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
1616

1717
#include "gpu/intel/ocl/rnn/cell_compute.h"
1818
#include "gpu/intel/ocl/rnn/cell_kind_utility.h"
19-
#include "gpu/intel/ocl/rnn/rnn_common.h"
19+
#include "gpu/intel/ocl/rnn/common.h"
2020

2121
__attribute__((intel_reqd_sub_group_size(SUBGROUP_SIZE))) __kernel void
2222
simple_rnn_copy_init_layer(__global WS_STATE_DATA_T *dst_base,

src/gpu/intel/ocl/rnn/rnn_grid.cpp src/gpu/intel/ocl/rnn/grid.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// function
2727
// only the cell execution function should be impacted
2828

29-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
29+
#include "gpu/intel/ocl/rnn/grid.hpp"
3030

3131
#include "common/c_types_map.hpp"
3232
#include "common/gemm_utils.hpp"

src/gpu/intel/ocl/rnn/rnn_grid.hpp src/gpu/intel/ocl/rnn/grid.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "gpu/gpu_resource.hpp"
2727
#include "gpu/gpu_rnn_pd.hpp"
2828
#include "gpu/intel/gpu_primitive.hpp"
29-
#include "gpu/intel/ocl/rnn/rnn_utils.hpp"
29+
#include "gpu/intel/ocl/rnn/utils.hpp"
3030
#include "gpu/intel/ocl/utils.hpp"
3131
#include "gpu/intel/primitive_conf.hpp"
3232

src/gpu/intel/ocl/rnn/rnn_reorders.cpp src/gpu/intel/ocl/rnn/reorders.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*******************************************************************************/
1616

17-
#include "gpu/intel/ocl/rnn/rnn_reorders.hpp"
17+
#include "gpu/intel/ocl/rnn/reorders.hpp"
1818

1919
#include "gpu/intel/ocl/stream.hpp"
2020
#include "gpu/intel/ocl/utils.hpp"
File renamed without changes.

src/gpu/intel/ocl/rnn/simple_rnn_postgemm.cpp src/gpu/intel/ocl/rnn/simple_postgemm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*******************************************************************************/
1616

17-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
17+
#include "gpu/intel/ocl/rnn/grid.hpp"
1818
#include "gpu/intel/utils.hpp"
1919

2020
namespace dnnl {

src/gpu/intel/ocl/rnn/rnn_utils.cpp src/gpu/intel/ocl/rnn/utils.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2019-2024 Intel Corporation
2+
* Copyright 2019-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,10 +14,10 @@
1414
* limitations under the License.
1515
*******************************************************************************/
1616

17-
#include "gpu/intel/ocl/rnn/rnn_utils.hpp"
17+
#include "gpu/intel/ocl/rnn/utils.hpp"
1818

1919
#include "common/c_types_map.hpp"
20-
#include "gpu/intel/ocl/rnn/rnn_grid.hpp"
20+
#include "gpu/intel/ocl/rnn/grid.hpp"
2121
#include "gpu/intel/utils.hpp"
2222

2323
namespace dnnl {
File renamed without changes.

0 commit comments

Comments
 (0)