blob: 3c983fee4c5e9af699aa9183d98b5b88b921ea0e [file] [log] [blame] [edit]
# This is the profile implementation registry. Register new profile
# implementations here.
from .profilev1impl import ProfileV1
from .profilev2impl import ProfileV2
from .perf import LinuxPerfProfile
IMPLEMENTATIONS = {0: LinuxPerfProfile, 1: ProfileV1, 2: ProfileV2}