remove NumNode (#7035)

This commit is contained in:
chenyu
2024-10-13 16:42:19 -04:00
committed by GitHub
parent c4c806a210
commit bd8ecf7fd6
8 changed files with 17 additions and 25 deletions

View File

@@ -1,8 +1,7 @@
from __future__ import annotations
from typing import Final, Optional, ClassVar, Set, Tuple, Dict, Union, Callable
import math, struct, ctypes
import math, struct, ctypes, functools
from dataclasses import dataclass
import functools
from tinygrad.helpers import getenv
ConstType = Union[float, int, bool]