mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
Initial commit
This commit is contained in:
10
deploy/data_placement/test/test_plan.py
Normal file
10
deploy/data_placement/test/test_plan.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from smallpond.test_fabric import TestFabric
|
||||
from src.model.data_placement_job import search_data_placement_plans
|
||||
|
||||
class TestPlan(TestFabric):
|
||||
|
||||
def test_search_data_placement_plans(self):
|
||||
for pyomo_solver in ["appsi_highs"]:
|
||||
with self.subTest(pyomo_solver=pyomo_solver):
|
||||
plan = search_data_placement_plans(chain_table_type="EC", num_nodes=[10], group_size=[5, 9], solver_threads=16, pyomo_solver=pyomo_solver)
|
||||
self.execute_plan(plan, num_executors=1)
|
||||
Reference in New Issue
Block a user