mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2026-01-21 22:24:00 +00:00
* [fx] move meta registration * [fx] fix tests. * [fx] fix test. * [fx] fix. * [meta] refactor meta registration.py. * [fx] add compatibility descriptions. * [fx] polish import. * [fx] add a decorator. * [fx] fix tests. * [fx] remove print. * [fx] edit raise error. * [fx] edit raise error. * [fx] add type hint. * [fx] fix import in experimental. * [rpc] remove color debug. * [meta] fix naming.
13 lines
595 B
Python
13 lines
595 B
Python
from .._compatibility import is_compatible_with_meta
|
|
|
|
if is_compatible_with_meta():
|
|
from .memory import calculate_fwd_in, calculate_fwd_out, calculate_fwd_tmp
|
|
from .opcount import flop_mapping
|
|
from .profiler import profile_function, profile_method, profile_module
|
|
from .tensor import MetaTensor
|
|
else:
|
|
from .experimental import meta_profiler_function, meta_profiler_module, profile_function, profile_method, profile_module, calculate_fwd_in, calculate_fwd_tmp, calculate_fwd_out
|
|
|
|
from .dataflow import GraphInfo
|
|
from .memory import activation_size, is_inplace, parameter_size
|