|
|
如题,makefile.include里- OFLAG = -O2
- OFLAG_IN = $(OFLAG)
- DEBUG = -O0
复制代码 我改成了- OFLAG = -O3 -march=core-avx2
- OFLAG_IN = $(OFLAG)
- DEBUG = -O0
复制代码- # When compiling on the target machine itself, change this to the
- # relevant target when cross-compiling for another architecture
- VASP_TARGET_CPU ?= -xHOST
复制代码 修改为- # When compiling on the target machine itself, change this to the
- # relevant target when cross-compiling for another architecture
- VASP_TARGET_CPU ?= -march=core-avx2
复制代码 用的makefile.include.intel_omp。请问为了速度快一些还有什么tag可以改吗。不用aocc+aocl编译的原因是集群里没有
|
|