merge uops with ops (#6111)

Co-authored-by: chenyu <[email protected]>
This commit is contained in:
qazal
2024-08-16 18:17:57 -04:00
committed by GitHub
co-authored by chenyu
parent 379d080e74
commit 28c75bf2a6
41 changed files with 372 additions and 405 deletions
+1 -2
View File
@@ -7,8 +7,7 @@ import pickle, base64, itertools, time, struct
from tinygrad.dtype import DType, dtypes, ImageDType
from tinygrad.helpers import all_same, getenv, flatten
from tinygrad.device import Compiled, Compiler, Allocator
from tinygrad.codegen.uops import UOps, UOp
from tinygrad.ops import BinaryOps, TernaryOps, exec_alu, truncate
from tinygrad.ops import BinaryOps, TernaryOps, exec_alu, truncate, UOps, UOp
from tinygrad.renderer import Renderer
from tinygrad.renderer.cstyle import CUDARenderer, MetalRenderer, AMDRenderer, IntelRenderer