Skip to content

Commit

Permalink
Merge pull request #493 from HoomanDgtl/h200
Browse files Browse the repository at this point in the history
ref: GPU sorting logic in pricing page
  • Loading branch information
HoomanDgtl authored Jan 15, 2025
2 parents 663ac56 + e23b2df commit dd4cc6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pricing-page/gpus/sort.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const publishingOptions = [
];

export const onTop = (res?: Gpus) => {
const onTop = ["h100", "h200", "a100"];
const onTop = ["h200", "h100", "a100"];
const filtered = res?.models
?.filter((model) => onTop?.includes(model?.model))
.sort((a, b) => onTop.indexOf(a?.model) - onTop.indexOf(b?.model));
Expand Down

0 comments on commit dd4cc6c

Please sign in to comment.