From 45bc040a630fd41d6ed771df29f771f09f892091 Mon Sep 17 00:00:00 2001 From: John Moore Date: Tue, 13 Jun 2023 18:15:45 -0400 Subject: [PATCH] Fix typo (#978) --- docs/adding_new_accelerators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/adding_new_accelerators.md b/docs/adding_new_accelerators.md index 373f7a7a6d..b0ac5b40a6 100644 --- a/docs/adding_new_accelerators.md +++ b/docs/adding_new_accelerators.md @@ -4,7 +4,7 @@ It's pretty easy to add a new accelerator to tinygrad. All you need to do is imp ## llops -These are the ops that you must implement for your accelerator of choice. Compiled Accelerators do not need to implement movement_ops, as they are handled b the ShapeTracker. +These are the ops that you must implement for your accelerator of choice. Compiled Accelerators do not need to implement movement_ops, as they are handled by the ShapeTracker. ``` Buffer # class of memory on this device unary_op (NOOP, EXP2, LOG2, CAST, SIN) # A -> A