-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Uncontracted first derivative of inte1e_grid working * Add ss special case for int1e derivative * int1e first derivative with density and charge contraction working, not optimized * Special case for int1e ip contracted version * Fix linter error * Change template variable of int1e density contraction kernel, very big improvement * Also change int1e charge contraction to template expansion. Compilation much slower. * polite...
- Loading branch information
Showing
14 changed files
with
2,586 additions
and
545 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,306 @@ | ||
# Copyright 2024 The GPU4PySCF Authors. All Rights Reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import ctypes | ||
import cupy as cp | ||
import numpy as np | ||
|
||
from pyscf.gto import ATOM_OF | ||
from pyscf.lib import c_null_ptr | ||
from gpu4pyscf.lib.cupy_helper import load_library, cart2sph, get_avail_mem | ||
|
||
libgint = load_library('libgint') | ||
|
||
def get_int3c1e_ip(mol, grids, charge_exponents, intopt): | ||
omega = mol.omega | ||
assert omega >= 0.0, "Short-range one electron integrals with GPU acceleration is not implemented." | ||
|
||
nao = mol.nao | ||
ngrids = grids.shape[0] | ||
total_double_number = ngrids * nao * nao * 6 | ||
cp.get_default_memory_pool().free_all_blocks() | ||
avail_mem = get_avail_mem() | ||
reserved_available_memory = avail_mem // 4 # Leave space for further allocations | ||
allowed_double_number = reserved_available_memory // 8 | ||
n_grid_split = int(np.ceil(total_double_number / allowed_double_number)) | ||
if (n_grid_split > 100): | ||
raise Exception(f"Available GPU memory ({avail_mem / 1e9 : .1f} GB) is too small for " | ||
"the 3 center integral first derivative, " | ||
"which requires {total_double_number * 8 / 1e9 : .1f} GB of memory") | ||
ngrids_per_split = (ngrids + n_grid_split - 1) // n_grid_split | ||
|
||
int3cip1_pinned_memory_pool = cp.cuda.alloc_pinned_memory(ngrids * nao * nao * 3 * np.array([1.0]).nbytes) | ||
int3c_ip1 = np.frombuffer(int3cip1_pinned_memory_pool, np.float64, ngrids * nao * nao * 3).reshape([3, ngrids, nao, nao], order='C') | ||
int3cip2_pinned_memory_pool = cp.cuda.alloc_pinned_memory(ngrids * nao * nao * 3 * np.array([1.0]).nbytes) | ||
int3c_ip2 = np.frombuffer(int3cip2_pinned_memory_pool, np.float64, ngrids * nao * nao * 3).reshape([3, ngrids, nao, nao], order='C') | ||
|
||
grids = cp.asarray(grids, order='C') | ||
if charge_exponents is not None: | ||
charge_exponents = cp.asarray(charge_exponents, order='C') | ||
|
||
for i_grid_split in range(0, ngrids, ngrids_per_split): | ||
ngrids_of_split = np.min([ngrids_per_split, ngrids - i_grid_split]) | ||
int3c_grid_slice = cp.zeros([6, ngrids_of_split, nao, nao], order='C') | ||
for cp_ij_id, _ in enumerate(intopt.log_qs): | ||
cpi = intopt.cp_idx[cp_ij_id] | ||
cpj = intopt.cp_jdx[cp_ij_id] | ||
li = intopt.angular[cpi] | ||
lj = intopt.angular[cpj] | ||
|
||
stream = cp.cuda.get_current_stream() | ||
nao_cart = intopt._sorted_mol.nao | ||
|
||
log_q_ij = intopt.log_qs[cp_ij_id] | ||
|
||
nbins = 1 | ||
bins_locs_ij = np.array([0, len(log_q_ij)], dtype=np.int32) | ||
|
||
i0, i1 = intopt.cart_ao_loc[cpi], intopt.cart_ao_loc[cpi+1] | ||
j0, j1 = intopt.cart_ao_loc[cpj], intopt.cart_ao_loc[cpj+1] | ||
ni = i1 - i0 | ||
nj = j1 - j0 | ||
|
||
ao_offsets = np.array([i0, j0], dtype=np.int32) | ||
strides = np.array([ni, ni*nj], dtype=np.int32) | ||
|
||
int3c_angular_slice = cp.zeros([6, ngrids_of_split, j1-j0, i1-i0], order='C') | ||
|
||
charge_exponents_pointer = c_null_ptr() | ||
if charge_exponents is not None: | ||
charge_exponents_pointer = charge_exponents[i_grid_split : i_grid_split + ngrids_of_split].data.ptr | ||
|
||
err = libgint.GINTfill_int3c1e_ip( | ||
ctypes.cast(stream.ptr, ctypes.c_void_p), | ||
intopt.bpcache, | ||
ctypes.cast(grids[i_grid_split : i_grid_split + ngrids_of_split, :].data.ptr, ctypes.c_void_p), | ||
ctypes.cast(charge_exponents_pointer, ctypes.c_void_p), | ||
ctypes.c_int(ngrids_of_split), | ||
ctypes.cast(int3c_angular_slice.data.ptr, ctypes.c_void_p), | ||
ctypes.c_int(nao_cart), | ||
strides.ctypes.data_as(ctypes.c_void_p), | ||
ao_offsets.ctypes.data_as(ctypes.c_void_p), | ||
bins_locs_ij.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.c_int(nbins), | ||
ctypes.c_int(cp_ij_id), | ||
ctypes.c_double(omega)) | ||
|
||
if err != 0: | ||
raise RuntimeError('GINTfill_int3c1e failed') | ||
|
||
i0, i1 = intopt.ao_loc[cpi], intopt.ao_loc[cpi+1] | ||
j0, j1 = intopt.ao_loc[cpj], intopt.ao_loc[cpj+1] | ||
if not mol.cart: | ||
int3c_angular_slice = cart2sph(int3c_angular_slice, axis=2, ang=lj) | ||
int3c_angular_slice = cart2sph(int3c_angular_slice, axis=3, ang=li) | ||
|
||
int3c_grid_slice[:, :, j0:j1, i0:i1] = int3c_angular_slice | ||
|
||
ao_idx = np.argsort(intopt._ao_idx) | ||
grid_idx = np.arange(ngrids_of_split) | ||
derivative_idx = np.arange(6) | ||
int3c_grid_slice = int3c_grid_slice[np.ix_(derivative_idx, grid_idx, ao_idx, ao_idx)] | ||
|
||
# Each piece of the following memory is contiguous | ||
int3c_grid_slice[0, :, :, :].get(out = int3c_ip1[0, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
int3c_grid_slice[1, :, :, :].get(out = int3c_ip1[1, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
int3c_grid_slice[2, :, :, :].get(out = int3c_ip1[2, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
int3c_grid_slice[3, :, :, :].get(out = int3c_ip2[0, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
int3c_grid_slice[4, :, :, :].get(out = int3c_ip2[1, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
int3c_grid_slice[5, :, :, :].get(out = int3c_ip2[2, i_grid_split : i_grid_split + ngrids_of_split, :, :]) | ||
|
||
return int3c_ip1, int3c_ip2 | ||
|
||
def get_int3c1e_ip1_charge_contracted(mol, grids, charge_exponents, charges, intopt): | ||
omega = mol.omega | ||
assert omega >= 0.0, "Short-range one electron integrals with GPU acceleration is not implemented." | ||
|
||
charges = cp.asarray(charges).reshape([-1, 1], order='C') | ||
grids = cp.concatenate([grids, charges], axis=1) | ||
|
||
int1e_charge_contracted = cp.zeros([3, mol.nao, mol.nao], order='C') | ||
for cp_ij_id, _ in enumerate(intopt.log_qs): | ||
cpi = intopt.cp_idx[cp_ij_id] | ||
cpj = intopt.cp_jdx[cp_ij_id] | ||
li = intopt.angular[cpi] | ||
lj = intopt.angular[cpj] | ||
|
||
stream = cp.cuda.get_current_stream() | ||
nao_cart = intopt._sorted_mol.nao | ||
|
||
log_q_ij = intopt.log_qs[cp_ij_id] | ||
|
||
nbins = 1 | ||
bins_locs_ij = np.array([0, len(log_q_ij)], dtype=np.int32) | ||
|
||
i0, i1 = intopt.cart_ao_loc[cpi], intopt.cart_ao_loc[cpi+1] | ||
j0, j1 = intopt.cart_ao_loc[cpj], intopt.cart_ao_loc[cpj+1] | ||
ni = i1 - i0 | ||
nj = j1 - j0 | ||
|
||
ao_offsets = np.array([i0, j0], dtype=np.int32) | ||
strides = np.array([ni, ni*nj], dtype=np.int32) | ||
|
||
charge_exponents_pointer = c_null_ptr() | ||
if charge_exponents is not None: | ||
charge_exponents_pointer = charge_exponents.data.ptr | ||
|
||
ngrids = grids.shape[0] | ||
# n_charge_sum_per_thread = 1 # means every thread processes one pair and one grid | ||
# n_charge_sum_per_thread = ngrids # or larger number gaurantees one thread processes one pair and all grid points | ||
n_charge_sum_per_thread = 10 | ||
|
||
int1e_angular_slice = cp.zeros([3, j1-j0, i1-i0], order='C') | ||
|
||
err = libgint.GINTfill_int3c1e_ip1_charge_contracted( | ||
ctypes.cast(stream.ptr, ctypes.c_void_p), | ||
intopt.bpcache, | ||
ctypes.cast(grids.data.ptr, ctypes.c_void_p), | ||
ctypes.cast(charge_exponents_pointer, ctypes.c_void_p), | ||
ctypes.c_int(ngrids), | ||
ctypes.cast(int1e_angular_slice.data.ptr, ctypes.c_void_p), | ||
ctypes.c_int(nao_cart), | ||
strides.ctypes.data_as(ctypes.c_void_p), | ||
ao_offsets.ctypes.data_as(ctypes.c_void_p), | ||
bins_locs_ij.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.c_int(nbins), | ||
ctypes.c_int(cp_ij_id), | ||
ctypes.c_double(omega), | ||
ctypes.c_int(n_charge_sum_per_thread)) | ||
|
||
if err != 0: | ||
raise RuntimeError('GINTfill_int3c1e_charge_contracted failed') | ||
|
||
i0, i1 = intopt.ao_loc[cpi], intopt.ao_loc[cpi+1] | ||
j0, j1 = intopt.ao_loc[cpj], intopt.ao_loc[cpj+1] | ||
if not mol.cart: | ||
int1e_angular_slice = cart2sph(int1e_angular_slice, axis=1, ang=lj) | ||
int1e_angular_slice = cart2sph(int1e_angular_slice, axis=2, ang=li) | ||
|
||
int1e_charge_contracted[:, j0:j1, i0:i1] = int1e_angular_slice | ||
|
||
ao_idx = np.argsort(intopt._ao_idx) | ||
derivative_idx = np.arange(3) | ||
int1e_charge_contracted = int1e_charge_contracted[np.ix_(derivative_idx, ao_idx, ao_idx)] | ||
|
||
return int1e_charge_contracted | ||
|
||
def get_int3c1e_ip2_density_contracted(mol, grids, charge_exponents, dm, intopt): | ||
omega = mol.omega | ||
assert omega >= 0.0, "Short-range one electron integrals with GPU acceleration is not implemented." | ||
|
||
nao_cart = intopt._sorted_mol.nao | ||
ngrids = grids.shape[0] | ||
|
||
dm = intopt.sort_orbitals(dm, [0,1]) | ||
if not mol.cart: | ||
cart2sph_transformation_matrix = intopt.cart2sph | ||
# TODO: This part is inefficient (O(N^3)), should be changed to the O(N^2) algorithm | ||
dm = cart2sph_transformation_matrix @ dm @ cart2sph_transformation_matrix.T | ||
dm = dm.flatten(order='F') # Column major order matches (i + j * n_ao) access pattern in the C function | ||
|
||
dm = cp.asnumpy(dm) | ||
|
||
ao_loc_sorted_order = intopt._sorted_mol.ao_loc_nr(cart = True) | ||
l_ij = intopt.l_ij.T.flatten() | ||
bas_coords = intopt._sorted_mol.atom_coords()[intopt._sorted_mol._bas[:, ATOM_OF]].flatten() | ||
|
||
n_total_hermite_density = intopt.density_offset[-1] | ||
dm_pair_ordered = np.zeros(n_total_hermite_density) | ||
libgint.GINTinit_J_density_rys_preprocess(dm.ctypes.data_as(ctypes.c_void_p), | ||
dm_pair_ordered.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.c_int(1), ctypes.c_int(nao_cart), ctypes.c_int(len(intopt.bas_pairs_locs) - 1), | ||
intopt.bas_pair2shls.ctypes.data_as(ctypes.c_void_p), | ||
intopt.bas_pairs_locs.ctypes.data_as(ctypes.c_void_p), | ||
l_ij.ctypes.data_as(ctypes.c_void_p), | ||
intopt.density_offset.ctypes.data_as(ctypes.c_void_p), | ||
ao_loc_sorted_order.ctypes.data_as(ctypes.c_void_p), | ||
bas_coords.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.c_bool(False)) | ||
|
||
dm_pair_ordered = cp.asarray(dm_pair_ordered) | ||
|
||
n_threads_per_block_1d = 16 | ||
n_max_blocks_per_grid_1d = 65535 | ||
n_max_threads_1d = n_threads_per_block_1d * n_max_blocks_per_grid_1d | ||
n_grid_split = int(np.ceil(ngrids / n_max_threads_1d)) | ||
if (n_grid_split > 100): | ||
print(f"Grid dimension = {ngrids} is too large, more than 100 kernels for one electron integral will be launched.") | ||
ngrids_per_split = (ngrids + n_grid_split - 1) // n_grid_split | ||
|
||
int3c_density_contracted = cp.zeros([3, ngrids], order='C') | ||
|
||
for i_grid_split in range(0, ngrids, ngrids_per_split): | ||
ngrids_of_split = np.min([ngrids_per_split, ngrids - i_grid_split]) | ||
for cp_ij_id, _ in enumerate(intopt.log_qs): | ||
stream = cp.cuda.get_current_stream() | ||
|
||
log_q_ij = intopt.log_qs[cp_ij_id] | ||
|
||
nbins = 1 | ||
bins_locs_ij = np.array([0, len(log_q_ij)], dtype=np.int32) | ||
|
||
charge_exponents_pointer = c_null_ptr() | ||
if charge_exponents is not None: | ||
charge_exponents_pointer = charge_exponents[i_grid_split : i_grid_split + ngrids_of_split].data.ptr | ||
|
||
# n_pair_sum_per_thread = 1 # means every thread processes one pair and one grid | ||
# n_pair_sum_per_thread = nao_cart # or larger number gaurantees one thread processes one grid and all pairs of the same type | ||
n_pair_sum_per_thread = nao_cart | ||
|
||
err = libgint.GINTfill_int3c1e_ip2_density_contracted( | ||
ctypes.cast(stream.ptr, ctypes.c_void_p), | ||
intopt.bpcache, | ||
ctypes.cast(grids[i_grid_split : i_grid_split + ngrids_of_split, :].data.ptr, ctypes.c_void_p), | ||
ctypes.cast(charge_exponents_pointer, ctypes.c_void_p), | ||
ctypes.c_int(ngrids_of_split), | ||
ctypes.cast(dm_pair_ordered.data.ptr, ctypes.c_void_p), | ||
intopt.density_offset.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.cast(int3c_density_contracted[:, i_grid_split : i_grid_split + ngrids_of_split].data.ptr, ctypes.c_void_p), | ||
bins_locs_ij.ctypes.data_as(ctypes.c_void_p), | ||
ctypes.c_int(nbins), | ||
ctypes.c_int(cp_ij_id), | ||
ctypes.c_double(omega), | ||
ctypes.c_int(n_pair_sum_per_thread)) | ||
|
||
if err != 0: | ||
raise RuntimeError('GINTfill_int3c1e_density_contracted failed') | ||
|
||
return int3c_density_contracted | ||
|
||
def get_int3c1e_ip_contracted(mol, grids, charge_exponents, dm, charges, intopt): | ||
dm = cp.asarray(dm) | ||
if dm.ndim == 3: | ||
if dm.shape[0] > 2: | ||
print("Warning: more than two density matrices are found for int3c1e kernel. " | ||
"They will be summed up to one density matrix.") | ||
dm = cp.einsum("ijk->jk", dm) | ||
|
||
assert dm.ndim == 2 | ||
assert dm.shape[0] == dm.shape[1] and dm.shape[0] == mol.nao | ||
|
||
grids = cp.asarray(grids, order='C') | ||
if charge_exponents is not None: | ||
charge_exponents = cp.asarray(charge_exponents, order='C') | ||
|
||
assert charges.ndim == 1 and charges.shape[0] == grids.shape[0] | ||
charges = cp.asarray(charges) | ||
|
||
int3c_ip2 = get_int3c1e_ip2_density_contracted(mol, grids, charge_exponents, dm, intopt) | ||
int3c_ip2 = int3c_ip2 * charges | ||
|
||
int3c_ip1 = get_int3c1e_ip1_charge_contracted(mol, grids, charge_exponents, charges, intopt) | ||
int3c_ip1 = cp.einsum('xji,ij->xi', int3c_ip1, dm) | ||
|
||
return int3c_ip1, int3c_ip2 |
Oops, something went wrong.