-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- QDP-JIT clover term (clover_term_llvm_w.h) copied from Chroma for unit testing - clover_term.h file added to type alias to either QDPCloverTermT or LLVMCloverTermT as needed - configure.ac allows --enable-qdpjit to tell the build which clover term to use. - propageted new CloverTermT to testClovDslashFull and testClovInvertFromFile - tidyup: Moved MesField into QPhiX namespace
- Loading branch information
Balint Joo
committed
Jun 21, 2016
1 parent
1ff6a05
commit 583a1c6
Showing
10 changed files
with
1,926 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#ifndef __qphix__test_clover_term_h__ | ||
#define __qphix__test_clover_term_h__ | ||
|
||
#include "qphix/qphix_config.h" | ||
|
||
#ifdef QPHIX_BUILD_CLOVER | ||
#ifdef QPHIX_BUILD_QDPJIT | ||
#warning using LLVM Clover Term | ||
namespace QPhix | ||
{ | ||
|
||
#include "./clover_term_llvm_w.h" | ||
template<typename Phi, typename U> | ||
using CloverTermT = LLVMCloverTermT<Phi,U>; | ||
}; | ||
#else | ||
// Using regular cloverTerm | ||
#warning using QDP Clover Term | ||
|
||
#include "./clover_term_qdp_w.h" | ||
|
||
namespace QPhiX | ||
{ | ||
template<typename Phi,typename U> | ||
using CloverTermT = QDPCloverTermT<Phi,U>; | ||
}; | ||
|
||
#endif // if else defined QDP-JIT | ||
#endif // if else defined BUILD-CLOVER | ||
|
||
#endif |
Oops, something went wrong.