mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-29 03:00:14 -04:00
Revert "add tests to vcount stuff [pr] (#7389)"
This reverts commit 1b7084899b.
This commit is contained in:
@@ -41,8 +41,8 @@ class PtrDType(DType):
|
||||
local: bool
|
||||
v: int
|
||||
def __hash__(self): return super().__hash__()
|
||||
def scalar(self) -> DType: return self.base.ptr(self.local, 1)
|
||||
def vec(self, sz:int) -> DType: return self.base.ptr(self.local, sz)
|
||||
def scalar(self) -> DType: return self.ptr(self.local, 1)
|
||||
def vec(self, sz:int) -> DType: return self.ptr(self.local, sz)
|
||||
@property
|
||||
def vcount(self): return self.v
|
||||
# local isn't used in the compare
|
||||
|
||||
Reference in New Issue
Block a user