mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-26 14:23:47 +01:00
commit
ab661ad785
@ -82,48 +82,97 @@ T1 *outProd(T1 *vec1, T2 *vec2, unsigned int M) {
|
|||||||
return C;
|
return C;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T> T matDet(T **A, unsigned int M) {
|
// // This flat version doesn't work. Get's stuck in an infinite recursion loop.
|
||||||
int det = 0, p, h, k, i, j;
|
// template <typename T> T determinant(T *A, unsigned int M) {
|
||||||
T **temp = new T *[M];
|
// std::cout << "determinant() called..." << std::endl;
|
||||||
for (int i = 0; i < M; i++)
|
// T det = 0;
|
||||||
temp[i] = new T[M];
|
// int p, h, k, i, j;
|
||||||
if (M == 1) {
|
// T *temp = new T[M * M];
|
||||||
return A[0][0];
|
// if (M == 1) {
|
||||||
} else if (M == 2) {
|
// return A[0];
|
||||||
det = (A[0][0] * A[1][1] - A[0][1] * A[1][0]);
|
// } else if (M == 2) {
|
||||||
return det;
|
// det = (A[0] * A[3] - A[1] * A[2]);
|
||||||
} else {
|
// return det;
|
||||||
for (p = 0; p < M; p++) {
|
// } else {
|
||||||
h = 0;
|
// for (p = 0; p < M; p++) {
|
||||||
k = 0;
|
// h = 0;
|
||||||
for (i = 1; i < M; i++) {
|
// k = 0;
|
||||||
for (j = 0; j < M; j++) {
|
// for (i = 1; i < M; i++) {
|
||||||
if (j == p) {
|
// for (j = 0; j < M; j++) {
|
||||||
continue;
|
// if (j == p) {
|
||||||
}
|
// continue;
|
||||||
temp[h][k] = A[i][j];
|
// }
|
||||||
k++;
|
// temp[h * M + k] = A[i * M + j];
|
||||||
if (k == M - 1) {
|
// k++;
|
||||||
h++;
|
// if (k == M - 1) {
|
||||||
k = 0;
|
// h++;
|
||||||
}
|
// k = 0;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
det = det + A[0][p] * pow(-1, p) * matDet(temp, M - 1);
|
// }
|
||||||
}
|
// det = det + A[p] * pow(-1, p) * determinant(temp, M - 1);
|
||||||
return det;
|
// }
|
||||||
}
|
// return det;
|
||||||
delete[] temp;
|
// }
|
||||||
}
|
// delete temp;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// // This version also gets stuck in a recursion loop
|
||||||
|
// template <typename T> T determinant(T **A, unsigned int M) {
|
||||||
|
// int p, h, k, i, j;
|
||||||
|
// T det = 0;
|
||||||
|
// T **temp = new T *[M];
|
||||||
|
// for (int i = 0; i < M; i++) {
|
||||||
|
// temp[i] = new T[M];
|
||||||
|
// }
|
||||||
|
// if (M == 1) {
|
||||||
|
// return A[0][0];
|
||||||
|
// } else if (M == 2) {
|
||||||
|
// det = (A[0][0] * A[1][1] - A[0][1] * A[1][0]);
|
||||||
|
// return det;
|
||||||
|
// } else {
|
||||||
|
// for (p = 0; p < M; p++) {
|
||||||
|
// h = 0;
|
||||||
|
// k = 0;
|
||||||
|
// for (i = 1; i < M; i++) {
|
||||||
|
// for (j = 0; j < M; j++) {
|
||||||
|
// if (j == p) {
|
||||||
|
// continue;
|
||||||
|
// }
|
||||||
|
// temp[h][k] = A[i][j];
|
||||||
|
// k++;
|
||||||
|
// if (k == M - 1) {
|
||||||
|
// h++;
|
||||||
|
// k = 0;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// det = det + A[0][p] * pow(-1, p) * determinant(temp, M - 1);
|
||||||
|
// }
|
||||||
|
// return det;
|
||||||
|
// }
|
||||||
|
// delete[] temp;
|
||||||
|
// }
|
||||||
|
|
||||||
template <typename T> bool is_identity(T *A, unsigned int M, double tolerance) {
|
template <typename T> bool is_identity(T *A, unsigned int M, double tolerance) {
|
||||||
for (unsigned int i = 0; i < M; i++) {
|
for (unsigned int i = 0; i < M; i++) {
|
||||||
for (unsigned int j = 0; j < M; j++) {
|
for (unsigned int j = 0; j < M; j++) {
|
||||||
if (i == j && fabs(A[i * M + j] - 1) > tolerance)
|
if (i == j && std::fabs(A[i * M + j] - 1) > tolerance) {
|
||||||
return false;
|
|
||||||
if (i != j && fabs(A[i * M + j]) > tolerance)
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (i != j && std::fabs(A[i * M + j]) > tolerance) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
bool is_identity2(T *A, unsigned int M, double tolerance) {
|
||||||
|
double det = determinant(A, M);
|
||||||
|
if (det - 1 > tolerance) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -133,7 +182,7 @@ template <typename T> T norm_max(T * A, unsigned int Dim) {
|
|||||||
for (unsigned int i = 0; i < Dim; i++) {
|
for (unsigned int i = 0; i < Dim; i++) {
|
||||||
for (unsigned int j = 0; j < Dim; j++) {
|
for (unsigned int j = 0; j < Dim; j++) {
|
||||||
T delta = A[i * Dim + j];
|
T delta = A[i * Dim + j];
|
||||||
delta = fabs(delta);
|
delta = std::fabs(delta);
|
||||||
if (delta > res) {
|
if (delta > res) {
|
||||||
res = delta;
|
res = delta;
|
||||||
}
|
}
|
||||||
@ -158,7 +207,7 @@ template <typename T> T residual_max(T * A, unsigned int Dim) {
|
|||||||
for (unsigned int i = 0; i < Dim; i++) {
|
for (unsigned int i = 0; i < Dim; i++) {
|
||||||
for (unsigned int j = 0; j < Dim; j++) {
|
for (unsigned int j = 0; j < Dim; j++) {
|
||||||
T delta = A[i * Dim + j] - (i == j);
|
T delta = A[i * Dim + j] - (i == j);
|
||||||
delta = fabs(delta);
|
delta = std::fabs(delta);
|
||||||
if (delta > res) {
|
if (delta > res) {
|
||||||
res = delta;
|
res = delta;
|
||||||
}
|
}
|
||||||
|
@ -5,16 +5,14 @@
|
|||||||
* Verificarlo test report.
|
* Verificarlo test report.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "vfc_hashmap.h"
|
#include "vfc_hashmap.h"
|
||||||
|
|
||||||
#define VAR_NAME(var) #var // Simply returns the name of var into a string
|
#define VAR_NAME(var) #var // Simply returns the name of var into a string
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A probe containing a double value as well as its key, which is needed when
|
* A probe containing a double value as well as its key, which is needed when
|
||||||
* dumping the probes
|
* dumping the probes
|
||||||
@ -27,8 +25,6 @@ struct vfc_probe_node {
|
|||||||
|
|
||||||
typedef struct vfc_probe_node vfc_probe_node;
|
typedef struct vfc_probe_node vfc_probe_node;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The probes structure. It simply acts as a wrapper for a Verificarlo hashmap.
|
* The probes structure. It simply acts as a wrapper for a Verificarlo hashmap.
|
||||||
*/
|
*/
|
||||||
@ -39,7 +35,6 @@ struct vfc_probes {
|
|||||||
|
|
||||||
typedef struct vfc_probes vfc_probes;
|
typedef struct vfc_probes vfc_probes;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialize an empty vfc_probes instance
|
* Initialize an empty vfc_probes instance
|
||||||
*/
|
*/
|
||||||
@ -51,8 +46,6 @@ vfc_probes vfc_init_probes() {
|
|||||||
return probes;
|
return probes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Free all probes
|
* Free all probes
|
||||||
*/
|
*/
|
||||||
@ -73,8 +66,6 @@ void vfc_free_probes(vfc_probes * probes) {
|
|||||||
vfc_hashmap_free(probes->map);
|
vfc_hashmap_free(probes->map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Helper function to generate the key from test and variable name
|
* Helper function to generate the key from test and variable name
|
||||||
*/
|
*/
|
||||||
@ -88,8 +79,6 @@ char * gen_probe_key(char * testName, char * varName) {
|
|||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Helper function to detect forbidden character ',' in the keys
|
* Helper function to detect forbidden character ',' in the keys
|
||||||
*/
|
*/
|
||||||
@ -99,29 +88,22 @@ void validate_probe_key(char * str) {
|
|||||||
|
|
||||||
for (unsigned int i = 0; i < len; i++) {
|
for (unsigned int i = 0; i < len; i++) {
|
||||||
if (str[i] == ',') {
|
if (str[i] == ',') {
|
||||||
fprintf(
|
fprintf(stderr,
|
||||||
stderr,
|
|
||||||
"Error [verificarlo]: One of your probes has a ',' in its test \
|
"Error [verificarlo]: One of your probes has a ',' in its test \
|
||||||
or variable name (\"%s\"), which is forbidden\n",
|
or variable name (\"%s\"), which is forbidden\n",
|
||||||
str
|
str);
|
||||||
);
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Add a new probe. If an issue with the key is detected (forbidden characters or
|
* Add a new probe. If an issue with the key is detected (forbidden characters
|
||||||
* a duplicate key), an error will be thrown.
|
* or a duplicate key), an error will be thrown.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int vfc_put_probe(
|
int vfc_put_probe(vfc_probes *probes, char *testName, char *varName,
|
||||||
vfc_probes * probes,
|
double val) {
|
||||||
char * testName, char * varName,
|
|
||||||
double val
|
|
||||||
) {
|
|
||||||
|
|
||||||
if (probes == NULL) {
|
if (probes == NULL) {
|
||||||
return 1;
|
return 1;
|
||||||
@ -137,17 +119,14 @@ int vfc_put_probe(
|
|||||||
|
|
||||||
// Look for a duplicate key
|
// Look for a duplicate key
|
||||||
vfc_probe_node *oldProbe = (vfc_probe_node *)vfc_hashmap_get(
|
vfc_probe_node *oldProbe = (vfc_probe_node *)vfc_hashmap_get(
|
||||||
probes->map, vfc_hashmap_str_function(key)
|
probes->map, vfc_hashmap_str_function(key));
|
||||||
);
|
|
||||||
|
|
||||||
if (oldProbe != NULL) {
|
if (oldProbe != NULL) {
|
||||||
if (strcmp(key, oldProbe->key) == 0) {
|
if (strcmp(key, oldProbe->key) == 0) {
|
||||||
fprintf(
|
fprintf(stderr,
|
||||||
stderr,
|
|
||||||
"Error [verificarlo]: you have a duplicate error with one of \
|
"Error [verificarlo]: you have a duplicate error with one of \
|
||||||
your probes (\"%s\"). Please make sure to use different names.\n",
|
your probes (\"%s\"). Please make sure to use different names.\n",
|
||||||
key
|
key);
|
||||||
);
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -157,15 +136,11 @@ int vfc_put_probe(
|
|||||||
newProbe->key = key;
|
newProbe->key = key;
|
||||||
newProbe->value = val;
|
newProbe->value = val;
|
||||||
|
|
||||||
vfc_hashmap_insert(
|
vfc_hashmap_insert(probes->map, vfc_hashmap_str_function(key), newProbe);
|
||||||
probes->map, vfc_hashmap_str_function(key), newProbe
|
|
||||||
);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Remove (free) an element from the hash table
|
* Remove (free) an element from the hash table
|
||||||
*/
|
*/
|
||||||
@ -184,8 +159,6 @@ int vfc_remove_probe(vfc_probes * probes, char * testName, char * varName) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return the number of probes stored in the hashmap
|
* Return the number of probes stored in the hashmap
|
||||||
*/
|
*/
|
||||||
@ -194,8 +167,6 @@ unsigned int vfc_num_probes(vfc_probes * probes) {
|
|||||||
return vfc_hashmap_num_items(probes->map);
|
return vfc_hashmap_num_items(probes->map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Dump probes in a .csv file (the double values are converted to hex), then
|
* Dump probes in a .csv file (the double values are converted to hex), then
|
||||||
* free it.
|
* free it.
|
||||||
@ -210,10 +181,8 @@ int vfc_dump_probes(vfc_probes * probes) {
|
|||||||
// Get export path from the VFC_PROBES_OUTPUT env variable
|
// Get export path from the VFC_PROBES_OUTPUT env variable
|
||||||
char *exportPath = getenv("VFC_PROBES_OUTPUT");
|
char *exportPath = getenv("VFC_PROBES_OUTPUT");
|
||||||
if (!exportPath) {
|
if (!exportPath) {
|
||||||
printf(
|
printf("Warning [verificarlo]: VFC_PROBES_OUTPUT is not set, probes will \
|
||||||
"Warning [verificarlo]: VFC_PROBES_OUTPUT is not set, probes will \
|
not be dumped\n");
|
||||||
not be dumped\n"
|
|
||||||
);
|
|
||||||
vfc_free_probes(probes);
|
vfc_free_probes(probes);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -221,12 +190,10 @@ int vfc_dump_probes(vfc_probes * probes) {
|
|||||||
FILE *fp = fopen(exportPath, "w");
|
FILE *fp = fopen(exportPath, "w");
|
||||||
|
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
fprintf(
|
fprintf(stderr,
|
||||||
stderr,
|
|
||||||
"Error [verificarlo]: impossible to open the CSV file to save your \
|
"Error [verificarlo]: impossible to open the CSV file to save your \
|
||||||
probes (\"%s\")\n",
|
probes (\"%s\")\n",
|
||||||
exportPath
|
exportPath);
|
||||||
);
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -238,11 +205,7 @@ int vfc_dump_probes(vfc_probes * probes) {
|
|||||||
for (int i = 0; i < probes->map->capacity; i++) {
|
for (int i = 0; i < probes->map->capacity; i++) {
|
||||||
probe = (vfc_probe_node *)get_value_at(probes->map->items, i);
|
probe = (vfc_probe_node *)get_value_at(probes->map->items, i);
|
||||||
if (probe != NULL) {
|
if (probe != NULL) {
|
||||||
fprintf(
|
fprintf(fp, "%s,%a\n", probe->key, probe->value);
|
||||||
fp, "%s,%a\n",
|
|
||||||
probe->key,
|
|
||||||
probe->value
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,10 +25,10 @@ void selectLargestDenominator(unsigned int l, unsigned int N_updates,
|
|||||||
for (unsigned int j = lbar; j < N_updates + 1; j++) {
|
for (unsigned int j = lbar; j < N_updates + 1; j++) {
|
||||||
index = p[j];
|
index = p[j];
|
||||||
component = Updates_index[index - 1];
|
component = Updates_index[index - 1];
|
||||||
breakdown = abs(1 + ylk[l][index][component]);
|
breakdown = std::fabs(1 + ylk[l][index][component]);
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
std::cout << "Inside selectLargestDenominator()" << std::endl;
|
std::cout << "Inside selectLargestDenominator()" << std::endl;
|
||||||
std::cout << "breakdown = abs(1 + ylk[" << l << "][" << index << "]["
|
std::cout << "breakdown = fabs(1 + ylk[" << l << "][" << index << "]["
|
||||||
<< component << "]) = " << breakdown << std::endl;
|
<< component << "]) = " << breakdown << std::endl;
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
@ -76,7 +76,7 @@ void MaponiA3(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
<< "] = " << beta << std::endl;
|
<< "] = " << beta << std::endl;
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
#endif
|
#endif
|
||||||
if (fabs(beta) < threshold()) {
|
if (std::fabs(beta) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
@ -208,7 +208,7 @@ void MaponiA3S(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
<< "] = " << beta << std::endl;
|
<< "] = " << beta << std::endl;
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
#endif
|
#endif
|
||||||
if (fabs(beta) < threshold()) {
|
if (std::fabs(beta) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
for (unsigned int i = 1; i < Dim + 1; i++) {
|
for (unsigned int i = 1; i < Dim + 1; i++) {
|
||||||
@ -237,7 +237,10 @@ void MaponiA3S(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
(i == j) - (j == component - 1) * ylk[l][p[l + 1]][i + 1] * ibeta;
|
(i == j) - (j == component - 1) * ylk[l][p[l + 1]][i + 1] * ibeta;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
matMul(Al, last, next, Dim); tmp = next; next = last; last = tmp;
|
matMul(Al, last, next, Dim);
|
||||||
|
tmp = next;
|
||||||
|
next = last;
|
||||||
|
last = tmp;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
showMatrix(last, Dim, "last");
|
showMatrix(last, Dim, "last");
|
||||||
#endif
|
#endif
|
||||||
|
@ -23,7 +23,7 @@ void SM1(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
|
|
||||||
// Denominator
|
// Denominator
|
||||||
double den = 1 + C[Updates_index[l] - 1];
|
double den = 1 + C[Updates_index[l] - 1];
|
||||||
if (fabs(den) < threshold()) {
|
if (std::fabs(den) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
@ -71,7 +71,7 @@ void SM2(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
|
|
||||||
// Denominator
|
// Denominator
|
||||||
double den = 1 + C[Updates_index[l] - 1];
|
double den = 1 + C[Updates_index[l] - 1];
|
||||||
if (fabs(den) < threshold()) {
|
if (std::fabs(den) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ void SM3(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
|
|
||||||
// Denominator
|
// Denominator
|
||||||
double den = 1 + C[Updates_index[l] - 1];
|
double den = 1 + C[Updates_index[l] - 1];
|
||||||
if (fabs(den) < threshold()) {
|
if (std::fabs(den) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
@ -173,7 +173,8 @@ void SM3(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Sherman Morrison, mix between SM3 + SM2
|
// Sherman Morrison, mix between SM3 + SM2
|
||||||
// Leave zero denominators for later (SM3), and when none are left then split (SM2)
|
// Leave zero denominators for later (SM3), and when none are left then split
|
||||||
|
// (SM2)
|
||||||
void SM4(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
void SM4(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
||||||
double *Updates, unsigned int *Updates_index) {
|
double *Updates, unsigned int *Updates_index) {
|
||||||
std::cerr << "Called SM4 with " << N_updates << " updates" << std::endl;
|
std::cerr << "Called SM4 with " << N_updates << " updates" << std::endl;
|
||||||
@ -197,7 +198,7 @@ void SM4(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
|
|
||||||
// Denominator
|
// Denominator
|
||||||
double den = 1 + C[Updates_index[l] - 1];
|
double den = 1 + C[Updates_index[l] - 1];
|
||||||
if (fabs(den) < threshold()) {
|
if (std::fabs(den) < threshold()) {
|
||||||
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
std::cerr << "Breakdown condition triggered at " << Updates_index[l]
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
@ -237,27 +238,23 @@ void SM4(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
|||||||
}
|
}
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
void SM1_f(double **linSlater_inv, unsigned int *Dim,
|
void SM1_f(double **linSlater_inv, unsigned int *Dim, unsigned int *N_updates,
|
||||||
unsigned int *N_updates, double **linUpdates,
|
double **linUpdates, unsigned int **Updates_index) {
|
||||||
unsigned int **Updates_index) {
|
|
||||||
SM1(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
SM1(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SM2_f(double **linSlater_inv, unsigned int *Dim,
|
void SM2_f(double **linSlater_inv, unsigned int *Dim, unsigned int *N_updates,
|
||||||
unsigned int *N_updates, double **linUpdates,
|
double **linUpdates, unsigned int **Updates_index) {
|
||||||
unsigned int **Updates_index) {
|
|
||||||
SM2(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
SM2(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SM3_f(double **linSlater_inv, unsigned int *Dim,
|
void SM3_f(double **linSlater_inv, unsigned int *Dim, unsigned int *N_updates,
|
||||||
unsigned int *N_updates, double **linUpdates,
|
double **linUpdates, unsigned int **Updates_index) {
|
||||||
unsigned int **Updates_index) {
|
|
||||||
SM3(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
SM3(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SM4_f(double **linSlater_inv, unsigned int *Dim,
|
void SM4_f(double **linSlater_inv, unsigned int *Dim, unsigned int *N_updates,
|
||||||
unsigned int *N_updates, double **linUpdates,
|
double **linUpdates, unsigned int **Updates_index) {
|
||||||
unsigned int **Updates_index) {
|
|
||||||
SM4(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
SM4(*linSlater_inv, *Dim, *N_updates, *linUpdates, *Updates_index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// main.cpp
|
// main.cpp
|
||||||
#include "SM_Maponi.hpp"
|
|
||||||
#include "SM_Helpers.hpp"
|
#include "SM_Helpers.hpp"
|
||||||
|
#include "SM_Maponi.hpp"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
@ -10,7 +10,8 @@ int main() {
|
|||||||
// Declare, allocate all vectors and matrices and fill them with zeros
|
// Declare, allocate all vectors and matrices and fill them with zeros
|
||||||
unsigned int *Ar_index = new unsigned int[M];
|
unsigned int *Ar_index = new unsigned int[M];
|
||||||
double *A = new double[M * M]; // The matrix to be inverted
|
double *A = new double[M * M]; // The matrix to be inverted
|
||||||
double *A0 = new double[M*M]; // A diagonal matrix with the digonal elements of A
|
double *A0 =
|
||||||
|
new double[M * M]; // A diagonal matrix with the digonal elements of A
|
||||||
double *Ar = new double[M * M]; // The update matrix
|
double *Ar = new double[M * M]; // The update matrix
|
||||||
double *A0_inv = new double[M * M]; // The inverse
|
double *A0_inv = new double[M * M]; // The inverse
|
||||||
|
|
||||||
@ -24,9 +25,15 @@ int main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Initialize A with M=3 and fill acc. to Eq. (17) from paper
|
// Initialize A with M=3 and fill acc. to Eq. (17) from paper
|
||||||
A[0] = 1; A[3] = 1; A[6] = -1;
|
A[0] = 1;
|
||||||
A[1] = 1; A[4] = 1; A[7] = 0;
|
A[3] = 1;
|
||||||
A[2] = -1; A[5] = 0; A[8] = -1;
|
A[6] = -1;
|
||||||
|
A[1] = 1;
|
||||||
|
A[4] = 1;
|
||||||
|
A[7] = 0;
|
||||||
|
A[2] = -1;
|
||||||
|
A[5] = 0;
|
||||||
|
A[8] = -1;
|
||||||
|
|
||||||
showMatrix(A, M, "A");
|
showMatrix(A, M, "A");
|
||||||
|
|
||||||
@ -42,7 +49,8 @@ int main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Define pointers dim and n_updates to use in Sherman-Morrison(...) function call
|
// Define pointers dim and n_updates to use in Sherman-Morrison(...) function
|
||||||
|
// call
|
||||||
MaponiA3(A0_inv, M, M, Ar, Ar_index);
|
MaponiA3(A0_inv, M, M, Ar, Ar_index);
|
||||||
showMatrix(A0_inv, M, "A0_inv");
|
showMatrix(A0_inv, M, "A0_inv");
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "hdf5/serial/hdf5.h"
|
|
||||||
#include "hdf5/serial/H5Cpp.h"
|
#include "hdf5/serial/H5Cpp.h"
|
||||||
|
#include "hdf5/serial/hdf5.h"
|
||||||
|
|
||||||
|
#include "SM_Helpers.hpp"
|
||||||
#include "SM_Maponi.hpp"
|
#include "SM_Maponi.hpp"
|
||||||
#include "SM_Standard.hpp"
|
#include "SM_Standard.hpp"
|
||||||
#include "SM_Helpers.hpp"
|
|
||||||
|
|
||||||
using namespace H5;
|
using namespace H5;
|
||||||
// #define DEBUG
|
// #define DEBUG
|
||||||
@ -55,7 +55,8 @@ int test_cycle(H5File file, int cycle, std::string version, double tolerance) {
|
|||||||
for (j = 0; j < nupdates; j++) {
|
for (j = 0; j < nupdates; j++) {
|
||||||
for (i = 0; i < dim; i++) {
|
for (i = 0; i < dim; i++) {
|
||||||
col = col_update_index[j];
|
col = col_update_index[j];
|
||||||
u[i + j*dim] = updates[i + j*dim] - slater_matrix[i*dim + (col - 1)];
|
u[i + j * dim] =
|
||||||
|
updates[i + j * dim] - slater_matrix[i * dim + (col - 1)];
|
||||||
slater_matrix[i * dim + (col - 1)] = updates[i + j * dim];
|
slater_matrix[i * dim + (col - 1)] = updates[i + j * dim];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -99,14 +100,27 @@ int test_cycle(H5File file, int cycle, std::string version, double tolerance) {
|
|||||||
|
|
||||||
double res_max = residual_max(res, dim);
|
double res_max = residual_max(res, dim);
|
||||||
double res2 = residual_frobenius2(res, dim);
|
double res2 = residual_frobenius2(res, dim);
|
||||||
std::cout << "Residual = " << version << " " << cycle << " " << res_max << " " << res2 << std::endl;
|
// double det;
|
||||||
|
// double **tmp = new double *[dim];
|
||||||
|
// for (int i = 0; i < dim; i++) {
|
||||||
|
// tmp[i] = new double[dim];
|
||||||
|
// for (int j = 0; j < dim; j++) {
|
||||||
|
// tmp[i][j] = res[i * dim + j];
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// det = determinant(tmp, dim);
|
||||||
|
// delete[] tmp;
|
||||||
|
// std::cout << "Residual = " << version << " " << cycle << " " << res_max <<
|
||||||
|
// " "
|
||||||
|
// << res2 << " " << det << std::endl;
|
||||||
|
std::cout << "Residual = " << version << " " << cycle << " " << res_max << " "
|
||||||
|
<< res2 << std::endl;
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
showMatrix(res, dim, "Result");
|
showMatrix(res, dim, "Result");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
delete [] res, updates, u, col_update_index,
|
delete[] res, updates, u, col_update_index, slater_matrix, slater_inverse;
|
||||||
slater_matrix, slater_inverse;
|
|
||||||
|
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
@ -114,7 +128,9 @@ int test_cycle(H5File file, int cycle, std::string version, double tolerance) {
|
|||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
if (argc != 5) {
|
if (argc != 5) {
|
||||||
std::cerr << "Execute from within 'datasets/'" << std::endl;
|
std::cerr << "Execute from within 'datasets/'" << std::endl;
|
||||||
std::cerr << "usage: test_h5 <version> <start cycle> <stop cycle> <tolerance>" << std::endl;
|
std::cerr
|
||||||
|
<< "usage: test_h5 <version> <start cycle> <stop cycle> <tolerance>"
|
||||||
|
<< std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
std::string version(argv[1]);
|
std::string version(argv[1]);
|
||||||
@ -127,12 +143,9 @@ int main(int argc, char **argv) {
|
|||||||
for (int cycle = start_cycle; cycle < stop_cycle + 1; cycle++) {
|
for (int cycle = start_cycle; cycle < stop_cycle + 1; cycle++) {
|
||||||
ok = test_cycle(file, cycle, version, tolerance);
|
ok = test_cycle(file, cycle, version, tolerance);
|
||||||
if (ok) {
|
if (ok) {
|
||||||
std::cerr << "ok -- cycle " << std::to_string(cycle)
|
std::cerr << "ok -- cycle " << std::to_string(cycle) << std::endl;
|
||||||
<< std::endl;
|
} else {
|
||||||
}
|
std::cerr << "failed -- cycle " << std::to_string(cycle) << std::endl;
|
||||||
else {
|
|
||||||
std::cerr << "failed -- cycle " << std::to_string(cycle)
|
|
||||||
<< std::endl;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,17 +3,16 @@
|
|||||||
// cycles in a CSV file, instead of accepting a start and an end cycle (which
|
// cycles in a CSV file, instead of accepting a start and an end cycle (which
|
||||||
// makes it easier to select the exact cycles we are interested in with vfc_ci).
|
// makes it easier to select the exact cycles we are interested in with vfc_ci).
|
||||||
|
|
||||||
#include <hdf5/serial/hdf5.h>
|
|
||||||
#include <hdf5/serial/H5Cpp.h>
|
#include <hdf5/serial/H5Cpp.h>
|
||||||
|
#include <hdf5/serial/hdf5.h>
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "SM_Helpers.hpp"
|
||||||
#include "SM_Maponi.hpp"
|
#include "SM_Maponi.hpp"
|
||||||
#include "SM_Standard.hpp"
|
#include "SM_Standard.hpp"
|
||||||
#include "SM_Helpers.hpp"
|
|
||||||
#include "vfc_probe.h"
|
#include "vfc_probe.h"
|
||||||
|
|
||||||
using namespace H5;
|
using namespace H5;
|
||||||
@ -49,7 +48,8 @@ std::vector<int> get_cycles_list(std::string path) {
|
|||||||
return cycles_list;
|
return cycles_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
int test_cycle(H5File file, int cycle, std::string version, vfc_probes * probes) {
|
int test_cycle(H5File file, int cycle, std::string version,
|
||||||
|
vfc_probes *probes) {
|
||||||
|
|
||||||
/* Read the data */
|
/* Read the data */
|
||||||
|
|
||||||
@ -59,7 +59,8 @@ int test_cycle(H5File file, int cycle, std::string version, vfc_probes * probes)
|
|||||||
// being zero-padded. This is used when calling vfc_put_probe later on.
|
// being zero-padded. This is used when calling vfc_put_probe later on.
|
||||||
std::string zero_padded_group = std::to_string(cycle);
|
std::string zero_padded_group = std::to_string(cycle);
|
||||||
zero_padded_group = "cycle_" +
|
zero_padded_group = "cycle_" +
|
||||||
std::string(5 - zero_padded_group.length(), '0') + zero_padded_group;
|
std::string(5 - zero_padded_group.length(), '0') +
|
||||||
|
zero_padded_group;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
file.openGroup(group);
|
file.openGroup(group);
|
||||||
@ -72,7 +73,6 @@ int test_cycle(H5File file, int cycle, std::string version, vfc_probes * probes)
|
|||||||
read_int(file, group + "/slater_matrix_dim", &dim);
|
read_int(file, group + "/slater_matrix_dim", &dim);
|
||||||
read_int(file, group + "/nupdates", &nupdates);
|
read_int(file, group + "/nupdates", &nupdates);
|
||||||
|
|
||||||
|
|
||||||
double *slater_matrix = new double[dim * dim];
|
double *slater_matrix = new double[dim * dim];
|
||||||
read_double(file, group + "/slater_matrix", slater_matrix);
|
read_double(file, group + "/slater_matrix", slater_matrix);
|
||||||
|
|
||||||
@ -100,7 +100,8 @@ int test_cycle(H5File file, int cycle, std::string version, vfc_probes * probes)
|
|||||||
for (j = 0; j < nupdates; j++) {
|
for (j = 0; j < nupdates; j++) {
|
||||||
for (i = 0; i < dim; i++) {
|
for (i = 0; i < dim; i++) {
|
||||||
col = col_update_index[j];
|
col = col_update_index[j];
|
||||||
u[i + j*dim] = updates[i + j*dim] - slater_matrix[i*dim + (col - 1)];
|
u[i + j * dim] =
|
||||||
|
updates[i + j * dim] - slater_matrix[i * dim + (col - 1)];
|
||||||
slater_matrix[i * dim + (col - 1)] = updates[i + j * dim];
|
slater_matrix[i * dim + (col - 1)] = updates[i + j * dim];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -139,11 +140,11 @@ int test_cycle(H5File file, int cycle, std::string version, vfc_probes * probes)
|
|||||||
showMatrix(res, dim, "Result");
|
showMatrix(res, dim, "Result");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
vfc_put_probe(probes, &(zero_padded_group)[0], &("res_max_" + version)[0], res_max);
|
vfc_put_probe(probes, &(zero_padded_group)[0], &("res_max_" + version)[0],
|
||||||
|
res_max);
|
||||||
vfc_put_probe(probes, &(zero_padded_group)[0], &("res2_" + version)[0], res2);
|
vfc_put_probe(probes, &(zero_padded_group)[0], &("res2_" + version)[0], res2);
|
||||||
|
|
||||||
delete [] res, updates, u, col_update_index,
|
delete[] res, updates, u, col_update_index, slater_matrix, slater_inverse;
|
||||||
slater_matrix, slater_inverse;
|
|
||||||
|
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
@ -165,12 +166,9 @@ int main(int argc, char **argv) {
|
|||||||
for (int i = 0; i < cycles_list.size(); i++) {
|
for (int i = 0; i < cycles_list.size(); i++) {
|
||||||
ok = test_cycle(file, cycles_list[i], version, &probes);
|
ok = test_cycle(file, cycles_list[i], version, &probes);
|
||||||
if (ok) {
|
if (ok) {
|
||||||
std::cout << "ok -- cycle " << std::to_string(i)
|
std::cout << "ok -- cycle " << std::to_string(i) << std::endl;
|
||||||
<< std::endl;
|
} else {
|
||||||
}
|
std::cerr << "failed -- cycle " << std::to_string(i) << std::endl;
|
||||||
else {
|
|
||||||
std::cerr << "failed -- cycle " << std::to_string(i)
|
|
||||||
<< std::endl;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
15
tools/restyle.sh
Executable file
15
tools/restyle.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
STYLE='--style=LLVM'
|
||||||
|
FORMATER='clang-format -i'
|
||||||
|
|
||||||
|
if [[ -z $SMVARS ]]
|
||||||
|
then
|
||||||
|
echo '$SMVARS is not set. Please source '/path/to/Sherman-Morrison/smvars.sh''
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for ext in c cpp h hpp
|
||||||
|
do
|
||||||
|
find $SMROOT -type f -iname "*.${ext}" -exec echo "$FORMATER $STYLE" {} \;
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user