(git:21ef868)
Loading...
Searching...
No Matches
pao_model.F
Go to the documentation of this file.
1!--------------------------------------------------------------------------------------------------!
2! CP2K: A general program to perform molecular dynamics simulations !
3! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
4! !
5! SPDX-License-Identifier: GPL-2.0-or-later !
6!--------------------------------------------------------------------------------------------------!
7
8! **************************************************************************************************
9!> \brief Module for equivariant PAO-ML based on PyTorch.
10!> \author Ole Schuett
11! **************************************************************************************************
13 USE omp_lib, ONLY: omp_init_lock,&
14 omp_set_lock,&
15 omp_unset_lock
19 USE cell_types, ONLY: cell_type
20 USE cp_dbcsr_api, ONLY: dbcsr_get_info,&
27 USE kinds, ONLY: default_path_length,&
29 dp,&
30 int_8,&
31 sp
33 USE pao_types, ONLY: pao_env_type,&
36 USE physcon, ONLY: angstrom
39 USE qs_kind_types, ONLY: get_qs_kind,&
41 USE torch_api, ONLY: &
46#include "./base/base_uses.f90"
47
48 IMPLICIT NONE
49
50 PRIVATE
51
53
54CONTAINS
55
56! **************************************************************************************************
57!> \brief Loads a PAO-ML model.
58!> \param pao ...
59!> \param qs_env ...
60!> \param ikind ...
61!> \param pao_model_file ...
62!> \param model ...
63! **************************************************************************************************
64 SUBROUTINE pao_model_load(pao, qs_env, ikind, pao_model_file, model)
65 TYPE(pao_env_type), INTENT(IN) :: pao
66 TYPE(qs_environment_type), INTENT(IN) :: qs_env
67 INTEGER, INTENT(IN) :: ikind
68 CHARACTER(LEN=default_path_length), INTENT(IN) :: pao_model_file
69 TYPE(pao_model_type), INTENT(OUT) :: model
70
71 CHARACTER(len=*), PARAMETER :: routinen = 'pao_model_load'
72
73 CHARACTER(LEN=default_string_length) :: kind_name
74 CHARACTER(LEN=default_string_length), &
75 ALLOCATABLE, DIMENSION(:) :: model_kind_names
76 INTEGER :: handle, jkind, kkind, pao_basis_size, z
77 REAL(dp) :: cutoff_angstrom
78 TYPE(atomic_kind_type), DIMENSION(:), POINTER :: atomic_kind_set
79 TYPE(gto_basis_set_type), POINTER :: basis_set
80 TYPE(qs_kind_type), DIMENSION(:), POINTER :: qs_kind_set
81
82 CALL timeset(routinen, handle)
83 CALL get_qs_env(qs_env, qs_kind_set=qs_kind_set, atomic_kind_set=atomic_kind_set)
84
85 IF (pao%iw > 0) WRITE (pao%iw, '(A)') " PAO| Loading PyTorch model from: "//trim(pao_model_file)
86 CALL torch_model_load(model%torch_model, pao_model_file)
87
88 ! Read model attributes.
89 CALL torch_model_get_attr(model%torch_model, "pao_model_version", model%version)
90 CALL torch_model_get_attr(model%torch_model, "kind_name", model%kind_name)
91 CALL torch_model_get_attr(model%torch_model, "atomic_number", model%atomic_number)
92 CALL torch_model_get_attr(model%torch_model, "prim_basis_name", model%prim_basis_name)
93 CALL torch_model_get_attr(model%torch_model, "prim_basis_size", model%prim_basis_size)
94 CALL torch_model_get_attr(model%torch_model, "pao_basis_size", model%pao_basis_size)
95 CALL torch_model_get_attr(model%torch_model, "num_layers", model%num_layers)
96 CALL torch_model_get_attr(model%torch_model, "cutoff", cutoff_angstrom)
97 CALL torch_model_get_attr(model%torch_model, "all_kind_names", model_kind_names)
98 model%cutoff = cutoff_angstrom/angstrom
99
100 ! Freeze model after all attributes have been read.
101 ! TODO Re-enable once the memory leaks of torch::jit::freeze() are fixed.
102 ! https://github.com/pytorch/pytorch/issues/96726
103 ! CALL torch_model_freeze(model%torch_model)
104
105 ! For each of the model's kind names lookup the corresponding atomic kind index.
106 ALLOCATE (model%kinds_mapping(SIZE(atomic_kind_set)))
107 model%kinds_mapping(:) = -1
108 DO jkind = 1, SIZE(atomic_kind_set)
109 DO kkind = 1, SIZE(model_kind_names)
110 IF (trim(atomic_kind_set(jkind)%name) == trim(model_kind_names(kkind))) THEN
111 model%kinds_mapping(jkind) = kkind - 1
112 EXIT
113 END IF
114 END DO
115 IF (model%kinds_mapping(jkind) < 0) THEN
116 CALL cp_abort(__location__, "PAO-ML model lacks kind '"//trim(atomic_kind_set(jkind)%name)//"' .")
117 END IF
118 END DO
119
120 ! Check compatibility
121 CALL get_qs_kind(qs_kind_set(ikind), basis_set=basis_set, pao_basis_size=pao_basis_size)
122 CALL get_atomic_kind(atomic_kind_set(ikind), name=kind_name, z=z)
123 IF (model%version /= 2) THEN
124 cpabort("Model version not supported.")
125 END IF
126 IF (trim(model%kind_name) /= trim(kind_name)) THEN
127 cpabort("Kind name does not match.")
128 END IF
129 IF (model%atomic_number /= z) THEN
130 cpabort("Atomic number does not match.")
131 END IF
132 IF (trim(model%prim_basis_name) /= trim(basis_set%name)) THEN
133 cpabort("Primary basis set name does not match.")
134 END IF
135 IF (model%prim_basis_size /= basis_set%nsgf) THEN
136 cpabort("Primary basis set size does not match.")
137 END IF
138 IF (model%pao_basis_size /= pao_basis_size) THEN
139 cpabort("PAO basis size does not match.")
140 END IF
141
142 CALL omp_init_lock(model%lock)
143 CALL timestop(handle)
144
145 END SUBROUTINE pao_model_load
146
147! **************************************************************************************************
148!> \brief Fills pao%matrix_X based on machine learning predictions
149!> \param pao ...
150!> \param qs_env ...
151! **************************************************************************************************
152 SUBROUTINE pao_model_predict(pao, qs_env)
153 TYPE(pao_env_type), POINTER :: pao
154 TYPE(qs_environment_type), POINTER :: qs_env
155
156 CHARACTER(len=*), PARAMETER :: routinen = 'pao_model_predict'
157
158 INTEGER :: acol, arow, handle, iatom
159 REAL(dp), DIMENSION(:, :), POINTER :: block_x
160 TYPE(dbcsr_iterator_type) :: iter
161
162 CALL timeset(routinen, handle)
163
164!$OMP PARALLEL DEFAULT(NONE) SHARED(pao,qs_env) PRIVATE(iter,arow,acol,iatom,block_X)
165 CALL dbcsr_iterator_start(iter, pao%matrix_X)
166 DO WHILE (dbcsr_iterator_blocks_left(iter))
167 CALL dbcsr_iterator_next_block(iter, arow, acol, block_x)
168 IF (SIZE(block_x) == 0) cycle ! pao disabled for iatom
169 iatom = arow; cpassert(arow == acol)
170 CALL predict_single_atom(pao, qs_env, iatom, block_x=block_x)
171 END DO
172 CALL dbcsr_iterator_stop(iter)
173!$OMP END PARALLEL
174
175 CALL timestop(handle)
176
177 END SUBROUTINE pao_model_predict
178
179! **************************************************************************************************
180!> \brief Calculate forces contributed by machine learning
181!> \param pao ...
182!> \param qs_env ...
183!> \param matrix_G ...
184!> \param forces ...
185! **************************************************************************************************
186 SUBROUTINE pao_model_forces(pao, qs_env, matrix_G, forces)
187 TYPE(pao_env_type), POINTER :: pao
188 TYPE(qs_environment_type), POINTER :: qs_env
189 TYPE(dbcsr_type) :: matrix_g
190 REAL(dp), DIMENSION(:, :), INTENT(INOUT) :: forces
191
192 CHARACTER(len=*), PARAMETER :: routinen = 'pao_model_forces'
193
194 INTEGER :: acol, arow, handle, iatom
195 REAL(dp), DIMENSION(:, :), POINTER :: block_g
196 TYPE(dbcsr_iterator_type) :: iter
197
198 CALL timeset(routinen, handle)
199
200!$OMP PARALLEL DEFAULT(NONE) SHARED(pao,qs_env,matrix_G,forces) PRIVATE(iter,arow,acol,iatom,block_G)
201 CALL dbcsr_iterator_start(iter, matrix_g)
202 DO WHILE (dbcsr_iterator_blocks_left(iter))
203 CALL dbcsr_iterator_next_block(iter, arow, acol, block_g)
204 iatom = arow; cpassert(arow == acol)
205 IF (SIZE(block_g) == 0) cycle ! pao disabled for iatom
206 CALL predict_single_atom(pao, qs_env, iatom, block_g=block_g, forces=forces)
207 END DO
208 CALL dbcsr_iterator_stop(iter)
209!$OMP END PARALLEL
210
211 CALL timestop(handle)
212
213 END SUBROUTINE pao_model_forces
214
215! **************************************************************************************************
216!> \brief Predicts a single block_X.
217!> \param pao ...
218!> \param qs_env ...
219!> \param iatom ...
220!> \param block_X ...
221!> \param block_G ...
222!> \param forces ...
223! **************************************************************************************************
224 SUBROUTINE predict_single_atom(pao, qs_env, iatom, block_X, block_G, forces)
225 TYPE(pao_env_type), INTENT(IN), POINTER :: pao
226 TYPE(qs_environment_type), INTENT(IN), POINTER :: qs_env
227 INTEGER, INTENT(IN) :: iatom
228 REAL(dp), DIMENSION(:, :), OPTIONAL :: block_x, block_g, forces
229
230 INTEGER :: i, iedge, ikind, j, jatom, jcell, jkind, &
231 jneighbor, k, katom, kneighbor, m, n, &
232 natoms, num_edges, num_neighbors
233 INTEGER(kind=int_8), ALLOCATABLE, DIMENSION(:) :: neighbor_atom_types
234 INTEGER(kind=int_8), ALLOCATABLE, DIMENSION(:, :) :: central_edge_index, edge_index
235 INTEGER, ALLOCATABLE, DIMENSION(:) :: neighbor_atom_index
236 INTEGER, DIMENSION(:), POINTER :: blk_sizes_pao, blk_sizes_pri
237 REAL(dp), DIMENSION(3) :: ri, rj, rjk
238 REAL(kind=dp), ALLOCATABLE, DIMENSION(:, :) :: cell_shifts, neighbor_pos
239 REAL(sp), ALLOCATABLE, DIMENSION(:, :) :: edge_vectors
240 REAL(sp), ALLOCATABLE, DIMENSION(:, :, :) :: outer_grad
241 REAL(sp), DIMENSION(:, :), POINTER :: edge_vectors_grad
242 REAL(sp), DIMENSION(:, :, :), POINTER :: predicted_xblock
243 TYPE(atomic_kind_type), DIMENSION(:), POINTER :: atomic_kind_set
244 TYPE(cell_type), POINTER :: cell
245 TYPE(mp_para_env_type), POINTER :: para_env
246 TYPE(pao_model_type), POINTER :: model
247 TYPE(particle_type), DIMENSION(:), POINTER :: particle_set
248 TYPE(qs_kind_type), DIMENSION(:), POINTER :: qs_kind_set
249 TYPE(torch_dict_type) :: model_inputs, model_outputs
250 TYPE(torch_tensor_type) :: atom_types_tensor, central_edge_index_tensor, edge_index_tensor, &
251 edge_vectors_grad_tensor, edge_vectors_tensor, outer_grad_tensor, predicted_xblock_tensor
252
253 CALL dbcsr_get_info(pao%matrix_Y, row_blk_size=blk_sizes_pri, col_blk_size=blk_sizes_pao)
254 n = blk_sizes_pri(iatom) ! size of primary basis
255 m = blk_sizes_pao(iatom) ! size of pao basis
256
257 CALL get_qs_env(qs_env, &
258 para_env=para_env, &
259 cell=cell, &
260 particle_set=particle_set, &
261 atomic_kind_set=atomic_kind_set, &
262 qs_kind_set=qs_kind_set, &
263 natom=natoms)
264
265 CALL get_atomic_kind(particle_set(iatom)%atomic_kind, kind_number=ikind)
266 ri = particle_set(iatom)%r
267 model => pao%models(ikind)
268 cpassert(model%version > 0)
269 CALL omp_set_lock(model%lock) ! TODO: might not be needed for inference.
270
271 ! TODO: this is a quadratic algorithm, use a neighbor-list instead.
272
273 ! Enumerate all neighboring images. TODO: should be all images within num_layers*cutoff.
274 ALLOCATE (cell_shifts(27, 3))
275 jcell = 0
276 DO i = -1, +1
277 DO j = -1, +1
278 DO k = -1, +1
279 jcell = jcell + 1
280 cell_shifts(jcell, :) = i*cell%hmat(:, 1) + j*cell%hmat(:, 2) + k*cell%hmat(:, 3)
281 END DO
282 END DO
283 END DO
284
285 ! Find neighbors, ie. atoms that are reachable within num_layers*cutoff.
286 ! 1st pass to count neighbors.
287 num_neighbors = 1 ! first neighbor is always the central atom
288 DO jatom = 1, natoms
289 DO jcell = 1, 27
290 rj = particle_set(jatom)%r + cell_shifts(jcell, :)
291 IF (norm2(rj - ri) < model%num_layers*model%cutoff .AND. any(rj /= ri)) THEN
292 num_neighbors = num_neighbors + 1
293 END IF
294 END DO
295 END DO
296
297 ! 2nd pass to collect neighbors.
298 ALLOCATE (neighbor_pos(num_neighbors, 3), neighbor_atom_types(num_neighbors), neighbor_atom_index(num_neighbors))
299 num_neighbors = 1 ! first neighbor is always the central atom
300 neighbor_pos(1, :) = ri
301 neighbor_atom_types(1) = model%kinds_mapping(ikind)
302 neighbor_atom_index(1) = iatom
303 DO jatom = 1, natoms
304 DO jcell = 1, 27
305 rj = particle_set(jatom)%r + cell_shifts(jcell, :)
306 jkind = particle_set(jatom)%atomic_kind%kind_number
307 IF (norm2(rj - ri) < model%num_layers*model%cutoff .AND. any(rj /= ri)) THEN
308 num_neighbors = num_neighbors + 1
309 neighbor_pos(num_neighbors, :) = rj
310 neighbor_atom_types(num_neighbors) = model%kinds_mapping(jkind)
311 neighbor_atom_index(num_neighbors) = jatom
312 END IF
313 END DO
314 END DO
315
316 ! Build connectivity graph of neighbors.
317 ! 1st pass to count edges.
318 num_edges = 0
319 DO jneighbor = 1, num_neighbors
320 DO kneighbor = 1, num_neighbors
321 rjk = neighbor_pos(kneighbor, :) - neighbor_pos(jneighbor, :)
322 IF (norm2(rjk) < model%cutoff .AND. jneighbor /= kneighbor) THEN
323 num_edges = num_edges + 1
324 END IF
325 END DO
326 END DO
327
328 ! 2nd pass to collect edges.
329 ALLOCATE (edge_index(num_edges, 2), edge_vectors(3, num_edges)) ! edge_index is transposed
330 num_edges = 0
331 DO jneighbor = 1, num_neighbors
332 DO kneighbor = 1, num_neighbors
333 rjk = neighbor_pos(kneighbor, :) - neighbor_pos(jneighbor, :)
334 IF (norm2(rjk) < model%cutoff .AND. jneighbor /= kneighbor) THEN
335 num_edges = num_edges + 1
336 edge_index(num_edges, :) = [jneighbor - 1, kneighbor - 1]
337 edge_vectors(:, num_edges) = real(rjk*angstrom, kind=sp)
338 END IF
339 END DO
340 END DO
341
342 ALLOCATE (central_edge_index(1, 2))
343 central_edge_index(:, :) = 0
344
345 ! Inference.
346 CALL torch_dict_create(model_inputs)
347
348 CALL torch_tensor_from_array(atom_types_tensor, neighbor_atom_types)
349 CALL torch_dict_insert(model_inputs, "atom_types", atom_types_tensor)
350
351 CALL torch_tensor_from_array(edge_index_tensor, edge_index)
352 CALL torch_dict_insert(model_inputs, "edge_index", edge_index_tensor)
353
354 CALL torch_tensor_from_array(edge_vectors_tensor, edge_vectors, requires_grad=PRESENT(block_g))
355 CALL torch_dict_insert(model_inputs, "edge_vectors", edge_vectors_tensor)
356
357 CALL torch_tensor_from_array(central_edge_index_tensor, central_edge_index)
358 CALL torch_dict_insert(model_inputs, "central_edge_index", central_edge_index_tensor)
359
360 CALL torch_dict_create(model_outputs)
361 CALL torch_model_forward(model%torch_model, model_inputs, model_outputs)
362
363 ! Copy predicted XBlock.
364 NULLIFY (predicted_xblock)
365 CALL torch_dict_get(model_outputs, "xblock", predicted_xblock_tensor)
366 CALL torch_tensor_data_ptr(predicted_xblock_tensor, predicted_xblock)
367 cpassert(SIZE(predicted_xblock, 1) == n)
368 cpassert(SIZE(predicted_xblock, 2) == m)
369 cpassert(SIZE(predicted_xblock, 3) == 1)
370 cpassert(all(predicted_xblock == predicted_xblock)) ! checking for NaNs
371 IF (PRESENT(block_x)) THEN
372 block_x = reshape(predicted_xblock, [n*m, 1])
373 END IF
374
375 ! TURNING POINT (if calc forces) ------------------------------------------
376 IF (PRESENT(block_g)) THEN
377 ALLOCATE (outer_grad(n, m, 1))
378 outer_grad(:, :, :) = real(reshape(block_g, [n, m, 1]), kind=sp)
379 CALL torch_tensor_from_array(outer_grad_tensor, outer_grad)
380 CALL torch_tensor_backward(predicted_xblock_tensor, outer_grad_tensor)
381 CALL torch_tensor_grad(edge_vectors_tensor, edge_vectors_grad_tensor)
382 NULLIFY (edge_vectors_grad)
383 CALL torch_tensor_data_ptr(edge_vectors_grad_tensor, edge_vectors_grad)
384 IF (ASSOCIATED(edge_vectors_grad)) THEN ! Torch may return NULL pointer as gradient.
385 cpassert(SIZE(edge_vectors_grad, 1) == 3 .AND. SIZE(edge_vectors_grad, 2) == num_edges)
386 cpassert(all(edge_vectors_grad == edge_vectors_grad)) ! checking for NaNs
387 DO iedge = 1, num_edges
388 jneighbor = int(edge_index(iedge, 1) + 1)
389 kneighbor = int(edge_index(iedge, 2) + 1)
390 jatom = neighbor_atom_index(jneighbor)
391 katom = neighbor_atom_index(kneighbor)
392 forces(jatom, :) = forces(jatom, :) + edge_vectors_grad(:, iedge)*angstrom
393 forces(katom, :) = forces(katom, :) - edge_vectors_grad(:, iedge)*angstrom
394 END DO
395 END IF
396 CALL torch_tensor_release(outer_grad_tensor)
397 CALL torch_tensor_release(edge_vectors_grad_tensor)
398 END IF
399
400 ! Clean up.
401 CALL torch_tensor_release(atom_types_tensor)
402 CALL torch_tensor_release(edge_index_tensor)
403 CALL torch_tensor_release(edge_vectors_tensor)
404 CALL torch_tensor_release(central_edge_index_tensor)
405 CALL torch_tensor_release(predicted_xblock_tensor)
406 CALL torch_dict_release(model_inputs)
407 CALL torch_dict_release(model_outputs)
408 CALL omp_unset_lock(model%lock)
409
410 END SUBROUTINE predict_single_atom
411
412END MODULE pao_model
Define the atomic kind types and their sub types.
subroutine, public get_atomic_kind(atomic_kind, fist_potential, element_symbol, name, mass, kind_number, natom, atom_list, rcov, rvdw, z, qeff, apol, cpol, mm_radius, shell, shell_active, damping)
Get attributes of an atomic kind.
Handles all functions related to the CELL.
Definition cell_types.F:15
logical function, public dbcsr_iterator_blocks_left(iterator)
...
subroutine, public dbcsr_iterator_stop(iterator)
...
subroutine, public dbcsr_get_info(matrix, nblkrows_total, nblkcols_total, nfullrows_total, nfullcols_total, nblkrows_local, nblkcols_local, nfullrows_local, nfullcols_local, my_prow, my_pcol, local_rows, local_cols, proc_row_dist, proc_col_dist, row_blk_size, col_blk_size, row_blk_offset, col_blk_offset, distribution, name, matrix_type, group)
...
subroutine, public dbcsr_iterator_next_block(iterator, row, column, block, block_number_argument_has_been_removed, row_size, col_size, row_offset, col_offset, transposed)
...
subroutine, public dbcsr_iterator_start(iterator, matrix, shared, dynamic, dynamic_byrows)
...
Defines the basic variable types.
Definition kinds.F:23
integer, parameter, public int_8
Definition kinds.F:54
integer, parameter, public dp
Definition kinds.F:34
integer, parameter, public default_string_length
Definition kinds.F:57
integer, parameter, public default_path_length
Definition kinds.F:58
integer, parameter, public sp
Definition kinds.F:33
Interface to the message passing library MPI.
Module for equivariant PAO-ML based on PyTorch.
Definition pao_model.F:12
subroutine, public pao_model_predict(pao, qs_env)
Fills paomatrix_X based on machine learning predictions.
Definition pao_model.F:153
subroutine, public pao_model_forces(pao, qs_env, matrix_g, forces)
Calculate forces contributed by machine learning.
Definition pao_model.F:187
subroutine, public pao_model_load(pao, qs_env, ikind, pao_model_file, model)
Loads a PAO-ML model.
Definition pao_model.F:65
Types used by the PAO machinery.
Definition pao_types.F:12
Define the data structure for the particle information.
Definition of physical constants:
Definition physcon.F:68
real(kind=dp), parameter, public angstrom
Definition physcon.F:144
subroutine, public get_qs_env(qs_env, atomic_kind_set, qs_kind_set, cell, super_cell, cell_ref, use_ref_cell, kpoints, dft_control, mos, sab_orb, sab_all, qmmm, qmmm_periodic, mimic, sac_ae, sac_ppl, sac_lri, sap_ppnl, sab_vdw, sab_scp, sap_oce, sab_lrc, sab_se, sab_xtbe, sab_tbe, sab_core, sab_xb, sab_xtb_pp, sab_xtb_nonbond, sab_almo, sab_kp, sab_kp_nosym, sab_cneo, particle_set, energy, force, matrix_h, matrix_h_im, matrix_ks, matrix_ks_im, matrix_vxc, run_rtp, rtp, matrix_h_kp, matrix_h_im_kp, matrix_ks_kp, matrix_ks_im_kp, matrix_vxc_kp, kinetic_kp, matrix_s_kp, matrix_w_kp, matrix_s_ri_aux_kp, matrix_s, matrix_s_ri_aux, matrix_w, matrix_p_mp2, matrix_p_mp2_admm, matrix_vhxc, rho, rho_xc, pw_env, ewald_env, ewald_pw, active_space, mpools, input, para_env, blacs_env, scf_control, rel_control, kinetic, qs_charges, vppl, xcint_weights, rho_core, rho_nlcc, rho_nlcc_g, ks_env, ks_qmmm_env, wf_history, scf_env, local_particles, local_molecules, distribution_2d, dbcsr_dist, molecule_kind_set, molecule_set, subsys, cp_subsys, oce, local_rho_set, rho_atom_set, task_list, task_list_soft, rho0_atom_set, rho0_mpole, rhoz_set, rhoz_cneo_set, ecoul_1c, rho0_s_rs, rho0_s_gs, rhoz_cneo_s_rs, rhoz_cneo_s_gs, do_kpoints, has_unit_metric, requires_mo_derivs, mo_derivs, mo_loc_history, nkind, natom, nelectron_total, nelectron_spin, efield, neighbor_list_id, linres_control, xas_env, virial, cp_ddapc_env, cp_ddapc_ewald, outer_scf_history, outer_scf_ihistory, x_data, et_coupling, dftb_potential, results, se_taper, se_store_int_env, se_nddo_mpole, se_nonbond_env, admm_env, lri_env, lri_density, exstate_env, ec_env, harris_env, dispersion_env, gcp_env, vee, rho_external, external_vxc, mask, mp2_env, bs_env, kg_env, wanniercentres, atprop, ls_scf_env, do_transport, transport_env, v_hartree_rspace, s_mstruct_changed, rho_changed, potential_changed, forces_up_to_date, mscfg_env, almo_scf_env, gradient_history, variable_history, embed_pot, spin_embed_pot, polar_env, mos_last_converged, eeq, rhs, do_rixs, tb_tblite)
Get the QUICKSTEP environment.
Define the quickstep kind type and their sub types.
subroutine, public get_qs_kind(qs_kind, basis_set, basis_type, ncgf, nsgf, all_potential, tnadd_potential, gth_potential, sgp_potential, upf_potential, cneo_potential, se_parameter, dftb_parameter, xtb_parameter, dftb3_param, zatom, zeff, elec_conf, mao, lmax_dftb, alpha_core_charge, ccore_charge, core_charge, core_charge_radius, paw_proj_set, paw_atom, hard_radius, hard0_radius, max_rad_local, covalent_radius, vdw_radius, gpw_type_forced, harmonics, max_iso_not0, max_s_harm, grid_atom, ngrid_ang, ngrid_rad, lmax_rho0, dft_plus_u_atom, l_of_dft_plus_u, n_of_dft_plus_u, u_minus_j, hund_j, u_of_dft_plus_u, j_of_dft_plus_u, alpha_of_dft_plus_u, beta_of_dft_plus_u, j0_of_dft_plus_u, occupation_of_dft_plus_u, dispersion, bs_occupation, magnetization, no_optimize, addel, laddel, naddel, orbitals, max_scf, eps_scf, smear, u_ramping, u_minus_j_target, eps_u_ramping, proj_shell_charge, lr_atom, do_mtlr, u_j_loop, ao_coef, init_u_ramping_each_scf, reltmat, ghost, monovalent, floating, name, element_symbol, pao_basis_size, pao_model_file, pao_potentials, pao_descriptors, nelec)
Get attributes of an atomic kind.
subroutine, public torch_dict_release(dict)
Releases a Torch dictionary and all its ressources.
Definition torch_api.F:1841
subroutine, public torch_tensor_backward(tensor, outer_grad)
Runs autograd on a Torch tensor.
Definition torch_api.F:1470
subroutine, public torch_dict_get(dict, key, tensor)
Retrieves a Torch tensor from a Torch dictionary.
Definition torch_api.F:1807
subroutine, public torch_model_load(model, filename)
Loads a Torch model from given "*.pth" file. (In Torch lingo models are called modules)
Definition torch_api.F:1865
subroutine, public torch_dict_create(dict)
Creates an empty Torch dictionary.
Definition torch_api.F:1724
subroutine, public torch_tensor_grad(tensor, grad)
Returns the gradient of a Torch tensor which was computed by autograd.
Definition torch_api.F:1574
subroutine, public torch_dict_insert(dict, key, tensor)
Inserts a Torch tensor into a Torch dictionary.
Definition torch_api.F:1775
subroutine, public torch_tensor_release(tensor)
Releases a Torch tensor and all its ressources.
Definition torch_api.F:1700
subroutine, public torch_model_forward(model, inputs, outputs)
Evaluates the given Torch model.
Definition torch_api.F:1995
Provides all information about an atomic kind.
Type defining parameters related to the simulation cell.
Definition cell_types.F:60
stores all the informations relevant to an mpi environment
PAO-ML model for a single atomic kind.
Definition pao_types.F:60
Provides all information about a quickstep kind.