-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgpu-8-taskdef.json
38 lines (38 loc) · 1.03 KB
/
gpu-8-taskdef.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"containerDefinitions": [
{
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "test-task-tensorflow-gpu",
"awslogs-region": "us-east-2",
"awslogs-stream-prefix": "tensorflow-gpu"
}
},
"cpu": 1024,
"resourceRequirements": [
{
"type": "GPU",
"value": "8"
}
],
"environment": [
{
"name": "GPU",
"value": "8"
},
{
"name": "BATCH_SIZE",
"value": "128"
}
],
"image": "brentley/tensorflow-gpu:8904d11",
"essential": true,
"name": "tensorflow-gpu"
}
],
"memory": "131072",
"family": "tensorflow-8-gpu",
"cpu": "1024",
"placementConstraints": []
}