From 8360a5756e80d2c059a1e02b34e11ec748c58792 Mon Sep 17 00:00:00 2001 From: qazal Date: Tue, 25 Mar 2025 18:13:51 +0800 Subject: [PATCH] line --- tinygrad/runtime/ops_null.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tinygrad/runtime/ops_null.py b/tinygrad/runtime/ops_null.py index d14e5fd3bc..d3913d0506 100644 --- a/tinygrad/runtime/ops_null.py +++ b/tinygrad/runtime/ops_null.py @@ -5,8 +5,7 @@ class NullRenderer(Renderer): class NullProgram: def __init__(self, name:str, lib:bytes): pass - def __call__(self, *bufs, global_size:tuple[int,int,int]=(1,1,1), local_size:tuple[int,int,int]=(1,1,1), vals:tuple[int, ...]=(), wait=False): - pass + def __call__(self, *bufs, global_size:tuple[int,int,int]=(1,1,1), local_size:tuple[int,int,int]=(1,1,1), vals:tuple[int, ...]=(), wait=False): pass class NullAllocator(Allocator): def _alloc(self, size, options): return "null"