Skip to content

Commit

Permalink
Set default value for enable_tf_gpu_growth to False
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Nov 21, 2024
1 parent 338ddab commit ac8ee85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/flwr/simulation/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def run_simulation_process( # pylint: disable=R0914, disable=W0212, disable=R09
)
backend_config: BackendConfig = fed_opt.get("backend", {})
verbose: bool = fed_opt.get("verbose", False)
enable_tf_gpu_growth: bool = fed_opt.get("enable_tf_gpu_growth", True)
enable_tf_gpu_growth: bool = fed_opt.get("enable_tf_gpu_growth", False)

# Launch the simulation
_run_simulation(
Expand Down

0 comments on commit ac8ee85

Please sign in to comment.