Skip to content
Snippets Groups Projects
Commit 7eaa0c90 authored by Maël Madon's avatar Maël Madon
Browse files

Merge branch 'multibehavior_mono_multi_core' into 'master'

merge requested multibehavor_mono_multi_core

See merge request !20
parents 5c8dae2b 31469486
No related branches found
No related tags found
1 merge request!20merge requested multibehavor_mono_multi_core
Pipeline #6095 passed
Showing
with 573 additions and 263 deletions
This diff is collapsed.
......@@ -9,7 +9,8 @@
"category": "dm_user_multi_behavior",
"param": {
"input_json": "test/workloads/dyn/two_jobs.json",
"red_prob_see_you_later": 1.0
"red_prob_see_you_later_multi_core" : 1.0,
"red_prob_see_you_later_mono_core" : 1.0
}
}
]
......
This diff is collapsed.
This diff is collapsed.
......@@ -146,3 +146,14 @@ def test_error_intersection_red_yellow(platform_multiC):
make_error_file(3, red_windows=intersecting_windows[j % 2], yellow_windows=intersecting_windows[j // 2],probas=probas)
error_user(f"dm_user_multi_behavior_intersecting_red_yellow_{i}_{j}", platform_multiC,
"at least one common element in their interval")
def test_deprecated_option(platform_multiC):
invalid_probas = [ [("yellow_prob_reconfig", 1.0)], [("yellow_prob_degrad", 1.0)], [("yellow_prob_rigid", 1.0)],
[("red_prob_reconfig", 1.0)], [("red_prob_degrad", 1.0)], [("red_prob_rigid", 1.0)],[("red_prob_see_you_later",1.0)],
[("red_prob_renonce",1.0)]]
i = 0
for probas in invalid_probas:
make_error_file(3, yellow_windows=[[0, 1]], probas=probas)
out_dir = error_user("dm_user_multi_behavior_deprecated_yellow_prob_" + str(i), platform_multiC, "deprecated option")
i += 1
return
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment