Skip to content

Commit

Permalink
Update streams.md
Browse files Browse the repository at this point in the history
  • Loading branch information
josephjaspers authored Nov 8, 2020
1 parent 87e9749 commit de4b74f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ The stream used for any given expression is based upon the assignment operator o

bc::Matrix<float> y, w, x;

y.get_Stream().create();
w.get_Stream().create();
x.get_Stream().create();
y.get_stream().create();
w.get_stream().create();
x.get_stream().create();

y = w * x; //will use y's stream
```
Expand Down

0 comments on commit de4b74f

Please sign in to comment.