Skip to content

Commit 0e94e94

Browse files
GaryMcD9prady9
authored andcommitted
Fixing Small Typo
1 parent 8968120 commit 0e94e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials-book/src/getting_started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ using arrays into the smallest number of CUDA/OpenCL kernels. For most operation
108108
ArrayFire functions like a vector library. That means that an element-wise operation, like
109109
`c[i] = a[i] + b[i]` in C, would be written more concisely without indexing, like `c = a + b`. When
110110
there are multiple expressions involving arrays, ArrayFire's JIT engine will merge them together.
111-
his "kernel fusion" technology not only decreases the number of kernel calls, but, more importantly, avoids extraneous global memory operations.
111+
This "kernel fusion" technology not only decreases the number of kernel calls, but, more importantly, avoids extraneous global memory operations.
112112

113113
Our JIT functionality extends across C API boundary and only ends when a non-JIT function is
114114
encountered or a synchronization operation is explicitly called by the code.

0 commit comments

Comments
 (0)