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
4 changes: 4 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Description
- Python 3.12 is now supported; where available, installed TensorFlow version
is now 2.16.2, PyTorch is 2.7.1.
- Drop Python 3.9 support
- Add Numpy 2.0 support
- Terminate LSF and LSB support
- Implement workaround for Tensorflow that allows RedisAI to build with GCC-14
- Add instructions for installing SmartSim on PML's Scylla
Expand Down Expand Up @@ -104,6 +105,9 @@ Detailed Notes
([SmartSim-PR792](https://github.com/CrayLabs/SmartSim/pull/792))
- Address potential type errors in SmartSim.
([SmartSim-PR798](https://github.com/CrayLabs/SmartSim/pull/798))
- Removes an Numpy upper bound in the SmartSim dependency list now that
SmartRedis and supported ML backends support Numpy 2.0.
([SmartSim-PR803](https://github.com/CrayLabs/SmartSim/pull/803))


### 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class BuildError(Exception):
"pydantic>2",
"pyzmq>=25.1.2",
"pygithub>=2.3.0",
"numpy<2",
"numpy<3.0.0",
"smartredis>=0.6,<0.7",
],
zip_safe=False,
Expand Down
4 changes: 3 additions & 1 deletion tests/test_controller_metadata_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
from smartsim.entity import Model
from smartsim.settings import RunSettings

pytestmark = pytest.mark.group_b


class _DummyStep:
def __init__(self, metadata_dir: pathlib.Path, entity_name: str) -> None:
Expand Down Expand Up @@ -42,7 +44,7 @@ def fake_create_job_step(entity: Model, metadata_dir: pathlib.Path) -> _DummySte
return _DummyStep(metadata_dir, entity.name)

monkeypatch.setattr(controller, "_create_job_step", fake_create_job_step)
monkeypatch.setattr(controller, "_launch_step", lambda step, entity: None)
monkeypatch.setattr(controller, "_launch_step", lambda step, entity, monitor: None)
monkeypatch.setattr(
controller, "symlink_output_files", lambda *args, **kwargs: None
)
Expand Down
Loading