You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Docker.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ There are three ways to use ONNX-MLIR with Docker.
12
12
An easy way to get started with ONNX-MLIR is to use a prebuilt Docker image.
13
13
These images are created as a result of a successful merge build on the trunk.
14
14
This means that the latest image represents the tip of the trunk.
15
-
Currently there are both Release and Debug mode images for `amd64`, `ppc64le` and `s390x` saved in Docker Hub as, respectively, [onnxmlir/onnx-mlir](https://hub.docker.com/r/onnxmlir/onnx-mlir) and [onnxmlir/onnx-mlir-dev](https://hub.docker.com/r/onnxmlir/onnx-mlir-dev).
15
+
Currently there are both Release and Debug mode images for `amd64`, `ppc64le` and `s390x` saved in Docker Hub as, respectively, [onnxmlir/onnx-mlir](https://github.com/users/onnxmlir/packages/container/onnx-mlir) and [onnxmlir/onnx-mlir-dev](https://github.com/users/onnxmlir/packages/container/onnx-mlir-dev).
16
16
To use one of these images either pull it directly from Docker Hub, launch a container and run an interactive bash shell in it, or use it as the base image in a Dockerfile.
17
17
18
18
Here are the differences between the two Docker images.
@@ -53,7 +53,7 @@ The Dockerfile is shown here, and should be modified according to one's need. Th
# Start a container using the Docker dashboard or a docker run command.
142
-
docker run --platform linux/amd64 -it onnx-mlir-dev
142
+
docker run --platform linux/amd64 -it ghcr.io/onnxmlir/onnx-mlir-dev
143
143
```
144
144
145
145
Tip: Instead of adding the platform flag for every docker pull, build, and run command. You can set the environment variable `DOCKER_DEFAULT_PLATFORM` and use the first set of steps:
Copy file name to clipboardexpand all lines: docs/TestingHighLevel.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ If you run into protobuf related errors during the build, check the following po
40
40
* llvm-project, onnx, and/or onnx-mlir may detect different versions of python3 (so watch their cmake output) if you have multiple python versions installed
41
41
* cmake caches stuff and you should never use "make clean" when rebuilding. Instead remove everything under the build tree and start from scratch.
42
42
43
-
These and many other trickeries for setting up the build env are the reason why we recommend using the `onnxmlir/onnx-mlir-dev` docker image for development.
43
+
These and many other trickeries for setting up the build env are the reason why we recommend using the [onnxmlir/onnx-mlir-dev](https://github.com/users/onnxmlir/packages/container/onnx-mlir-dev) docker image for development.
0 commit comments