Skip to content

Commit

Permalink
deploy: 1cf4e36
Browse files Browse the repository at this point in the history
  • Loading branch information
guizili0 committed Aug 10, 2023
1 parent a85f74a commit 58a1bc3
Show file tree
Hide file tree
Showing 64 changed files with 430 additions and 60 deletions.
2 changes: 1 addition & 1 deletion latest/CODE_OF_CONDUCT.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contributor Covenant Code of Conduct &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Contributor Covenant Code of Conduct &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/SECURITY.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Security Policy &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Security Policy &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
Expand Down
1 change: 1 addition & 0 deletions latest/_sources/examples/README.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ A wide variety of examples are provided to demonstrate the usage of Intel® Exte
|[Stable Diffusion Inference for Text2Image on Intel GPU](./stable_diffussion_inference)|Example for running Stable Diffusion Text2Image inference on Intel GPU with the optimizations from Intel® Extension for TensorFlow*.|GPU|
|[Accelerate ResNet50 Training by XPUAutoShard on Intel GPU](./train_resnet50_with_autoshard)|Example on running ResNet50 training on Intel GPU with the XPUAutoShard feature.|GPU|
|[Accelerate BERT-Large Pretraining on Intel GPU](./pretrain_bert)|Example on running BERT-Large pretraining on Intel GPU with the optimizations from Intel® Extension for TensorFlow*.|GPU|
|[Accelerate 3D-UNet Training w/o horovod for medical image segmentation on Intel GPU](./train_3d_unet)|Example on running 3D-UNet training for medical image segmentation on Intel GPU with the optimizations from Intel® Extension for TensorFlow*.|GPU|
125 changes: 125 additions & 0 deletions latest/_sources/examples/train_3d_unet/README.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
# Accelerate 3D-Unet Training w/o horovod for medical image segmentation on Intel GPU

## Introduction

Intel® Extension for TensorFlow* is compatible with stock TensorFlow*.
This example shows 3D-UNet Training for medical image segmentation. It contains single-tile training scripts and multi-tile training scripts with horovod.

Install the Intel® Extension for TensorFlow* in legacy running environment, Tensorflow will execute the Training on Intel GPU.

## Hardware Requirements

Verified Hardware Platforms:

- Intel® Data Center GPU Max Series

## Prerequisites

### Model Code change

To get better performance, instead of installing the official repository, you can apply the patch and install it as shown here. You can choose one patch from single-tile patch `3dunet_itex.patch` and multi-tile patch `3dunet_itex_with_horovod.patch`.

```
git clone https://github.com/NVIDIA/DeepLearningExamples.git
cd DeepLearningExamples/TensorFlow/Segmentation/UNet_3D_Medical/
git checkout 88eb3cff2f03dad85035621d041e23a14345999e
git apply patch # When applying this patch, please move it to the above 3D-UNet dir first.
```

### Prepare for GPU

