Skip to content

Commit

Permalink
import cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Masaki Kozuki <mkozuki@nvidia.com>
  • Loading branch information
crcrpar committed Dec 28, 2024
1 parent 9d79b8d commit ff50317
Showing 1 changed file with 13 additions and 18 deletions.
31 changes: 13 additions & 18 deletions thunder/clang/__init__.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,31 @@
import math
from __future__ import annotations
from collections import namedtuple
from collections.abc import Callable, Sequence
from functools import partial, reduce
from numbers import Number
from typing import Union, List, Optional, Any
from collections.abc import Callable
from collections.abc import Sequence
from collections import namedtuple
from types import EllipsisType
from typing import Any, Union
import math
import operator
from types import EllipsisType, NoneType
import copy
import time
import warnings

from thunder.core.baseutils import run_once
from thunder.core.compile_data import using_symbolic_values
from thunder.clang.langctx import register_method
from thunder.core import utils
from thunder.core.baseutils import run_once
from thunder.core.langctxs import langctx, Languages

import thunder.core.devices as devices
import thunder.core.dtypes as dtypes
from thunder.core import utils
import thunder.core.prims as prims
from thunder.core.proxies import (
AnyProxy,
IntegerProxy,
NumberProxy,
NumberLike,
NumberProxy,
Proxy,
TensorProxy,
pyval,
pytype,
proxy,
AnyProxy,
Proxy,
pyval,
)
import thunder.core.devices as devices

# This file defines the operations in thunder.jit's "core" language.
#
Expand Down

0 comments on commit ff50317

Please sign in to comment.