Skip to content

Commit

Permalink
#501: remove subclustering
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Feb 21, 2024
1 parent c7570ce commit 5f45a20
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/lbaf/Execution/lbsWorkStealerAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,11 @@ def __init__(
super(WorkStealerAlgorithm, self).__init__(
work_model, parameters, lgr, rank_qoi, object_qoi)

# Determine whether subclustering is performed immediately after swapping
self.__separate_subclustering = parameters.get("separate_subclustering", False)
self._logger.info(
f"Enter subclustering immediately after cluster swapping: {self.__separate_subclustering}")

# Initialize cluster swap relative threshold
self.__cluster_swap_rtol = parameters.get("cluster_swap_rtol", 0.05)
self._logger.info(
f"Relative tolerance for cluster swaps: {self.__cluster_swap_rtol}")

# Initialize maximum number of subclusters
self.__max_subclusters = parameters.get("max_subclusters", math.inf)
self._logger.info(
f"Maximum number of visited subclusters: {self.__max_subclusters}")

# Initialize global cluster swapping counters
self.__n_swaps, self.__n_swap_tries = 0, 0

Expand Down

0 comments on commit 5f45a20

Please sign in to comment.