updated configurator.py

This commit is contained in:
janis
2022-05-23 16:02:46 +02:00
parent 2662fa3dcc
commit 7a0517f13b
10 changed files with 66 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
class CaseAssigner:
def __init__(self):
pass
def case_chooser(self, budget, path_to_case_info, path_to_selected_components):
pass

View File

@@ -0,0 +1,6 @@
class CoolerAssigner:
def __init__(self):
pass
def cooler_chooser(self, budget, path_to_cooler_info, path_to_selected_components):
pass

View File

@@ -0,0 +1,6 @@
class CPUAssigner:
def __init__(self):
pass
def cpu_chooser(self, budget, path_to_cpu_info, usage_info):
pass

View File

@@ -0,0 +1,6 @@
class GPUAssigner:
def __init__(self):
pass
def gpu_assigner(self, budget, path_to_gpu_file, uscase_info):
pass

View File

View File

@@ -0,0 +1,6 @@
class MBDAssigner:
def __init__(self):
pass
def mbd_chooser(self, budget, path_to_mbd_info, path_to_selected_components):
pass

View File

@@ -0,0 +1,6 @@
class PSUAssigner:
def __init__(self):
pass
def psu_chooser(self, budget, path_to_psu_info):
pass

View File

6
bin/config/storage.py Normal file
View File

@@ -0,0 +1,6 @@
class StorageAssigner:
def __init__(self):
pass
def storage(self, budget, storage_amount, storage_config, path_to_storage_file):
pass