Search found 116 matches

by Neil Drummond
Fri Sep 06, 2024 4:53 pm
Forum: The CASINO program
Topic: DMC without loadbalancing
Replies: 4
Views: 14574

Re: DMC without loadbalancing

If you do this (scaling down the number of stats accumulation steps for each independent calculation rather than scaling down the target population for each independent calculation) then you will spend nearly all your time equilibrating walkers.

Best wishes,

Neil.
by Neil Drummond
Fri Sep 06, 2024 9:09 am
Forum: The CASINO program
Topic: DMC without loadbalancing
Replies: 4
Views: 14574

Re: DMC without loadbalancing

The other obvious point is that if you just want a series of independent DMC calculations, you can just submit independent jobs with timer-derived random seeds and average the results at the end. If you want to be more careful about non-duplication of random seeds, there is a script called set_rando...
by Neil Drummond
Fri Sep 06, 2024 8:53 am
Forum: The CASINO program
Topic: DMC without loadbalancing
Replies: 4
Views: 14574

Re: DMC without loadbalancing

I think your suggestion is, basically, to perform k independent DMC simulations with n configurations each and m/k steps. At one point this was enabled in CASINO (with 1<=k<=P , where P is the number of MPI processes). See the dmc_npops keyword back in CASINO's Git history. One major con of this app...
by Neil Drummond
Mon Jan 15, 2024 3:26 pm
Forum: The CASINO program
Topic: Nitrogen molecule with PP and AE atoms.
Replies: 8
Views: 21829

Re: Nitrogen molecule with PP and AE atoms.

Does the trick of looking at a N"P" (nitrogen "phosphide") molecule, where the nitrogen is all-electron and the phosphorus is actually a pseudonitrogen atom not work?

Best wishes,

Neil.
by Neil Drummond
Mon Jan 15, 2024 11:47 am
Forum: The CASINO program
Topic: Nitrogen molecule with PP and AE atoms.
Replies: 8
Views: 21829

Re: Nitrogen molecule with PP and AE atoms.

CASINO allows you to have both all-electron and pseudopotential ions present. For an example, see CASINO/examples/molecule/silane/ground_state which has a silicon pseudopotential, while the hydrogen atoms are all-electron. Before 2014 there used to be a mishmash of CASINO keywords related to allowin...
by Neil Drummond
Sun Jan 14, 2024 10:21 pm
Forum: The CASINO program
Topic: Nitrogen molecule with PP and AE atoms.
Replies: 8
Views: 21829

Re: Nitrogen molecule with PP and AE atoms.

Perhaps you could look at a "nitrogen phosphide" molecule, where the nitrogen is all electron (no n_pp.data file is supplied) and the phosphorus pseudopotential in p_pp.data is actually just a renamed nitrogen pseudopotential? To create this p_pp.data file you could just rename n_pp.data a...
by Neil Drummond
Mon Dec 18, 2023 11:42 am
Forum: Quantum Monte Carlo
Topic: Goodhart's law and VMC optimization.
Replies: 2
Views: 42175

Re: Goodhart's law and VMC optimization.

Dear Vladimir, Is your point that, for example, VMC variance isn't a perfect measure for comparing two different types of wave function when they are optimised by minimising the variance? Or is your point that we optimise wave functions by some criterion that stands in for the one we are ultimately ...
by Neil Drummond
Thu Mar 16, 2023 11:36 am
Forum: Quantum Monte Carlo
Topic: Constrained derivatives.
Replies: 9
Views: 71425

Re: Constrained derivatives.

Sorry it has taken me ages to reply. Analytical derivatives w.r.t. backflow parameters will certainly get messy. Obviously I agree that you can evaluate linearly constrained derivatives for parameters by evaluating unconstrained derivatives and using linear algebra. This could be done using the proj...
by Neil Drummond
Thu Mar 09, 2023 11:43 am
Forum: Quantum Monte Carlo
Topic: Constrained derivatives.
Replies: 9
Views: 71425

Re: Constrained derivatives.

An alternative approach for dealing with the homogeneous linear constraints would be to use SVD to find the basis spanning the nullity (the solution space) and then the parameters in correlation.data would be the coefficients of those basis vectors, again giving an independent set of parameters. It'...
by Neil Drummond
Wed Mar 08, 2023 9:53 am
Forum: Quantum Monte Carlo
Topic: Constrained derivatives.
Replies: 9
Views: 71425

Re: Constrained derivatives.

For the "old" Jastrow factor in pjastrow.f90, the subroutine "get_linear_basis" returns analytical derivatives w.r.t. the independent subset of linear parameters. At present this is only used in the "varmin-linjas" optimisation method, however. Numerical differentiation...