Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fridex/playground
A playground repository
https://github.com/fridex/playground
Last synced: about 1 month ago
JSON representation
A playground repository
- Host: GitHub
- URL: https://github.com/fridex/playground
- Owner: fridex
- Created: 2020-04-06T20:55:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T09:35:42.000Z (about 2 years ago)
- Last Synced: 2024-04-16T07:20:02.753Z (8 months ago)
- Language: Dockerfile
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Play the ground
Images are available on quay:
- [torch-matmul](https://quay.io/repository/fridex/torch-matmul)
- [tensorflow-matmul](https://quay.io/repository/fridex/tensorflow-matmul)
- [aicoe-tensorflow-matmul](https://quay.io/repository/fridex/aicoe-tensorflow-matmul)To build them, clone the repo and run:
```
cd torch-matmul/
podman build . -t quay.io/fridex/torch-matmul
``````
cd tensorflow-matmul/
podman build . -t quay.io/fridex/tensorflow-matmul
``````
cd aicoe-tensorflow-matmul/
podman build . -t quay.io/fridex/aicoe-tensorflow-matmul
```## To run in OpenShift
```
oc process -f job-template.yaml -p IMAGE="quay.io/fridex/torch-matmul:latest" -p CPU=1 -p MEMORY=1Gi | oc apply -f -
``````
oc process -f job-template.yaml -p IMAGE="quay.io/fridex/tensorflow-matmul:latest" -p CPU=1 -p MEMORY=1Gi | oc apply -f -
``````
oc process -f job-template.yaml -p IMAGE="quay.io/fridex/aicoe-tensorflow-matmul:latest" -p CPU=1 -p MEMORY=1Gi | oc apply -f -
```## Cleanup
```
oc delete jobs -l app=playground
```