move dtypes to dtype.py (#2964)

* move dtypes to dtype.py

* fix urllib
This commit is contained in:
George Hotz
2024-01-01 14:58:48 -08:00
committed by GitHub
parent fadaa2ec28
commit a280cfe169
74 changed files with 219 additions and 289 deletions

View File

@@ -3,9 +3,7 @@ import math
import unittest
import numpy as np
import torch
from tinygrad.tensor import Tensor
import tinygrad.nn as nn
from tinygrad.helpers import dtypes
from tinygrad import nn, dtypes, Tensor
from functools import partial
# https://gist.github.com/devries/11405101