[test-suite] r349505 - [test-suite] Adding CoMD Proxy App

Brian Homerding via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 18 08:15:15 PST 2018


Author: homerdin
Date: Tue Dec 18 08:15:15 2018
New Revision: 349505

URL: http://llvm.org/viewvc/llvm-project?rev=349505&view=rev
Log:
[test-suite] Adding CoMD Proxy App

Adding floating point tolerance.

CoMD is a reference implementation of typical classical molecular dynamics
algorithms and workloads.  This is a serial build for the test-suite with eam
potential.

Link:
https://github.com/exmatex/CoMD

Reviewers: Meinersbur

Differential Revision: https://reviews.llvm.org/D55726

Modified:
    test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/CMakeLists.txt
    test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile

Modified: test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/CMakeLists.txt?rev=349505&r1=349504&r2=349505&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/CMakeLists.txt (original)
+++ test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/CMakeLists.txt Tue Dec 18 08:15:15 2018
@@ -1,6 +1,7 @@
 list(APPEND CFLAGS -std=c99 -DDOUBLE)
 list(APPEND LDFLAGS -lm)
 
+set(FP_TOLERANCE 0.00001)
 set(RUN_OPTIONS -e -x 10 -y 10 -z 10 --potDir .)
 llvm_multisource(CoMD)
 llvm_test_data(CoMD Cu_u6.eam) 

Modified: test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile?rev=349505&r1=349504&r2=349505&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile Tue Dec 18 08:15:15 2018
@@ -1,6 +1,7 @@
 LEVEL = ../../../..
 
 PROG     = CoMD
+FP_TOLERANCE = 0.00001
 CPPFLAGS = -std=c99 -DDOUBLE
 LDFLAGS  = -lm
 RUN_OPTIONS = -e -x 10 -y 10 -z 10 --potDir .




More information about the llvm-commits mailing list