1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-02 09:26:08 +02:00
qmckl/python/test/test_api.py

52 lines
1.1 KiB
Python
Raw Normal View History

2022-05-02 17:52:11 +02:00
"""
This is the test of the Python API of the QMCkl library.
It is the `bench_mos.c` C code adapted from the `qmckl_bench`
repo and translated into Python with some modifications.
"""
2022-05-02 16:46:34 +02:00
from os.path import join
2022-05-02 17:52:11 +02:00
import time
import pyqmckl as pq
from data.data import coord
walk_num = 100
elec_num = 158
ITERMAX = 10
2022-05-02 16:46:34 +02:00
ctx = pq.qmckl_context_create()
2022-05-04 11:47:30 +02:00
try:
pq.qmckl_trexio_read(ctx, 'fake.h5')
except RuntimeError:
print('Error handling check: passed')
2022-05-02 16:46:34 +02:00
fname = join('data', 'Alz_small.h5')
2022-05-04 11:47:30 +02:00
pq.qmckl_trexio_read(ctx, fname)
print('trexio_read: passed')
2022-05-02 17:52:11 +02:00
2022-05-04 11:47:30 +02:00
pq.qmckl_set_electron_walk_num(ctx, walk_num)
2022-05-02 17:52:11 +02:00
2022-05-04 11:47:30 +02:00
mo_num = pq.qmckl_get_mo_basis_mo_num(ctx)
assert mo_num == 404
2022-05-02 17:52:11 +02:00
2022-05-04 11:47:30 +02:00
pq.qmckl_set_electron_coord(ctx, 'T', coord)
2022-05-02 17:52:11 +02:00
size_max = 5*walk_num*elec_num*mo_num
2022-05-04 11:47:30 +02:00
mo_vgl = pq.qmckl_get_mo_basis_mo_vgl(ctx, size_max)
assert mo_vgl.size == size_max
2022-05-02 17:52:11 +02:00
start = time.clock_gettime_ns(time.CLOCK_REALTIME)
for _ in range(ITERMAX):
2022-05-04 11:47:30 +02:00
mo_vgl_in = pq.qmckl_get_mo_basis_mo_vgl_inplace(ctx, size_max)
2022-05-02 17:52:11 +02:00
end = time.clock_gettime_ns(time.CLOCK_REALTIME)
print(f'Time for the calculation of 1 step : {(end-start)*.000001/ITERMAX} ms')