Skip to content

Commit 294049a

Browse files
authored
Update getstarted example
1 parent 75cd2bf commit 294049a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/started/hello.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This section will go over steps to compile your first COMET DSL program, once CO
1818
Tensor<double> C([i, k], {Dense});
1919

2020
# Tensor Fill operation
21-
A[i, j] = random(); # random initialization
22-
B[j, k] = random();
21+
A[i, j] = 2.4; # initialization
22+
B[j, k] = 3.2;
2323
C[i, k] = 0.0; # all values are initialized to 0
2424

2525
# Tensor Contraction

0 commit comments

Comments
 (0)