Refer to [Prepare](../common_guide_running.md##Prepare).

### Setup Running Environment

You can use `./pip_set_env.sh` to setup for GPU. It contains the following two steps: creating virtual environment and installing python packages.

+ Create Virtual Environment

```
python -m venv env_itex
source source env_itex/bin/activate
```

+ Install

```
pip install --upgrade pip
pip install --upgrade intel-extension-for-tensorflow[gpu]
pip install intel-optimization-for-horovod
pip install tfa-nightly
pip install git+https://github.com/NVIDIA/dllogger.git
```

### Enable Running Environment

Enable oneAPI running environment (only for GPU) and virtual running environment.

* For GPU, refer to [Running](../common_guide_running.md##Running)

### Prepare Dataset

We use [Brain Tumor Segmentation 2019 dataset](https://www.med.upenn.edu/cbica/brats-2019/) for 3D-UNet training. Upon registration, the challenge's data is made available through the `https//ipp.cbica.upenn.edu` service.

The training and test datasets are given as 3D `nifti` volumes that can be read using the Nibabel library and NumPy. It can be converted from `nifti` to `tfrecord` using `./dataset/preprocess_data.py` script.

## Execute the Example

Assume current_dir is `examples/train_maskrcnn/DeepLearningExamples/TensorFlow/Segmentation/UNet_3D_Medical/`.

Here we provide single-tile training scripts and multi-tile training scripts with horovod. The datatype can be float32 or bfloat16.

```
DATASET_DIR=/the/path/to/dataset
OUTPUT_DIR=/the/path/to/output_dir
```

### Single Tile

First apply patch.

```
git apply 3dunet_itex.patch
```

+ float32

```
python main.py --benchmark --data_dir $DATASET_DIR --model_dir $OUTPUT_DIR --exec_mode train --batch_size $BATCH_SIZE --warmup_steps 150 --max_steps 1000 --log_every 1
```

+ bfloat16

```
python main.py --benchmark --data_dir $DATASET_PATH --model_dir $OUTPUT_DIR --exec_mode train --warmup_steps 150 --max_steps 1000 --batch_size=$BATCH_SIZE --log_every 1 --amp
```

### Multi-tile with horovod

First apply patch.

```
git apply 3dunet_itex_with_horovod.patch
```

+ float32

```
mpirun -np 2 -prepend-rank -ppn 2 \
python main.py --data_dir=$DATASET_DIR --benchmark --model_dir=$MODEL_DIR --exec_mode train --warmup_steps 150 --max_steps 1000 --batch_size=$BATCH_SIZE
```

+ bf16

```
mpirun -np 2 -prepend-rank -ppn 2 \
python main.py --data_dir=$DATASET_DIR --benchmark --model_dir=$MODEL_DIR --exec_mode train --warmup_steps 150 --max_steps 1000 --batch_size=$BATCH_SIZE --amp
```

## FAQ

1. If you get the following error log, refer to [Enable Running Environment](#Enable-Running-Environment) to Enable oneAPI running environment.

```
tensorflow.python.framework.errors_impl.NotFoundError: libmkl_sycl.so.2: cannot open shared object file: No such file or directory
```
2 changes: 1 addition & 1 deletion latest/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '0.1.dev1+g53bc0e2',
VERSION: '0.1.dev1+g1cf4e36',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
2 changes: 1 addition & 1 deletion latest/docker/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Intel® Extension for TensorFlow* Docker Container Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Intel® Extension for TensorFlow* Docker Container Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docker/tensorflow-serving/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Intel® Extension for TensorFlow* Serving - Docker Container Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Intel® Extension for TensorFlow* Serving - Docker Container Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Intel® Extension for TensorFlow* documentation &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Welcome to Intel® Extension for TensorFlow* documentation &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/build_docs/docs_build_tips.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online Documentation Build Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Online Documentation Build Guide &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/build_docs/source/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Intel ® Extension for TensorFlow* documentation! &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Welcome to Intel ® Extension for TensorFlow* documentation! &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/community/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contributing guidelines &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Contributing guidelines &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/community/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Releases &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Releases &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/design/directory_structure.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Directory Tree Structure &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Directory Tree Structure &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/design/extension_design.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Extension Design &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Extension Design &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/design/how_to_write_custom_op.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>How to write custom op &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>How to write custom op &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/design/optimization/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Optimizations Design &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Optimizations Design &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/design/optimization/oneDNN_object_cache.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oneDNN object cache optimization &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>oneDNN object cache optimization &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/FAQ.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frequently Asked Questions &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Frequently Asked Questions &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/INT8_quantization.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>INT8 Quantization &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>INT8 Quantization &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/OpenXLA_Support_on_GPU.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenXLA Support on GPU via PJRT &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>OpenXLA Support on GPU via PJRT &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/XPUAutoShard.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XPUAutoShard on GPU [Experimental] &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>XPUAutoShard on GPU [Experimental] &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/aamp_tune.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tune Advanced Auto Mixed Precision &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Tune Advanced Auto Mixed Precision &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/advanced_auto_mixed_precision.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Advanced Auto Mixed Precision &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Advanced Auto Mixed Precision &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion latest/docs/guide/environment_variables.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Environment Variables &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g53bc0e2 documentation</title>
<title>Environment Variables &mdash; Intel® Extension for TensorFlow* 0.1.dev1+g1cf4e36 documentation</title>
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
Expand Down
Loading

0 comments on commit 58a1bc3

Please sign in to comment.