Skip to content

Commit ff864c6

Browse files
author
Xiaofei Han
committed
remove strjoin
1 parent 996f514 commit ff864c6

File tree

1 file changed

+1
-2
lines changed
  • onnxruntime/core/providers/webgpu/math

1 file changed

+1
-2
lines changed

Diff for: onnxruntime/core/providers/webgpu/math/gemm.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include "core/providers/webgpu/math/gemm.h"
55

66
#include <vector>
7-
#include <absl/strings/str_join.h>
87

98
#include "core/providers/webgpu/shader_helper.h"
109
#include "core/providers/webgpu/webgpu_supported_types.h"
@@ -217,7 +216,7 @@ Status Gemm::ComputeInternal(ComputeContext& context) const {
217216
const uint32_t num_tile_n = (N + TILE_SIZE - 1) / TILE_SIZE;
218217
const uint32_t num_tile_m = (M + TILE_SIZE - 1) / TILE_SIZE;
219218

220-
program.CacheHint(absl::StrJoin(std::make_tuple(alpha_, transA_, transB_), ","))
219+
program.CacheHint(alpha_, transA_, transB_)
221220
.AddOutputs({{Y, ProgramTensorMetadataDependency::Type}})
222221
.SetDispatchGroupSize(num_tile_n * num_tile_m)
223222
.SetWorkgroupSize(TILE_SIZE, TILE_SIZE)

0 commit comments

Comments
 (0)