From e046a2fd9f07f269fcbb531297677f5896a8ad20 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Wed, 8 Jun 2022 11:43:05 -0700 Subject: [PATCH] readme fix typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 20c785f5b2..625aeda995 100644 --- a/README.md +++ b/README.md @@ -130,9 +130,9 @@ The autodiff stuff is all in mlops now, so you can focus on the raw operations ``` Buffer # class of memory on this device -unary_op (RELU, EXP, LOG, NEG, SIGN) # A -> A -binary_op (ADD, SUB, MUL, DIV, POW, A, CMQEQ) # A + B -> C -reduce_op (SUM, MAX) # A -> B (smaller size) +unary_op (RELU, EXP, LOG, NEG, SIGN) # A -> A +binary_op (ADD, SUB, MUL, DIV, POW, A, CMPEQ) # A + B -> C (broadcasting supported) +reduce_op (SUM, MAX) # A -> B (smaller size, B can have 1s in the shape) perm_axis # A -> A inner_slice # A -> B (different size) matmul # A + B -> C