Skip to content

Commit a0e3c5f

Browse files
committed
[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 llvm-svn: 349505
1 parent 39e6f18 commit a0e3c5f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
list(APPEND CFLAGS -std=c99 -DDOUBLE)
22
list(APPEND LDFLAGS -lm)
33

4+
set(FP_TOLERANCE 0.00001)
45
set(RUN_OPTIONS -e -x 10 -y 10 -z 10 --potDir .)
56
llvm_multisource(CoMD)
67
llvm_test_data(CoMD Cu_u6.eam)

MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
LEVEL = ../../../..
22

33
PROG = CoMD
4+
FP_TOLERANCE = 0.00001
45
CPPFLAGS = -std=c99 -DDOUBLE
56
LDFLAGS = -lm
67
RUN_OPTIONS = -e -x 10 -y 10 -z 10 --potDir .

0 commit comments

Comments
 (0)