| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- from __future__ import annotations
- import os, sys, mmap, _posixshmem, io, ctypes, ctypes.util, platform, contextlib
- from typing import Optional, Generator, Tuple, Callable, List
- from tinygrad.helpers import OSX, round_up
- from tinygrad.device import Compiled, Allocator
- import tinygrad.runtime.autogen.io_uring as io_uring
- import tinygrad.runtime.autogen.libc as libc
- class DiskBuffer:
- def __init__(self, device:DiskDevice, size:int, offset=0):
- self.device, self.size, self.offset = device, size, offset
- def __repr__(self): return f"<DiskBuffer size={self.size} offset={self.offset}>"
- def _buf(self) -> memoryview:
- assert self.device.mem is not None, "DiskBuffer wasn't opened"
- return memoryview(self.device.mem)[self.offset:self.offset+self.size]
- MAP_LOCKED, MAP_POPULATE = 0 if OSX else 0x2000, getattr(mmap, "MAP_POPULATE", 0 if OSX else 0x008000)
- class DiskAllocator(Allocator):
- def __init__(self, device:DiskDevice): self.device = device
- def _alloc(self, size:int, options):
- self.device._might_open(size)
- return DiskBuffer(self.device, size)
- def _free(self, opaque, options): self.device._might_close()
- def as_buffer(self, src:DiskBuffer): return src._buf()
- def copyin(self, dest:DiskBuffer, src:memoryview): dest._buf()[:] = src
- def copyout(self, dest:memoryview, src:DiskBuffer):
- if OSX and hasattr(self.device, 'fd'):
- # OSX doesn't seem great at mmap, this is faster
- with io.FileIO(self.device.fd, "a+b", closefd=False) as fo:
- fo.seek(src.offset)
- fo.readinto(dest)
- else:
- dest[:] = src._buf()
- def _copyout_sharded(self, src:DiskBuffer, size:int, _get_free_buf:Callable, seg_len:int) -> Generator[Tuple[int, int, int, int], None, None]:
- assert hasattr(DiskDevice, 'io_uring'), "function requires io uring support"
- fd_offset = src.offset - (minor_offset := src.offset % mmap.PAGESIZE)
- processed_reqs_cnt, copied_in, next_read_offset, total_copy_size = 0, 0, 0, round_up(size + minor_offset, mmap.PAGESIZE)
- reqs: List[Tuple[int, int, int, int]] = []
- while next_read_offset < total_copy_size or len(reqs) != processed_reqs_cnt:
- if next_read_offset < total_copy_size and (copy_batch := _get_free_buf()) is not None:
- # Prepare sqe
- sqe_index = (tail:=DiskDevice.io_uring.sq.ktail[0]) & DiskDevice.io_uring.sq.kring_mask[0]
- sqe = DiskDevice.io_uring.sq.sqes[sqe_index]
- sqe.opcode, sqe.fd, sqe.off = io_uring.IORING_OP_READ, self.device.fd, fd_offset + next_read_offset
- sqe.addr, sqe.len, sqe.user_data = copy_batch[0], min(seg_len, total_copy_size - next_read_offset), len(reqs)
- # Send sqe
- DiskDevice.io_uring.sq.array[sqe_index] = sqe_index
- DiskDevice.io_uring.sq.ktail[0] = tail + 1
- libc.syscall(io_uring.NR_io_uring_enter, DiskDevice.io_uring.ring_fd, 1, 1, io_uring.IORING_ENTER_GETEVENTS)
- reqs.append((copy_batch, copied_in, minor_offset, real_copy_size:=min(sqe.len - minor_offset, size - copied_in)))
- next_read_offset += sqe.len
- copied_in += real_copy_size
- minor_offset = 0
- if (head:=DiskDevice.io_uring.cq.khead[0]) != DiskDevice.io_uring.cq.ktail[0]:
- cqe = DiskDevice.io_uring.cq.cqes[head & DiskDevice.io_uring.cq.kring_mask[0]]
- assert cqe.res >= 0, f"read from disk failed, err: {cqe.res}"
- yield reqs[cqe.user_data]
- DiskDevice.io_uring.cq.khead[0] = head + 1 # advance
- processed_reqs_cnt += 1
- def offset(self, buf:DiskBuffer, size:int, offset:int): return DiskBuffer(buf.device, size, offset)
- class DiskDevice(Compiled):
- _tried_io_uring_init = False
- def __init__(self, device:str):
- if not DiskDevice._tried_io_uring_init: self._iouring_setup()
- self.size: Optional[int] = None
- self.count = 0
- super().__init__(device, DiskAllocator(self), None, None, None)
- def _might_open(self, size):
- self.count += 1
- assert self.size is None or size <= self.size, f"can't reopen Disk tensor with larger size, opened with {self.size}, tried to open with {size}"
- if self.size is not None: return
- filename = self.dname[len("disk:"):]
- self.size = size
- if filename.startswith("shm:"):
- fd = _posixshmem.shm_open("/"+filename[4:].lstrip("/"), os.O_RDWR, 0o600)
- self.mem = mmap.mmap(fd, self.size, mmap.MAP_SHARED | MAP_POPULATE | MAP_LOCKED)
- os.close(fd)
- else:
- try: self.fd = os.open(filename, os.O_RDWR|os.O_CREAT|(0 if OSX else os.O_DIRECT))
- except OSError: self.fd = os.open(filename, os.O_RDWR|os.O_CREAT)
- if os.fstat(self.fd).st_size < self.size: os.ftruncate(self.fd, self.size)
- self.mem = mmap.mmap(self.fd, self.size)
- if (hp := getattr(mmap, "MADV_HUGEPAGE", None)) is not None:
- with contextlib.suppress(OSError): self.mem.madvise(hp) # some systems have transparent_hugepage disabled
- def _might_close(self):
- self.count -= 1
- if self.count == 0:
- if hasattr(self, 'fd'): os.close(self.fd)
- self.size = None
- def _iouring_setup(self):
- DiskDevice._tried_io_uring_init = True
- if platform.system() != 'Linux' or hasattr(sys, "getandroidapilevel"): return
- fd = libc.syscall(io_uring.NR_io_uring_setup, 4096, ctypes.byref(p:=io_uring.struct_io_uring_params()))
- if fd < 0: return
- sq_ptr = libc.mmap(0, p.sq_off.array + p.sq_entries * 4, mmap.PROT_READ | mmap.PROT_WRITE, mmap.MAP_SHARED | MAP_POPULATE, fd, 0)
- cq_ptr = libc.mmap(0, p.cq_off.cqes + p.cq_entries * ctypes.sizeof(io_uring.struct_io_uring_cqe),
- mmap.PROT_READ | mmap.PROT_WRITE, mmap.MAP_SHARED | MAP_POPULATE, fd, io_uring.IORING_OFF_CQ_RING)
- sqes = libc.mmap(0, p.sq_entries * ctypes.sizeof(io_uring.struct_io_uring_sqe),
- mmap.PROT_READ | mmap.PROT_WRITE, mmap.MAP_SHARED | MAP_POPULATE, fd, io_uring.IORING_OFF_SQES)
- def u32ptr(val): return ctypes.cast(val, ctypes.POINTER(ctypes.c_uint32))
- sqdesc = io_uring.struct_io_uring_sq(khead=u32ptr(sq_ptr+p.sq_off.head), ktail=u32ptr(sq_ptr+p.sq_off.tail), array=u32ptr(sq_ptr+p.sq_off.array),
- kring_mask=u32ptr(sq_ptr+p.sq_off.ring_mask), sqes=ctypes.cast(sqes, ctypes.POINTER(io_uring.struct_io_uring_sqe)))
- cqdesc = io_uring.struct_io_uring_cq(khead=u32ptr(cq_ptr+p.cq_off.head), ktail=u32ptr(cq_ptr+p.cq_off.tail),
- kring_mask=u32ptr(sq_ptr+p.cq_off.ring_mask), cqes=ctypes.cast(cq_ptr+p.cq_off.cqes, ctypes.POINTER(io_uring.struct_io_uring_cqe)))
- DiskDevice.io_uring = io_uring.struct_io_uring(ring_fd=fd, sq=sqdesc, cq=cqdesc) # type: ignore
|