@punks/backend-entity-manager 0.0.293 → 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.
- package/dist/cjs/index.js +9 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/esm/index.js +9 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +1 -0
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/models/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -40099,6 +40099,14 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
40099
40099
|
type: clientBatch.ResourceType.VCPU,
|
|
40100
40100
|
value: definition.vcpu.toString(),
|
|
40101
40101
|
},
|
|
40102
|
+
...(definition.gpuMemory
|
|
40103
|
+
? [
|
|
40104
|
+
{
|
|
40105
|
+
type: clientBatch.ResourceType.GPU,
|
|
40106
|
+
value: definition.gpuMemory.toString(),
|
|
40107
|
+
},
|
|
40108
|
+
]
|
|
40109
|
+
: []),
|
|
40102
40110
|
],
|
|
40103
40111
|
networkConfiguration: {
|
|
40104
40112
|
assignPublicIp: clientBatch.AssignPublicIp.ENABLED,
|
|
@@ -40207,6 +40215,7 @@ let AwsJobsProvider = class AwsJobsProvider {
|
|
|
40207
40215
|
image: awsInfraParams.dockerImage,
|
|
40208
40216
|
jobUid: definition.uid,
|
|
40209
40217
|
memory: awsInfraParams.memory,
|
|
40218
|
+
gpuMemory: awsInfraParams.gpuMemory,
|
|
40210
40219
|
vcpu: awsInfraParams.vcpu,
|
|
40211
40220
|
defaultCommand: awsInvocationParams.startCommand,
|
|
40212
40221
|
});
|