This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cloud.project.training): add training region GPU endpoint (#310)
feat(cloud.project.training): add training region GPU endpoint Co-authored-by: <[email protected]>
- Loading branch information
Corentin REGAL
authored
Sep 17, 2020
1 parent
9fa2511
commit cdd3244
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...bilities/training/region/gpu/cloud-project-ai-capabilities-training-region-gpu.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
angular | ||
.module('ovh-api-services') | ||
.service('OvhApiCloudProjectAiCapabilitiesTrainingRegionGpu', ($injector) => ({ | ||
v6: () => $injector.get('OvhApiCloudProjectAiCapabilitiesTrainingRegionGpuV6'), | ||
})); |
6 changes: 6 additions & 0 deletions
6
...ities/training/region/gpu/cloud-project-ai-capabilities-training-region-gpu.v6.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
angular | ||
.module('ovh-api-services') | ||
.service('OvhApiCloudProjectAiCapabilitiesTrainingRegionGpuV6', ($resource) => $resource('/cloud/project/:serviceName/ai/capabilities/training/region/:region/gpu', { | ||
serviceName: '@serviceName', | ||
region: '@region', | ||
})); |