Skip to content

Commit

Permalink
Merge branch 'main' into eujingchua/cyclic-sched
Browse files Browse the repository at this point in the history
  • Loading branch information
motus authored Oct 4, 2024
2 parents 383bf2c + dbaccea commit 9fde888
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"type": ["string", "number", "boolean"]
}
},
"minProperties": 1,
"not": {
"required": ["tunable_values"]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/MLOS/main/mlos_bench/mlos_bench/config/schemas/tunables/tunable-values-schema.json",

"foo": "bar",
"int": 1,
"float": 1.1,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/MLOS/main/mlos_bench/mlos_bench/config/schemas/tunables/tunable-values-schema.json"
// empty tunable values represents the defaults
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
// empty tunable values represents the defaults
}
26 changes: 26 additions & 0 deletions mlos_bench/mlos_bench/tests/tunables/tunables_assign_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@ def test_tunables_assign_unknown_param(tunable_groups: TunableGroups) -> None:
)


def test_tunables_assign_defaults(tunable_groups: TunableGroups) -> None:
"""Make sure we can assign the default values using an empty dictionary."""
tunable_groups_defaults = tunable_groups.copy()
assert tunable_groups.is_defaults()
# Assign the default values.
# Also reset the _is_updated flag to avoid considering that in the comparison.
tunable_groups.assign({}).reset()
assert tunable_groups_defaults == tunable_groups
assert tunable_groups.is_defaults()
new_vm_size = "Standard_B2s"
assert tunable_groups["vmSize"] != new_vm_size
# Change one value.
tunable_groups.assign({"vmSize": new_vm_size}).reset()
assert tunable_groups["vmSize"] == new_vm_size
# Check that the other values are still defaults.
idle_tunable, _ = tunable_groups.get_tunable("idle")
assert idle_tunable.is_default()
assert tunable_groups_defaults != tunable_groups
assert not tunable_groups.is_defaults()
# Reassign defaults.
tunable_groups.assign({}).reset()
assert tunable_groups["vmSize"] != new_vm_size
assert tunable_groups.is_defaults()
assert tunable_groups_defaults == tunable_groups


def test_tunables_assign_categorical(tunable_categorical: Tunable) -> None:
"""Regular assignment for categorical tunable."""
# Must be one of: {"Standard_B2s", "Standard_B2ms", "Standard_B4ms"}
Expand Down
12 changes: 12 additions & 0 deletions mlos_bench/mlos_bench/tunables/tunable_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
#
"""TunableGroups definition."""
import copy
import logging
from typing import Dict, Generator, Iterable, Mapping, Optional, Tuple, Union

from mlos_bench.config.schemas import ConfigSchema
from mlos_bench.tunables.covariant_group import CovariantTunableGroup
from mlos_bench.tunables.tunable import Tunable, TunableValue

_LOG = logging.getLogger(__name__)


class TunableGroups:
"""A collection of covariant groups of tunable parameters."""
Expand Down Expand Up @@ -346,11 +349,20 @@ def assign(self, param_values: Mapping[str, TunableValue]) -> "TunableGroups":
param_values : Mapping[str, TunableValue]
Dictionary mapping Tunable parameter names to new values.
As a special behavior when the mapping is empty the method will restore
the default values rather than no-op.
This allows an empty dictionary in json configs to be used to reset the
tunables to defaults without having to copy the original values from the
tunable_params definition.
Returns
-------
self : TunableGroups
Self-reference for chaining.
"""
if not param_values:
_LOG.info("Empty tunable values set provided. Resetting all tunables to defaults.")
return self.restore_defaults()
for key, value in param_values.items():
self[key] = value
return self

0 comments on commit 9fde888

Please sign in to comment.