Skip to content

Commit

Permalink
Update getstarted example
Browse files Browse the repository at this point in the history
  • Loading branch information
gkestor authored Jun 14, 2023
1 parent 75cd2bf commit 294049a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/started/hello.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This section will go over steps to compile your first COMET DSL program, once CO
Tensor<double> C([i, k], {Dense});

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

# Tensor Contraction
Expand Down

0 comments on commit 294049a

Please sign in to comment.