Skip to content

Commit 754f638

Browse files
Caught typo
1 parent af9f1a6 commit 754f638

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ A matrix log dependency utility. Useful for converting and testing algorithm beh
44

55
## Why?
66
GPU Principle: Your can only _write to_ or _read from_ Arrays (Textures).
7-
CPU Principle: You can read or right to arrays as you see fit.
87

9-
CPU Problem: Sometimes you'd like to convert your CPU code to GPU code.
8+
CPU Principle: You can read or write to arrays _as you see fit_.
9+
10+
GPU Problem: Sometimes you'd like to convert your CPU code to GPU code.
11+
1012
By strategically using MatrixLog as a logger in your CPU algorithms, you can see which points are dependent from your source arrays to your target arrays.
1113
This makes converting CPU code to run on GPU, using a utility like [GPU.js](http://gpu.rocks), much easier.
1214

@@ -234,4 +236,4 @@ console.log(filterKernel(filters, weights));// -> [ [ 14, 22 ], [ 46, 54 ] ]
234236

235237
## What benefits are there to using MatrixLog?
236238
1. Seeing is understanding
237-
2. Automated unit testing new GPU algorithm against already existing CPU code with an output that can be understood by humans.
239+
2. Automated unit testing new GPU algorithm against already existing CPU code with an output that can be understood by humans.

0 commit comments

Comments
 (0)