Skip to content

Commit a3b09bf

Browse files
jwood803shauheen
authored andcommitted
Update input arguments in CpuMath files (dotnet#1021)
1 parent d6f9f8b commit a3b09bf

File tree

6 files changed

+246
-245
lines changed

6 files changed

+246
-245
lines changed

src/Microsoft.ML.CpuMath/CpuAligenedMathUtils.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static void MatTimesSrc(ICpuFullMatrix mat, ICpuVector src, ICpuVector ds
8585
bool colMajor = typeof(TMatrix) == typeof(CpuAlignedMatrixCol);
8686
AssertCompatible(mat, src, dst);
8787
var m = A(mat);
88-
CpuMathUtils.MatTimesSrc(colMajor, m.Items, A(src).Items, A(dst).Items, m.RunCnt);
88+
CpuMathUtils.MatrixTimesSource(colMajor, m.Items, A(src).Items, A(dst).Items, m.RunCnt);
8989
}
9090

9191
/// <summary>
@@ -100,7 +100,7 @@ public static void MatTranTimesSrc(ICpuFullMatrix mat, ICpuVector src, ICpuVecto
100100
bool colMajor = typeof(TMatrix) == typeof(CpuAlignedMatrixCol);
101101
AssertCompatible(mat, dst, src);
102102
var m = A(mat);
103-
CpuMathUtils.MatTimesSrc(!colMajor, m.Items, A(src).Items, A(dst).Items, m.RunCnt);
103+
CpuMathUtils.MatrixTimesSource(!colMajor, m.Items, A(src).Items, A(dst).Items, m.RunCnt);
104104
}
105105
}
106106

0 commit comments

Comments
 (0)