8 writes to
Microsoft.ML.CpuMath (8)
AlignedMatrix.cs (5)
110
_items
[
index] = value;
133
_items
[
i] = rand();
363
Items
[
k + j] = rand();
640
Items
[
row + col * RowCountPhy] = src[ivSrc++];
658
Items
[
row + col * ColCountPhy] = 0;
CpuMathUtils.netcoreapp.cs (3)
83
destination
[
i] = dotProduct;
97
destination
[
i] = dotProduct;
152
destination
[
i] = dotProduct;
16 references to
Microsoft.ML.CpuMath (16)
AlignedMatrix.cs (10)
78
Contracts.Assert(_items
[
i] == 0);
105
return _items
[
index];
122
return _items
[
i];
221
yield return _items
[
i];
336
Contracts.Assert(Items
[
i * RunLenPhy + j] == 0);
343
Contracts.Assert(Items
[
i * RunLenPhy + j] == 0);
488
yield return Items
[
ivBase + col];
608
dst[ivDst++] = Items
[
row + col * RowCountPhy];
625
dst[ivDst++] = Items
[
row + col * RowCountPhy];
670
yield return Items
[
row + col * RowCountPhy];
CpuMathUtils.netcoreapp.cs (6)
80
dotProduct += matrix
[
i * source.Size + j] * source
[
j];
94
dotProduct += matrix
[
j * destination.Size + i] * source
[
j];
150
dotProduct += matrix
[
i * sourceValues.Size + col] * sourceValues
[
col];