Skip to content

Commit 223aa8b

Browse files
authored
update IO link (#1326)
1 parent 06d21ea commit 223aa8b

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ html:
2323
cp docs/imgs/workflow.png "$(BUILDDIR)/html/docs/imgs/workflow.png"
2424
cp docs/imgs/INC_GUI.gif "$(BUILDDIR)/html/docs/imgs/INC_GUI.gif"
2525
cp docs/imgs/release_data.png "$(BUILDDIR)/html/docs/imgs/release_data.png"
26+
cp "$(BUILDDIR)/html/README.html" "$(BUILDDIR)/html/README.html.tmp"
27+
sed 's/.md/.html/g' "$(BUILDDIR)/html/README.html.tmp" > "$(BUILDDIR)/html/README.html"
28+
rm -f "$(BUILDDIR)/html/README.html.tmp"
2629

2730

2831
# Catch-all target: route all unknown targets to Sphinx using the new

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Intel® Neural Compressor is a critical AI software component in the [Intel® on
2424

2525
## Installation
2626

27-
#### Prerequisites
27+
### Prerequisites
2828

2929
Python version: 3.7, 3.8, 3.9, 3.10
3030

31-
#### Install on Linux
31+
### Install on Linux
3232
- Release binary install
3333
```Shell
3434
# install stable basic version from pip
@@ -166,7 +166,7 @@ Intel® Neural Compressor validated 420+ [examples](./examples) for quantization
166166
<tbody>
167167
<tr>
168168
<td colspan="3" align="center"><a href="docs/design.md">Architecture</a></td>
169-
<td colspan="2" align="center"><a href="./examples">Examples</a></td>
169+
<td colspan="2" align="center"><a href="https://github.com/intel/neural-compressor/tree/master/examples">Examples</a></td>
170170
<td colspan="2" align="center"><a href="docs/bench.md">GUI</a></td>
171171
<td colspan="2" align="center"><a href="docs/api-introduction.md">APIs</a></td>
172172
</tr>

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#
6464
# This is also used if you do content translation via gettext catalogs.
6565
# Usually you set "language" from the command line for these cases.
66-
language = None
66+
# language = None
6767

6868
# List of patterns, relative to source directory, that match files and
6969
# directories to ignore when looking for source files.

neural_coder/docs/AutoQuant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This feature helps automatically enable quantization features on a PyTorch model
1616

1717
## Usage
1818
- PyPI distribution with a one-line API call
19-
- [JupyterLab extension](../extensions/README.md)
19+
- [JupyterLab extension](../extensions/neural_compressor_ext_lab/README.md)
2020

2121
## Example
2222
### PyPI distribution:

0 commit comments

Comments
 (0)