Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update basisset to use numpy over jax.numpy #126

Merged
merged 3 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pyscf_ipu/experimental/basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import chex
import jax.numpy as jnp
import numpy as np

from .orbital import Orbital
from .structure import Structure
Expand Down Expand Up @@ -61,9 +62,9 @@ def basisset(structure: Structure, basis_name: str = "sto-3g"):
for lmn in LMN_MAP[s["angular_momentum"][0]]:
ao = Orbital.from_bse(
center=center,
alphas=jnp.array(s["exponents"], dtype=float),
lmn=jnp.array(lmn, dtype=jnp.int32),
coefficients=jnp.array(s["coefficients"], dtype=float),
alphas=np.array(s["exponents"], dtype=np.float32),
lmn=np.array(lmn, dtype=np.uint8),
coefficients=np.array(s["coefficients"], dtype=np.float32),
)
orbitals.append(ao)

Expand Down
15 changes: 8 additions & 7 deletions pyscf_ipu/experimental/primitive.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@

import chex
import jax.numpy as jnp
from jax.scipy.special import gammaln
import numpy as np
from scipy.special import gammaln

from .types import Float3, FloatN, FloatNx3, Int3


@chex.dataclass
class Primitive:
center: Float3 = jnp.zeros(3, dtype=jnp.float32)
center: Float3 = np.zeros(3, dtype=np.float32)
alpha: float = 1.0
lmn: Int3 = jnp.zeros(3, dtype=jnp.int32)
lmn: Int3 = np.zeros(3, dtype=np.int32)
norm: Optional[float] = None

def __post_init__(self):
Expand All @@ -21,16 +22,16 @@ def __post_init__(self):

@property
def angular_momentum(self) -> int:
return jnp.sum(self.lmn)
return np.sum(self.lmn)

def __call__(self, pos: FloatNx3) -> FloatN:
return eval_primitive(self, pos)


def normalize(lmn: Int3, alpha: float) -> float:
L = jnp.sum(lmn)
L = np.sum(lmn)
N = ((1 / 2) / alpha) ** (L + 3 / 2)
N *= jnp.exp(jnp.sum(gammaln(lmn + 1 / 2)))
N *= np.exp(np.sum(gammaln(lmn + 1 / 2)))
return N**-0.5


Expand All @@ -40,7 +41,7 @@ def product(a: Primitive, b: Primitive) -> Primitive:
lmn = a.lmn + b.lmn
c = a.norm * b.norm
Rab = a.center - b.center
c *= jnp.exp(-a.alpha * b.alpha / alpha * jnp.inner(Rab, Rab))
c *= np.exp(-a.alpha * b.alpha / alpha * np.inner(Rab, Rab))
return Primitive(center=center, alpha=alpha, lmn=lmn, norm=c)


Expand Down
3 changes: 3 additions & 0 deletions pyscf_ipu/experimental/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ def __post_init__(self):
if not self.is_bohr:
self.position = to_bohr(self.position)

# single atom case
self.position = np.atleast_2d(self.position)

@property
def num_atoms(self) -> int:
return len(self.atomic_number)
Expand Down
Loading