We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392a25b commit 433c9b4Copy full SHA for 433c9b4
format/SparseTensor.fbs
@@ -40,14 +40,12 @@ table SparseTensorIndexCOO {
40
/// X[0, 1, 2, 1] := 5
41
/// X[1, 2, 0, 4] := 6
42
///
43
- /// In COO format, the index matrix of X is the following 10x4 matrix:
+ /// In COO format, the index matrix of X is the following 4x10 matrix:
44
45
- /// [[0, 1, 2, 0],
46
- /// [0, 1, 2, 1],
47
- /// [0, 1, 3, 0],
48
- /// [0, 2, 1, 0],
49
- /// [1, 1, 2, 3],
50
- /// [1, 2, 0, 4]]
+ /// [[0, 0, 0, 0, 1, 1],
+ /// [1, 1, 1, 2, 1, 2],
+ /// [2, 2, 3, 1, 2, 0],
+ /// [0, 1, 0, 0, 3, 4]]
51
52
/// Note that the indices are sorted in lexcographical order.
53
indicesBuffer: Buffer;
0 commit comments