Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav committed Aug 26, 2024
1 parent 4860428 commit ced8992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libensemble/utils/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def __init__(self, specs):

def _get_points_updates(self, batch_size: int) -> (npt.NDArray, npt.NDArray):
# no ask_updates on external gens
return (list_dicts_to_np(self.gen.ask(batch_size), dtype=self.gen_specs["out"]), None)
return (list_dicts_to_np(self.gen.ask(batch_size), dtype=self.specs["out"]), None)

def _convert_tell(self, x: npt.NDArray) -> list:
self.gen.tell(np_to_list_dicts(x))
Expand Down

0 comments on commit ced8992

Please sign in to comment.