neuron.py 211 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
from .interface import Platform, PlatformEnum


class NeuronPlatform(Platform):
    _enum = PlatformEnum.NEURON

    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
        return "neuron"