Skip to content

Commit 3827826

Browse files
kaikaiyaomengfei25
andauthored
modify typos in readme (#1300)
Co-authored-by: mengfeil <mengfei.li@intel.com>
1 parent 5533414 commit 3827826

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

neural_coder/docs/IntelCPU_PerformanceSetting.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Intel CPU Platforms: Best Performance Setting
22
### Install MKL, OpenMP and JEMALLOC
3-
Through CONDA is the simplest way:
3+
The simplest way for installation is through ```conda install```:
44
```bash
55
conda install -y mkl mkl-include jemalloc
66
```
@@ -15,17 +15,17 @@ Check if your ```CONDA_PREFIX``` has a value by:
1515
```bash
1616
echo ${CONDA_PREFIX}
1717
```
18-
If it's empty, it means that you're not in a traditional CONDA environment, you need to find the location of the ```.so.``` files by:
18+
If it is empty, it means that you are not in a traditional CONDA environment, you need to find the location of the ```.so``` files by:
1919
```bash
2020
find / -name "libjemalloc.so"
2121
find / -name "libiomp5.so"
2222
```
23-
It will show the path these file were installed into, for example:
23+
It will show the path these files were installed into. For example:
2424
```bash
2525
/home/name/lib/libjemalloc.so
2626
/home/name/lib/libiomp5.so
2727
```
28-
And then you should export this path as ```CONDA_PREFIX```:
28+
And then you should ```export``` this path as ```CONDA_PREFIX```:
2929
```bash
3030
export CONDA_PREFIX="/home/name"
3131
```
@@ -40,11 +40,11 @@ export DNNL_PRIMITIVE_CACHE_CAPACITY=1024
4040
```
4141

4242
### Frequency Governers
43-
Check frequency governer state on your machine:
43+
Check the frequency governer state on your machine:
4444
```bash
4545
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
4646
```
47-
If is shows ```powersave``` instead of ```performance```, execute:
47+
If it shows ```powersave``` instead of ```performance```, execute:
4848
```bash
4949
echo "performance" | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
5050
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor

0 commit comments

Comments
 (0)