Skip to content

Commit a89867d

Browse files
committed
Bug fix
1 parent 0d2c03b commit a89867d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnxruntime/core/mlas/lib/eltwise.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ MlasEltwiseMul<float>(
7676
output += 4;
7777
N -= 4;
7878
} else {
79-
*output = *left + *right;
79+
*output = (*left) * (*right);
8080

8181
left += 1;
8282
right += 1;

0 commit comments

Comments
 (0)