| 123456789 |
- import numpy as np
- from tinygrad.helpers import flat_mv
- from tinygrad.device import Compiled, Allocator
- class NpyAllocator(Allocator): # pylint: disable=abstract-method
- def copyout(self, dest:memoryview, src:np.ndarray): dest[:] = flat_mv(np.require(src, requirements='C').data)
- class NpyDevice(Compiled):
- def __init__(self, device:str): super().__init__(device, NpyAllocator(), None, None, None)
|