Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/calling_scripts/tutorial_calling.py

This file was deleted.

2 changes: 1 addition & 1 deletion install/testing_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flake8==6.1.0
flake8==7.0.0
coverage==7.3.1
pytest==7.4.4
pytest-cov==4.1.0
Expand Down
1 change: 0 additions & 1 deletion libensemble/gen_funcs/persistent_gpCAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def persistent_gpCAM_simple(H_in, persis_info, gen_specs, libE_info):
tag = None
persis_info["max_variance"] = []
while tag not in [STOP_TAG, PERSIS_STOP]:

if all_x.shape[0] == 0:
x_new = persis_info["rand_stream"].uniform(lb, ub, (batch_size, n))
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@

# Import libEnsemble items for this test
from libensemble.libE import libE
from libensemble.sim_funcs.six_hump_camel import six_hump_camel
from libensemble.sim_funcs.mock_sim import mock_sim
from libensemble.tests.regression_tests.support import six_hump_camel_minima as minima
from libensemble.sim_funcs.six_hump_camel import six_hump_camel
from libensemble.tests.regression_tests.common import read_generated_file
from libensemble.tests.regression_tests.support import six_hump_camel_minima as minima
from libensemble.tools import add_unique_random_streams, parse_args

# Main block is necessary only when using local comms with spawn start method (default on macOS and Windows).
Expand Down Expand Up @@ -60,7 +60,6 @@
exit_criteria = {"gen_max": 501, "wallclock_max": 300}

for run in range(2):

if run == 1:
# Test running a mock sim using previous history file
sim_specs["sim_f"] = mock_sim
Expand Down
1 change: 1 addition & 0 deletions libensemble/tests/regression_tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

class FileNotFoundError(Exception):
"""Exception raised when a file is not found within the specified timeout."""

pass


Expand Down
2 changes: 1 addition & 1 deletion libensemble/tests/unit_tests/test_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"cores_per_node": 42,
"logical_cores_per_node": 168,
"gpus_per_node": 6,
'tiles_per_gpu': None,
"tiles_per_gpu": None,
"gpu_setting_type": "option_gpus_per_task",
"gpu_setting_name": "-g",
"scheduler_match_slots": False,
Expand Down