Closed
Bug 1308979
Opened 9 years ago
Closed 9 years ago
Specific worker for DeepSpeech tensorflow builds
Categories
(Taskcluster :: Operations and Service Requests, task)
Taskcluster
Operations and Service Requests
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: gerard-majax, Assigned: dustin)
Details
DeepSpeech has tensorflow builds running on tc with the github integration. However, sharing the workers when triggering cpu and gpu builds for tensorflow results in OOM. This should be avoided :)
| Assignee | ||
Comment 1•9 years ago
|
||
I think we'll use `deepspeech-worker` as the workerType name. Here's the beginning of the workerType definition:
{
"workerType": "deepspeech-worker",
"minCapacity": 1,
"maxCapacity": 20,
"scalingRatio": 0,
"minPrice": 0,
"maxPrice": 0.2,
"canUseOndemand": false,
"canUseSpot": true,
"instanceTypes": [
{
"instanceType": "r3.xlarge",
"capacity": 1,
"utility": 1,
"secrets": {},
"scopes": [],
"userData": {
"isolatedContainers": true
},
"launchSpec": {}
},
{
"instanceType": "m3.xlarge",
"capacity": 1,
"utility": 1,
"secrets": {},
"scopes": [],
"userData": {
"isolatedContainers": true
},
"launchSpec": {}
},
{
"instanceType": "c3.xlarge",
"capacity": 1,
"utility": 1,
"secrets": {},
"scopes": [],
"userData": {
"isolatedContainers": true
},
"launchSpec": {}
}
],
| Assignee | ||
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Component: Service Request → Operations and Service Requests
You need to log in
before you can comment on or make changes to this bug.
Description
•