mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-26 06:15:08 +01:00
- Cleaned up unnecessary symlinks
- Switched Intel compiler back to icpx
This commit is contained in:
parent
b9cc63cf8c
commit
d4cb4afb85
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
|||||||
## Compilers, compiler flags & external libs
|
## Compilers, compiler flags & external libs
|
||||||
ifeq ($(ENV),INTEL)
|
ifeq ($(ENV),INTEL)
|
||||||
CXX = icpc
|
CXX = icpx
|
||||||
FC = ifort
|
FC = ifort
|
||||||
ARCH = -march=native
|
ARCH = -march=native
|
||||||
OPT = -O3
|
OPT = -O3
|
||||||
|
@ -1 +0,0 @@
|
|||||||
qmckl/build/lib/libqmckl.a
|
|
@ -1 +0,0 @@
|
|||||||
qmckl/build/lib/libqmckl.la
|
|
@ -1 +0,0 @@
|
|||||||
qmckl/build/lib/libqmckl.so
|
|
@ -1 +0,0 @@
|
|||||||
qmckl/build/lib/libqmckl.so.0
|
|
@ -1 +0,0 @@
|
|||||||
qmckl/build/lib/libqmckl.so.0.0.0
|
|
28
main.cpp
28
main.cpp
@ -1,28 +0,0 @@
|
|||||||
#include "qmckl.h"
|
|
||||||
#include "assert.h"
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
#include <math.h>
|
|
||||||
#ifndef THRESHOLD
|
|
||||||
#define THRESHOLD 1e-3
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
qmckl_context context;
|
|
||||||
context = qmckl_context_create();
|
|
||||||
|
|
||||||
qmckl_exit_code rc;
|
|
||||||
|
|
||||||
const uint64_t Dim = 2;
|
|
||||||
const uint64_t N_updates = 2;
|
|
||||||
const uint64_t Updates_index[2] = {0, 0};
|
|
||||||
const double Updates[4] = {0.0, 0.0, 0.0, 0.0};
|
|
||||||
double Slater_inv[4] = {0.0, 0.0, 0.0, 0.0};
|
|
||||||
|
|
||||||
rc = qmckl_sherman_morrison_c(context, Dim, N_updates, Updates, Updates_index, Slater_inv);
|
|
||||||
assert(rc == QMCKL_SUCCESS);
|
|
||||||
|
|
||||||
assert (qmckl_context_destroy(context) == QMCKL_SUCCESS);
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -27,9 +27,9 @@ export SMROOT
|
|||||||
case $ENV in
|
case $ENV in
|
||||||
intel)
|
intel)
|
||||||
echo "* SM build environment set to 'intel'"
|
echo "* SM build environment set to 'intel'"
|
||||||
export HDF5_CXX=icpc
|
export HDF5_CXX=icpx
|
||||||
export HDF5_CXXLINKER=icpc
|
export HDF5_CXXLINKER=icpx
|
||||||
export HDF5_CLINKER=icpc
|
export HDF5_CLINKER=icpx
|
||||||
export ENV=INTEL
|
export ENV=INTEL
|
||||||
;;
|
;;
|
||||||
llvm)
|
llvm)
|
||||||
|
Loading…
Reference in New Issue
Block a user