Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fridex/playground

A playground repository
https://github.com/fridex/playground

Last synced: about 1 month ago
JSON representation

A playground repository

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
```