From 2e8d8a9099de705fa9f1ce9b0342c4509ef9b145 Mon Sep 17 00:00:00 2001 From: subarutaro Date: Wed, 9 Dec 2020 15:17:35 +0900 Subject: [PATCH] modify README --- sample/c++/LennardJones/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sample/c++/LennardJones/README.md b/sample/c++/LennardJones/README.md index 1dbbde2..66f6bff 100644 --- a/sample/c++/LennardJones/README.md +++ b/sample/c++/LennardJones/README.md @@ -8,7 +8,15 @@ See kernel_orig.hpp which is the hand-written source code of interaction kernel # how to compile and run make ./main.out - +## for AVX2 mode +use_avx2=yes make +./main.out +## for AVX-512 mode +use_avx512=yes make +./main.out +## for ARM SVE mode ( and modify "CC" in Makefile) +use_arm_sve=yes make +./main.out # expected result If the total energy is conserved, the program shows "test passed" at the end of run. See ./exact which is the detailed log of succcessful run