Skip to content

Commit cd3aa49

Browse files
authored
[webgpu] Remove 'webgpu' suffix from filenames (microsoft#26287)
### Description Removes the redundant `webgpu` from `conv2d_mm_webgpu.cc/h` and `conv_backprop_webgpu.cc/h`. This change ensures consistency and better readability across the codebase. ### Motivation and Context See above.
1 parent 949c0de commit cd3aa49

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

onnxruntime/core/providers/webgpu/nn/conv.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33
#include "core/providers/webgpu/nn/conv.h"
4-
#include "core/providers/webgpu/nn/conv2d_mm_webgpu.h"
4+
#include "core/providers/webgpu/nn/conv2d_mm.h"
55
#include "core/providers/webgpu/shader_helper.h"
66
#include "core/providers/webgpu/webgpu_supported_types.h"
77
#include "core/providers/webgpu/tensor/transpose.h"

onnxruntime/core/providers/webgpu/nn/conv2d_mm_webgpu.cc renamed to onnxruntime/core/providers/webgpu/nn/conv2d_mm.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <vector>
55
#include <iterator>
66
#include <algorithm>
7-
#include "core/providers/webgpu/nn/conv2d_mm_webgpu.h"
7+
#include "core/providers/webgpu/nn/conv2d_mm.h"
88
#include "core/providers/webgpu/shader_helper.h"
99
#include "core/providers/webgpu/webgpu_supported_types.h"
1010
#include "core/providers/webgpu/nn/activation_util.h"

onnxruntime/core/providers/webgpu/nn/conv_backprop_webgpu.cc renamed to onnxruntime/core/providers/webgpu/nn/conv_backprop.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <string>
55
#include <sstream>
66
#include "core/common/inlined_containers.h"
7-
#include "core/providers/webgpu/nn/conv_backprop_webgpu.h"
7+
#include "core/providers/webgpu/nn/conv_backprop.h"
88
#include "core/providers/webgpu/webgpu_utils.h"
99
namespace onnxruntime {
1010
namespace webgpu {

onnxruntime/core/providers/webgpu/nn/conv_transpose.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "core/providers/cpu/nn/conv_attributes.h"
77
#include "core/providers/webgpu/webgpu_supported_types.h"
88
#include "core/providers/webgpu/tensor/transpose.h"
9-
#include "core/providers/webgpu/nn/conv_backprop_webgpu.h"
9+
#include "core/providers/webgpu/nn/conv_backprop.h"
1010

1111
namespace onnxruntime {
1212
namespace webgpu {

0 commit comments

Comments
 (0)