@punks/backend-entity-manager 0.0.294 → 0.0.295

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@ import { JobDefinition } from "../../../../extensions/jobs/abstractions/definiti
2
2
  export type AwsBatchInfrastructureParams = {
3
3
  vcpu: number;
4
4
  memory: number;
5
+ gpuMemory?: number;
5
6
  dockerImage: string;
6
7
  };
7
8
  export type AwsBatchInvocationParams = {
package/dist/esm/index.js CHANGED
@@ -40200,6 +40200,7 @@ let AwsJobsProvider = class AwsJobsProvider {
40200
40200
  image: awsInfraParams.dockerImage,
40201
40201
  jobUid: definition.uid,
40202
40202
  memory: awsInfraParams.memory,
40203
+ gpuMemory: awsInfraParams.gpuMemory,
40203
40204
  vcpu: awsInfraParams.vcpu,
40204
40205
  defaultCommand: awsInvocationParams.startCommand,
40205
40206
  });