File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
onnxruntime/core/providers/cpu/math/einsum_utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments