Skip to content

Commit a02b537

Browse files
authored
fixing memory available options for aws batch 4 cpus (#1452)
1 parent 24f05a1 commit a02b537

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lithops/serverless/backends/aws_batch

lithops/serverless/backends/aws_batch/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
0.5: [1024, 2048, 3072, 4096],
2929
1: [2048, 3072, 4096, 5120, 6144, 7168, 8192],
3030
2: [4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384],
31-
4: [8192 + 1024 * i for i in range(21)], # Starts at 8192, increments by 1024 up to 30720
31+
4: [8192 + 1024 * i for i in range(23)], # Starts at 8192, increments by 1024 up to 30720
3232
8: [16384 + 4096 * i for i in range(12)], # Starts at 16384, increments by 4096 up to 61440
3333
16: [32768 + 8192 * i for i in range(12)] # Starts at 32768, increments by 8192 up to 122880
3434
}

0 commit comments

Comments
 (0)