Browse Source

add numa info to wide&deep README

pull/15154/head
xiefangqi 4 years ago
parent
commit
12faaa2462
2 changed files with 32 additions and 0 deletions
  1. +16
    -0
      model_zoo/official/recommend/wide_and_deep/README.md
  2. +16
    -0
      model_zoo/official/recommend/wide_and_deep/README_CN.md

+ 16
- 0
model_zoo/official/recommend/wide_and_deep/README.md View File

@@ -345,6 +345,22 @@ Note: The result of GPU is tested under the master version. The parameter server
| Outputs | AUC |
| Accuracy | AUC=0.809 |

### Ultimate performance experience

MindSpore support numa bind feature to get better performance from v1.1.1. Need to install numa library:

- ubuntu : sudo apt-get install libnuma-dev
- centos/euleros : sudo yum install numactl-devel

v1.1.1 support config interface to open numa bind feature:

import mindspore.dataset as de
de.config.set_numa_enable(True)

v1.2.0 support environment variable further to open numa bind feature:

export DATASET_ENABLE_NUMA=True

# [Description of Random Situation](#contents)

There are three random situations:


+ 16
- 0
model_zoo/official/recommend/wide_and_deep/README_CN.md View File

@@ -347,6 +347,22 @@ python eval.py
| 输出 | AUC |
| 准确率 | AUC=0.809 |
### 极致性能体验
MindSpore从1.1.1版本之后,支持通过开启numa亲和获得极致的性能,需要安装numa库:
- ubuntu : sudo apt-get install libnuma-dev
- centos/euleros : sudo yum install numactl-devel
1.1.1版本支持设置config的方式开启numa亲和:
import mindspore.dataset as de
de.config.set_numa_enable(True)
1.2.0版本进一步支持了环境变量开启numa亲和:
export DATASET_ENABLE_NUMA=True
# 随机情况说明
以下三种随机情况:


Loading…
Cancel
Save