Skip to content

Commit dbc0117

Browse files
committed
Format
1 parent 99a3928 commit dbc0117

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

onnxruntime/core/providers/cpu/math/einsum_utils/einsum_typed_compute_processor.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,10 @@ Status EinsumTypedComputeProcessor<T>::Run() {
367367
std::unique_ptr<const Tensor> result;
368368

369369
{
370-
TensorShapeVector reduced_dims; // All dims of the input that are reduced using the `ReduceSum` op
370+
TensorShapeVector reduced_dims; // All dims of the input that are reduced using the `ReduceSum` op
371371
reduced_dims.reserve(num_subscript_labels); // num_subscript_labels is the upper bound. No harm in over-reserving
372372

373-
TensorShapeVector all_dims; // All dimension indices from 0 to num_subscript_labels - 1
373+
TensorShapeVector all_dims; // All dimension indices from 0 to num_subscript_labels - 1
374374
all_dims.reserve(num_subscript_labels); // num_subscript_labels is the number of elements
375375

376376
for (size_t i = 0; i < num_subscript_labels; ++i) {

0 commit comments

Comments
 (0)