Skip to content

Commit

Permalink
Merge pull request #38 from StatCan/fix-max-limits
Browse files Browse the repository at this point in the history
fix: update ram limits
  • Loading branch information
Zachary Seguin authored Nov 3, 2020
2 parents 49dea69 + f8c29ee commit 344d4fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
} from "@angular/forms";

const MAX_FOR_GPU: ReadonlyMap<number, MaxResourceSpec> = new Map([
[0, {cpu: 15, ram: 96}],
[1, {cpu: 5, ram: 48}]
[0, {cpu: 15, ram: 48}],
[1, {cpu: 5, ram: 96}]
]);

type MaxResourceSpec = {cpu: number; ram: number};
Expand Down

0 comments on commit 344d4fc

Please sign in to comment.