Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up imports of thunder/clang/__init__.py #1589

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading