forked from mindspore-Ecosystem/mindspore
add numa info to wide&deep README
This commit is contained in:
parent
a094ff5b7d
commit
12faaa2462
|
@ -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:
|
||||
|
|
|
@ -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…
Reference in New Issue