__init__.py 256 Bytes
Newer Older
Rick Ho's avatar
Rick Ho committed
1
2
3
4
5
6
7
r"""
Different implementations of the Gate are located in separate files here.
"""
from .zero_gate import ZeroGate
from .naive_gate import NaiveGate
from .noisy_gate import NoisyGate

Rick Ho's avatar
Rick Ho committed
8
9
from .gshard_gate import GShardGate
from .switch_gate import SwitchGate