mirror of https://github.com/hpcaitech/ColossalAI
12 lines
302 B
Python
12 lines
302 B
Python
import operator
|
|
import torch
|
|
from ..registry import meta_profiler_module
|
|
from typing import Optional, Tuple, Union
|
|
|
|
|
|
@meta_profiler_module.register(torch.nn.Flatten)
|
|
def torch_nn_flatten(self: torch.nn.Flatten, input: torch.Tensor) -> Tuple[int, int]:
|
|
flops = 0
|
|
macs = 0
|
|
return flops, macs
|