94 lines
2.5 KiB
Python
94 lines
2.5 KiB
Python
# ------------------------------------------------------------------------------
|
|
# Copyright 2022 Upstream Data Inc -
|
|
# -
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
|
# you may not use this file except in compliance with the License. -
|
|
# You may obtain a copy of the License at -
|
|
# -
|
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
|
# -
|
|
# Unless required by applicable law or agreed to in writing, software -
|
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
|
# See the License for the specific language governing permissions and -
|
|
# limitations under the License. -
|
|
# ------------------------------------------------------------------------------
|
|
|
|
from pyasic.miners.device.makes import WhatsMinerMake
|
|
|
|
|
|
class M50VE30(WhatsMinerMake):
|
|
raw_model = "M50 VE30"
|
|
expected_hashboards = 4
|
|
expected_chips = 255
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VG30(WhatsMinerMake):
|
|
raw_model = "M50 VG30"
|
|
expected_chips = 156
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH10(WhatsMinerMake):
|
|
raw_model = "M50 VH10"
|
|
expected_chips = 86
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH20(WhatsMinerMake):
|
|
raw_model = "M50 VH20"
|
|
expected_chips = 111
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH30(WhatsMinerMake):
|
|
raw_model = "M50 VH30"
|
|
expected_chips = 117
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH40(WhatsMinerMake):
|
|
raw_model = "M50 VH40"
|
|
expected_chips = 84
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH50(WhatsMinerMake):
|
|
raw_model = "M50 VH50"
|
|
expected_chips = 105
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH60(WhatsMinerMake):
|
|
raw_model = "M50 VH60"
|
|
expected_chips = 84
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH70(WhatsMinerMake):
|
|
raw_model = "M50 VH70"
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VH80(WhatsMinerMake):
|
|
raw_model = "M50 VH80"
|
|
expected_chips = 111
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VJ10(WhatsMinerMake):
|
|
raw_model = "M50 VJ10"
|
|
expected_chips = 0
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VJ20(WhatsMinerMake):
|
|
raw_model = "M50 VJ20"
|
|
expected_fans = 2
|
|
|
|
|
|
class M50VJ30(WhatsMinerMake):
|
|
raw_model = "M50 VJ30"
|
|
expected_fans = 2
|