Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loafoe/hsdp-task-cuda-test
Example CUDA task skeleton for utilizing HSDP Iron GPU workers
https://github.com/loafoe/hsdp-task-cuda-test
gpu-acceleration gpu-computing hsdp hsdp-task
Last synced: about 1 month ago
JSON representation
Example CUDA task skeleton for utilizing HSDP Iron GPU workers
- Host: GitHub
- URL: https://github.com/loafoe/hsdp-task-cuda-test
- Owner: loafoe
- License: mit
- Created: 2021-04-13T13:54:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T04:00:51.000Z (almost 2 years ago)
- Last Synced: 2023-03-25T14:54:16.652Z (over 1 year ago)
- Topics: gpu-acceleration, gpu-computing, hsdp, hsdp-task
- Language: Dockerfile
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# hsdp-task-cuda-test
A Docker image that serves as a skeleton for creating [hsdp_function](https://registry.terraform.io/providers/philips-software/hsdp/latest/docs/resources/function) tasks which can take advantage of HSDP Iron GPU workers.
# Usage
```hcl
module "siderite_backend" {
source = "philips-labs/siderite-backend/cloudfoundry"cf_region = "eu-west"
cf_org_name = "hsdp-demo-org"
cf_user = var.cf_user
iron_plan = "large-encrypted-gpu"
}resource "hsdp_function" "cuda_test" {
name = "cuda-test"
docker_image = "philipslabs/hsdp-task-cuda-test:latest"
command = ["/app/cudatest"]schedule = "*/5 * * * *"
backend {
credentials = module.siderite_backend.credentials
}
}
```# Contact / Getting help
Please post your questions on the HSDP Slack `#terraform` channel
# License
License is MIT