Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ nav:
- Python API: docs/reference/api/python/index.md
- REST API: docs/reference/api/rest/index.md
- Environment variables: docs/reference/environment-variables.md
- .dstack/profiles.yml: docs/reference/profiles.yml.md

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

- Plugins:
- Python API: docs/reference/plugins/python/index.md
- REST API: docs/reference/plugins/rest/index.md
Expand Down
21 changes: 21 additions & 0 deletions src/dstack/_internal/core/backends/hotaisle/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,26 @@
"cpu_frequency": 2000000000,
"cpu_manufacturer": "Intel",
},
"2x MI300X 26x Xeon Platinum 8470": {
"cpu_model": "Xeon Platinum 8470",
"cpu_frequency": 2000000000,
"cpu_manufacturer": "Intel",
},
"2x MI300X 26x Xeon Platinum 8462Y+": {
"cpu_model": "Xeon Platinum 8462Y+",
"cpu_frequency": 2800000000,
"cpu_manufacturer": "Intel",
},
"4x MI300X 52x Xeon Platinum 8462Y": {
"cpu_model": "Xeon Platinum 8470",
"cpu_frequency": 2000000000,
"cpu_manufacturer": "Intel",
},
"4x MI300X 52x Xeon Platinum 8462Y+": {
"cpu_model": "Xeon Platinum 8462Y+",
"cpu_frequency": 2800000000,
"cpu_manufacturer": "Intel",
},
}


Expand All @@ -66,6 +86,7 @@ def get_all_offers_with_availability(self) -> List[InstanceOfferWithAvailability
locations=self.config.regions or None,
catalog=self.catalog,
)
logger.info(f"Offers: {offers}")

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems too verbose to log backend offers

supported_offers = []
for offer in offers:
if offer.instance.name in INSTANCE_TYPE_SPECS:
Expand Down