Skip to content

Commit 7862d52

Browse files
author
Tyler Titsworth
authored
Merge branch 'main' into sharvil/gaudi-ocp-build
2 parents d3426cf + 8d46a64 commit 7862d52

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

.github/dockerhub-readmes.json

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
{
4444
"fname": "./workflows/README.md",
4545
"repo-name": "intel/ai-workflows"
46+
},
47+
{
48+
"fname": "./jax/README.md",
49+
"repo-name": "intel/intel-optimized-xla"
4650
}
4751
]
4852
}

jax/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Transformable numerical computing at scale combined with [Intel® Extension for
77
The images below include [JAX\*] and [Intel® Extension for OpenXLA\*].
88

99
| Tag(s) | [JAX\*] | [Intel® Extension for OpenXLA\*] | [Flax] | Dockerfile |
10-
| -------------------------- | --------- | ----------------- | -------- | --------------- |
11-
| `0.4.0-pip-base`, `latest` | [v0.4.32] | [v0.4.0-jax] | [v0.9.0] | [v0.4.0] |
10+
| -------------------------- | --------- | -------------------------------- | -------- | --------------- |
11+
| `0.4.0-pip-base`, `latest` | [v0.4.32] | [v0.4.0-jax] | [v0.9.0] | [v0.4.0] |
1212

1313
The images below additionally include [Jupyter Notebook](https://jupyter.org/) server:
1414

preset/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ AI Tools Selector Preset Containers provides data scientists and developers with
1818
2. Pull a Preset Container of your choice from the [AI Tools Selector](https://www.intel.com/content/www/us/en/developer/tools/oneapi/ai-tools-selector.html) or from the [table](#preset-containers). The commands below use the `deep-learning` preset as an example.
1919

2020
```bash
21-
docker pull intel/deep-learning:latest-py3.9
21+
docker pull intel/deep-learning:latest-py<version>
2222
```
2323

2424
## Run Preset Container
@@ -40,9 +40,9 @@ This mode allows running the container in an interactive shell. This enables the
4040

4141
```bash
4242
docker run -it --rm \
43-
--shm-size=12G \
43+
-p 8888:8888 --shm-size=12G \
4444
-v ${PWD}:/home/dev/workdir \
45-
intel/deep-learning:latest-py3.9 bash
45+
intel/deep-learning:latest-py<version> bash
4646
```
4747

4848
> [!NOTE]
@@ -64,10 +64,10 @@ docker run -it --rm \
6464
${RENDER_GROUP} \
6565
${VIDEO_GROUP} \
6666
--device=/dev/dri \
67-
--shm-size=12G \
67+
-p 8888:8888 --shm-size=12G \
6868
-v ${PWD}:/home/dev/workdir \
6969
-v /dev/dri/by-path:/dev/dri/by-path \
70-
intel/deep-learning:latest-py3.9 bash
70+
intel/deep-learning:latest-py<version> bash
7171
```
7272

7373
> [!NOTE]
@@ -100,9 +100,9 @@ This mode launches a jupyterlab notebook server. The command below will start th
100100
101101
```bash
102102
docker run -it --rm \
103-
--shm-size=12G \
103+
-p 8888:8888 --shm-size=12G \
104104
-v ${PWD}:/home/dev/workdir \
105-
intel/deep-learning:latest-py3.9
105+
intel/deep-learning:latest-py<version>
106106
```
107107
108108
> [!NOTE]
@@ -124,10 +124,10 @@ docker run -it --rm \
124124
${RENDER_GROUP} \
125125
${VIDEO_GROUP} \
126126
--device=/dev/dri \
127-
--shm-size=12G \
127+
-p 8888:8888 --shm-size=12G \
128128
-v ${PWD}:/home/dev/workdir \
129129
-v /dev/dri/by-path:/dev/dri/by-path \
130-
intel/deep-learning:latest-py3.9
130+
intel/deep-learning:latest-py<version>
131131
```
132132

133133
> [!NOTE]
@@ -146,7 +146,7 @@ docker run -it --rm \
146146
Modify your notebook server command by using the default example below to change the network (port/ip) and security (privilege) settings by appending it to the docker run commands above:
147147

148148
```bash
149-
docker run ... intel/deep-learning:latest-py3.9 \
149+
docker run ... intel/deep-learning:latest-py<version> \
150150
bash -c "jupyter notebook --notebook-dir=~/jupyter \
151151
--port 8888 \
152152
--ip 0.0.0.0 \

0 commit comments

Comments
 (0)