2022-04-12 00:45:59 +02:00
|
|
|
#include "trexio.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define TEST_BACKEND TREXIO_HDF5
|
|
|
|
#define TREXIO_FILE "test_determinant.h5"
|
|
|
|
#define RM_COMMAND "rm -f " TREXIO_FILE
|
|
|
|
#define SIZE 100
|
|
|
|
#define N_CHUNKS 5
|
2022-04-15 15:21:20 +02:00
|
|
|
#define STATE_TEST 2
|
2022-04-22 13:18:29 +02:00
|
|
|
#define MO_NUM 150
|
2022-04-12 00:45:59 +02:00
|
|
|
|
|
|
|
static int test_write_determinant (const char* file_name, const back_end_t backend, const int64_t offset) {
|
|
|
|
|
|
|
|
/* Try to write an array of sparse data into the TREXIO file */
|
|
|
|
|
|
|
|
trexio_t* file = NULL;
|
|
|
|
trexio_exit_code rc;
|
|
|
|
|
|
|
|
/*================= START OF TEST ==================*/
|
|
|
|
|
|
|
|
// open file in 'write' mode
|
|
|
|
file = trexio_open(file_name, 'w', backend, &rc);
|
|
|
|
assert (file != NULL);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
// parameters to be written
|
|
|
|
int64_t* det_list;
|
2022-04-15 11:42:27 +02:00
|
|
|
double* det_coef;
|
2022-04-12 00:45:59 +02:00
|
|
|
|
2022-04-22 13:18:29 +02:00
|
|
|
int mo_num = MO_NUM;
|
2022-04-12 00:45:59 +02:00
|
|
|
|
2022-04-29 12:17:38 +02:00
|
|
|
// write mo_num which will be used to determine the optimal size of int indices
|
|
|
|
if (trexio_has_mo_num(file) == TREXIO_HAS_NOT) {
|
|
|
|
rc = trexio_write_mo_num(file, mo_num);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the number of int64 bit fields per determinant
|
|
|
|
int int_num;
|
|
|
|
rc = trexio_get_int64_num(file, &int_num);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(int_num == (MO_NUM-1)/64 + 1);
|
|
|
|
|
|
|
|
// allocate memory and fill with values to be written
|
|
|
|
det_list = (int64_t*) calloc(2 * int_num * SIZE, sizeof(int64_t));
|
2022-04-15 11:42:27 +02:00
|
|
|
det_coef = (double*) calloc(SIZE, sizeof(double));
|
2022-04-12 00:45:59 +02:00
|
|
|
|
|
|
|
for(int i=0; i<SIZE; i++){
|
|
|
|
det_list[6*i] = 6*i;
|
|
|
|
det_list[6*i+1] = 6*i+1;
|
|
|
|
det_list[6*i+2] = 6*i+2;
|
|
|
|
det_list[6*i+3] = 6*i+3;
|
|
|
|
det_list[6*i+4] = 6*i+4;
|
|
|
|
det_list[6*i+5] = 6*i+5;
|
2022-04-15 11:42:27 +02:00
|
|
|
det_coef[i] = 3.14 + (double) i;
|
2022-04-12 00:45:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// write dataset chunks of sparse data in the file (including FAKE statements)
|
|
|
|
uint64_t chunk_size = (uint64_t) SIZE/N_CHUNKS;
|
|
|
|
uint64_t offset_f = 0UL;
|
|
|
|
uint64_t offset_d = 0UL;
|
|
|
|
if (offset != 0L) offset_f += offset;
|
|
|
|
|
|
|
|
// write n_chunks times using write_sparse
|
|
|
|
for(int i=0; i<N_CHUNKS; ++i){
|
2022-04-15 11:42:27 +02:00
|
|
|
|
2022-04-29 12:17:38 +02:00
|
|
|
rc = trexio_write_determinant_list(file, offset_f, chunk_size, &det_list[2*int_num*offset_d]);
|
2022-04-15 11:42:27 +02:00
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_write_determinant_coefficient(file, offset_f, chunk_size, &det_coef[offset_d]);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
2022-04-15 15:21:20 +02:00
|
|
|
// The block below will write the coefficients for STATE_TEST
|
|
|
|
rc = trexio_set_state(file, STATE_TEST);
|
2022-04-12 00:45:59 +02:00
|
|
|
assert(rc == TREXIO_SUCCESS);
|
2022-04-15 11:42:27 +02:00
|
|
|
|
|
|
|
rc = trexio_write_determinant_coefficient(file, offset_f, chunk_size, &det_coef[offset_d]);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
// set state back to the default 0 (ground state)
|
|
|
|
rc = trexio_set_state(file, 0);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
// =================================================
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
offset_d += chunk_size;
|
|
|
|
offset_f += chunk_size;
|
|
|
|
}
|
|
|
|
|
2022-04-15 15:21:20 +02:00
|
|
|
// manually check the consistency of the determinant_num and coefficient_size after writing
|
|
|
|
int64_t coeff_size = 0L;
|
|
|
|
int64_t determinant_num = 0L;
|
|
|
|
|
|
|
|
rc = trexio_read_determinant_num_64(file, &determinant_num);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_read_determinant_coefficient_size(file, &coeff_size);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(determinant_num == coeff_size);
|
|
|
|
|
|
|
|
rc = trexio_set_state(file, STATE_TEST);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_read_determinant_coefficient_size(file, &coeff_size);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(determinant_num == coeff_size);
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
// close current session
|
|
|
|
rc = trexio_close(file);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
// free the allocated memeory
|
|
|
|
free(det_list);
|
2022-04-15 11:42:27 +02:00
|
|
|
free(det_coef);
|
2022-04-12 00:45:59 +02:00
|
|
|
|
|
|
|
/*================= END OF TEST ==================*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_has_determinant(const char* file_name, const back_end_t backend) {
|
|
|
|
|
|
|
|
/* Try to check the existence of a dataset of sparse data in the TREXIO file */
|
|
|
|
|
|
|
|
trexio_t* file = NULL;
|
|
|
|
trexio_exit_code rc;
|
|
|
|
|
|
|
|
/*================= START OF TEST ==================*/
|
|
|
|
|
|
|
|
// open file
|
|
|
|
file = trexio_open(file_name, 'r', backend, &rc);
|
|
|
|
assert (file != NULL);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
// now check that previously written determinant_list exists
|
|
|
|
rc = trexio_has_determinant_list(file);
|
|
|
|
assert(rc==TREXIO_SUCCESS);
|
|
|
|
|
2022-04-15 11:42:27 +02:00
|
|
|
// now check that previously written determinant_coefficient exists
|
|
|
|
rc = trexio_has_determinant_coefficient(file);
|
|
|
|
assert(rc==TREXIO_SUCCESS);
|
|
|
|
|
2022-04-15 15:21:20 +02:00
|
|
|
// also check for STATE_TEST
|
|
|
|
rc = trexio_set_state(file, STATE_TEST);
|
2022-04-15 11:42:27 +02:00
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_has_determinant_coefficient(file);
|
|
|
|
assert(rc==TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_set_state(file, 0);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
// close current session
|
|
|
|
rc = trexio_close(file);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
/*================= END OF TEST ==================*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_read_determinant (const char* file_name, const back_end_t backend, const int64_t offset) {
|
|
|
|
|
|
|
|
/* Try to read one chunk of dataset of sparse data in the TREXIO file */
|
|
|
|
|
|
|
|
trexio_t* file = NULL;
|
|
|
|
trexio_exit_code rc;
|
|
|
|
|
|
|
|
/*================= START OF TEST ==================*/
|
|
|
|
|
|
|
|
// open file
|
|
|
|
file = trexio_open(file_name, 'r', backend, &rc);
|
|
|
|
assert (file != NULL);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
2022-04-22 13:18:29 +02:00
|
|
|
// compute how many integer bit fields is needed per determinant (for a given spin)
|
|
|
|
int64_t mo_num;
|
|
|
|
rc = trexio_read_mo_num_64(file, &mo_num);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
assert (mo_num == MO_NUM);
|
|
|
|
|
2022-04-29 12:17:38 +02:00
|
|
|
int int_num;
|
|
|
|
rc = trexio_get_int64_num(file, &int_num);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
assert (int_num == (MO_NUM - 1)/64 + 1);
|
2022-04-22 13:18:29 +02:00
|
|
|
|
|
|
|
// define arrays to read into
|
2022-04-12 00:45:59 +02:00
|
|
|
int64_t* det_list_read;
|
2022-04-15 11:42:27 +02:00
|
|
|
double* det_coef_read;
|
|
|
|
double* det_coef_s2_read;
|
|
|
|
double check_diff;
|
2022-04-12 00:45:59 +02:00
|
|
|
uint64_t size_r = 40L;
|
|
|
|
|
2022-04-22 13:18:29 +02:00
|
|
|
det_list_read = (int64_t*) calloc(2*int_num*size_r,sizeof(int64_t));
|
2022-04-15 11:42:27 +02:00
|
|
|
det_coef_read = (double*) calloc(size_r,sizeof(double));
|
|
|
|
det_coef_s2_read = (double*) calloc(size_r,sizeof(double));
|
2022-04-12 00:45:59 +02:00
|
|
|
|
|
|
|
// specify the read parameters, here:
|
|
|
|
// 1 chunk of 10 elements using offset of 40 (i.e. lines No. 40--59) into elements of the array starting from 5
|
|
|
|
int64_t chunk_read = 10L;
|
|
|
|
int64_t offset_file_read = 40L;
|
|
|
|
int offset_data_read = 5;
|
|
|
|
int64_t read_size_check;
|
|
|
|
read_size_check = chunk_read;
|
|
|
|
|
|
|
|
if (offset != 0L) offset_file_read += offset;
|
|
|
|
|
|
|
|
// read one chunk using the aforementioned parameters
|
2022-04-22 13:18:29 +02:00
|
|
|
rc = trexio_read_determinant_list(file, offset_file_read, &chunk_read, &det_list_read[2*int_num*offset_data_read]);
|
2022-04-12 00:45:59 +02:00
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(chunk_read == read_size_check);
|
|
|
|
assert(det_list_read[0] == 0);
|
2022-04-22 13:18:29 +02:00
|
|
|
assert(det_list_read[2*int_num*offset_data_read] == 2 * int_num * (int64_t) (offset_file_read-offset));
|
2022-04-12 00:45:59 +02:00
|
|
|
|
2022-04-15 11:42:27 +02:00
|
|
|
rc = trexio_read_determinant_coefficient(file, offset_file_read, &chunk_read, &det_coef_read[offset_data_read]);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(chunk_read == read_size_check);
|
|
|
|
|
|
|
|
check_diff = det_coef_read[0] - 0.;
|
|
|
|
assert(check_diff*check_diff < 1e-14);
|
|
|
|
|
|
|
|
check_diff = det_coef_read[offset_data_read] - (3.14 + (double) (offset_file_read-offset));
|
|
|
|
//printf("%lf %lf\n", check_diff, det_coef_read[offset_data_read]);
|
|
|
|
assert(check_diff*check_diff < 1e-14);
|
|
|
|
|
|
|
|
// read one chuk of coefficients for a different state
|
2022-04-15 15:21:20 +02:00
|
|
|
rc = trexio_set_state(file, STATE_TEST);
|
2022-04-15 11:42:27 +02:00
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
rc = trexio_read_determinant_coefficient(file, offset_file_read, &chunk_read, &det_coef_s2_read[offset_data_read]);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(chunk_read == read_size_check);
|
|
|
|
|
|
|
|
check_diff = det_coef_s2_read[0] - 0.;
|
|
|
|
assert(check_diff*check_diff < 1e-14);
|
|
|
|
|
|
|
|
rc = trexio_set_state(file, 0);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
// now attempt to read so that one encounters end of file during reading (i.e. offset_file_read + chunk_read > size_max)
|
|
|
|
offset_file_read = 97L;
|
|
|
|
offset_data_read = 1;
|
|
|
|
int64_t eof_read_size_check = SIZE - offset_file_read; // if offset_file_read=97 => only 3 integrals will be read out of total of 100
|
|
|
|
|
|
|
|
if (offset != 0L) offset_file_read += offset;
|
|
|
|
|
2022-04-15 11:42:27 +02:00
|
|
|
chunk_read = read_size_check;
|
2022-04-12 00:45:59 +02:00
|
|
|
// read one chunk that will reach EOF and return TREXIO_END code
|
2022-04-22 13:18:29 +02:00
|
|
|
rc = trexio_read_determinant_list(file, offset_file_read, &chunk_read, &det_list_read[2*int_num*offset_data_read]);
|
2022-04-12 00:45:59 +02:00
|
|
|
/*
|
|
|
|
printf("%s\n", trexio_string_of_error(rc));
|
|
|
|
for (int i=0; i<size_r; i++) {
|
2022-04-15 11:42:27 +02:00
|
|
|
printf("%lld %lld\n", det_list_read[6*i], det_list_read[6*i+5]);
|
2022-04-12 00:45:59 +02:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
assert(rc == TREXIO_END);
|
|
|
|
assert(chunk_read == eof_read_size_check);
|
2022-04-22 13:18:29 +02:00
|
|
|
assert(det_list_read[2*int_num*size_r-1] == 0);
|
|
|
|
assert(det_list_read[2*int_num*offset_data_read] == 2 * int_num * (int64_t) (offset_file_read-offset));
|
2022-04-12 00:45:59 +02:00
|
|
|
|
2022-04-15 11:42:27 +02:00
|
|
|
chunk_read = read_size_check;
|
|
|
|
rc = trexio_read_determinant_coefficient(file, offset_file_read, &chunk_read, &det_coef_read[offset_data_read]);
|
|
|
|
/*
|
|
|
|
printf("%s\n", trexio_string_of_error(rc));
|
|
|
|
for (int i=0; i<size_r; i++) {
|
|
|
|
printf("%lf\n", det_coef_read[i]);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
assert(rc == TREXIO_END);
|
|
|
|
assert(chunk_read == eof_read_size_check);
|
|
|
|
|
|
|
|
check_diff= det_coef_read[size_r-1] - 0.;
|
|
|
|
//printf("%lf %lf\n", check_diff, det_coef_read[size_r-1]);
|
|
|
|
assert(check_diff*check_diff < 1e-14);
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
// check the value of determinant_num
|
|
|
|
int32_t det_num = 0;
|
|
|
|
int32_t size_check = SIZE;
|
|
|
|
if (offset != 0L) size_check += offset;
|
|
|
|
|
|
|
|
rc = trexio_read_determinant_num(file, &det_num);
|
|
|
|
assert(rc == TREXIO_SUCCESS);
|
|
|
|
assert(det_num == size_check);
|
|
|
|
|
2022-04-22 13:18:29 +02:00
|
|
|
|
|
|
|
// check conversion of determinants into orbital lists
|
2022-05-29 11:24:51 +02:00
|
|
|
int64_t size_list = TREXIO_NORB_PER_INT * int_num;
|
2022-04-22 13:18:29 +02:00
|
|
|
int32_t* orb_list_up = (int32_t*) calloc(size_list, sizeof(int32_t));
|
|
|
|
int32_t* orb_list_dn = (int32_t*) calloc(size_list, sizeof(int32_t));
|
|
|
|
int32_t occ_num_up, occ_num_dn;
|
|
|
|
|
|
|
|
rc = trexio_to_orbital_list_up_dn (int_num, &det_list_read[2*int_num*5], orb_list_up, orb_list_dn, &occ_num_up, &occ_num_dn);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
assert (occ_num_up == 14);
|
|
|
|
assert (occ_num_dn == 17);
|
|
|
|
/* // DEBUG printing
|
|
|
|
printf("occ_num_up : %d ; occ_num_dn : %d \n", occ_num_up, occ_num_dn);
|
|
|
|
for (int i=0; i<occ_num_up; i++) {
|
|
|
|
printf("%d ", orb_list_up[i]);
|
|
|
|
}
|
|
|
|
printf("| ");
|
|
|
|
for (int i=0; i<occ_num_dn; i++) {
|
|
|
|
printf("%d ", orb_list_dn[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-04-12 00:45:59 +02:00
|
|
|
// close current session
|
|
|
|
rc = trexio_close(file);
|
|
|
|
assert (rc == TREXIO_SUCCESS);
|
|
|
|
|
|
|
|
// free the memory
|
|
|
|
free(det_list_read);
|
2022-04-15 11:42:27 +02:00
|
|
|
free(det_coef_read);
|
|
|
|
free(det_coef_s2_read);
|
2022-04-22 13:18:29 +02:00
|
|
|
free(orb_list_up);
|
|
|
|
free(orb_list_dn);
|
2022-04-12 00:45:59 +02:00
|
|
|
|
|
|
|
/*================= END OF TEST ==================*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(){
|
|
|
|
|
|
|
|
/*============== Test launcher ================*/
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
rc = system(RM_COMMAND);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// check the first write attempt (SIZE elements written in N_CHUNKS chunks)
|
|
|
|
test_write_determinant (TREXIO_FILE, TEST_BACKEND, 0);
|
|
|
|
test_has_determinant (TREXIO_FILE, TEST_BACKEND);
|
|
|
|
test_read_determinant (TREXIO_FILE, TEST_BACKEND, 0);
|
|
|
|
|
|
|
|
// check the second write attempt (SIZE elements written in N_CHUNKS chunks)
|
|
|
|
test_write_determinant (TREXIO_FILE, TEST_BACKEND, SIZE);
|
|
|
|
test_read_determinant (TREXIO_FILE, TEST_BACKEND, SIZE);
|
|
|
|
|
2022-04-12 11:48:21 +02:00
|
|
|
rc = system(RM_COMMAND);
|
2022-04-12 00:45:59 +02:00
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|