Skip to content

Commit 01f0900

Browse files
authored
[NFC] Fixing typo (mutli -> multi). (#19526)
I found the typo when I'm working on multi-device related work, the revision fixes the issue. And I verified that there are no "mutli" typo in IREE repo with the fix. Signed-off-by: hanhanW <hanhan0912@gmail.com>
1 parent ed9a028 commit 01f0900

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

compiler/src/iree/compiler/Codegen/Common/test/iree_comprehensive_bufferize.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -2172,7 +2172,7 @@ func.func @operand_fusion() {
21722172
#map3 = affine_map<(d0, d1, d2, d3) -> (d0, d1, d3)>
21732173
#map4 = affine_map<(d0, d1, d2, d3) -> (d0, d3, d2)>
21742174
#map5 = affine_map<(d0, d1, d2, d3) -> (d0, d1, d2)>
2175-
func.func @dot_general_nontrivial_batching_mutliple_parallel_dimension() {
2175+
func.func @dot_general_nontrivial_batching_multiple_parallel_dimension() {
21762176
%cst = arith.constant dense<0.000000e+00> : vector<1x4x2xf32>
21772177
%c1 = arith.constant 1 : index
21782178
%c6 = arith.constant 6 : index
@@ -2217,7 +2217,7 @@ func.func @dot_general_nontrivial_batching_mutliple_parallel_dimension() {
22172217
}
22182218
return
22192219
}
2220-
// CHECK-LABEL: func.func @dot_general_nontrivial_batching_mutliple_parallel_dimension()
2220+
// CHECK-LABEL: func.func @dot_general_nontrivial_batching_multiple_parallel_dimension()
22212221
// CHECK-NOT: memref.alloc
22222222

22232223
// -----

runtime/src/iree/schemas/vulkan_executable_def.fbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ table ExecutableDef {
9393
descriptor_set_layouts:[DescriptorSetLayoutDef];
9494

9595
// A list of pipeline layouts. Exports reference layouts in this list and
96-
// multiple exports present in mutliple shader modules may share layouts.
96+
// multiple exports present in multiple shader modules may share layouts.
9797
// This list may not have the same size as the pipelines list.
9898
pipeline_layouts:[PipelineLayoutDef];
9999

tests/e2e/stablehlo_ops/dot_general.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func.func @large_dot_general() {
126126
return
127127
}
128128

129-
func.func @dot_general_nontrivial_batching_mutliple_parallel_dimension() {
129+
func.func @dot_general_nontrivial_batching_multiple_parallel_dimension() {
130130
%lhs = util.unfoldable_constant dense<[
131131
[[[0.0], [1.0]], [[2.0], [3.0]], [[ 4.0], [ 5.0]]],
132132
[[[6.0], [7.0]], [[8.0], [9.0]], [[10.0], [11.0]]]

tools/test/iree-run-module-multi.mlir

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
// RUN: --iree-hal-local-target-device-backends=vmvx | \
1212
// RUN: iree-run-module \
1313
// RUN: --module=- \
14-
// RUN: --function=mutli_device_mul \
14+
// RUN: --function=multi_device_mul \
1515
// RUN: --input=4xf32=10,11,12,13 \
1616
// RUN: --device=local-task \
1717
// RUN: --device=local-task \
1818
// RUN: --task_topology_group_count=1) | \
1919
// RUN: FileCheck %s
2020

21-
// CHECK: EXEC @mutli_device_mul
21+
// CHECK: EXEC @multi_device_mul
2222
// CHECK-NEXT: result[0]: hal.buffer_view
2323
// CHECK-NEXT: 4xf32=0 55 144 273
24-
func.func public @mutli_device_mul(
24+
func.func public @multi_device_mul(
2525
// Input argument is resident on device_a (tooling default to first device).
2626
%input_a: tensor<4xf32> {iree.abi.affinity = #hal.device.promise<@device_a>}
2727
) -> (

0 commit comments

Comments
 (0)