mirror of
https://github.com/DifferentiableUniverseInitiative/JaxPM.git
synced 2025-04-08 04:40:53 +00:00
fix painting issue with read_cic
This commit is contained in:
parent
0f833f0cb4
commit
d2f1eb2fa4
1 changed files with 23 additions and 27 deletions
|
@ -11,17 +11,11 @@ from jaxpm.kernels import cic_compensation, fftk
|
||||||
from jaxpm.painting_utils import gather, scatter
|
from jaxpm.painting_utils import gather, scatter
|
||||||
|
|
||||||
|
|
||||||
def cic_paint_impl(grid_mesh, displacement, weight=None):
|
def cic_paint_impl(grid_mesh, positions, weight=None):
|
||||||
""" Paints positions onto mesh
|
""" Paints positions onto mesh
|
||||||
mesh: [nx, ny, nz]
|
mesh: [nx, ny, nz]
|
||||||
displacement field: [nx, ny, nz, 3]
|
displacement field: [nx, ny, nz, 3]
|
||||||
"""
|
"""
|
||||||
part_shape = displacement.shape
|
|
||||||
positions = jnp.stack(jnp.meshgrid(jnp.arange(part_shape[0]),
|
|
||||||
jnp.arange(part_shape[1]),
|
|
||||||
jnp.arange(part_shape[2]),
|
|
||||||
indexing='ij'),
|
|
||||||
axis=-1) + displacement
|
|
||||||
positions = positions.reshape([-1, 3])
|
positions = positions.reshape([-1, 3])
|
||||||
positions = jnp.expand_dims(positions, 1)
|
positions = jnp.expand_dims(positions, 1)
|
||||||
floor = jnp.floor(positions)
|
floor = jnp.floor(positions)
|
||||||
|
@ -47,7 +41,7 @@ def cic_paint_impl(grid_mesh, displacement, weight=None):
|
||||||
return mesh
|
return mesh
|
||||||
|
|
||||||
|
|
||||||
@partial(jax.jit, static_argnums=(2, 3, 4))
|
#@partial(jax.jit, static_argnums=(2, 3, 4))
|
||||||
def cic_paint(grid_mesh, positions, halo_size=0, weight=None, sharding=None):
|
def cic_paint(grid_mesh, positions, halo_size=0, weight=None, sharding=None):
|
||||||
|
|
||||||
positions = positions.reshape((*grid_mesh.shape, 3))
|
positions = positions.reshape((*grid_mesh.shape, 3))
|
||||||
|
@ -66,43 +60,46 @@ def cic_paint(grid_mesh, positions, halo_size=0, weight=None, sharding=None):
|
||||||
halo_periods=(True, True))
|
halo_periods=(True, True))
|
||||||
grid_mesh = slice_unpad(grid_mesh, halo_size, sharding)
|
grid_mesh = slice_unpad(grid_mesh, halo_size, sharding)
|
||||||
|
|
||||||
print(f"shape of grid_mesh: {grid_mesh.shape}")
|
|
||||||
return grid_mesh
|
return grid_mesh
|
||||||
|
|
||||||
|
|
||||||
def cic_read_impl(mesh, displacement):
|
def cic_read_impl(grid_mesh, positions):
|
||||||
""" Paints positions onto mesh
|
""" Paints positions onto mesh
|
||||||
mesh: [nx, ny, nz]
|
mesh: [nx, ny, nz]
|
||||||
displacement: [nx,ny,nz, 3]
|
positions: [nx,ny,nz, 3]
|
||||||
"""
|
"""
|
||||||
# Compute the position of the particles on a regular grid
|
# Save original shape for reshaping output later
|
||||||
part_shape = displacement.shape
|
original_shape = positions.shape
|
||||||
positions = jnp.stack(jnp.meshgrid(jnp.arange(part_shape[0]),
|
# Reshape positions to a flat list of 3D coordinates
|
||||||
jnp.arange(part_shape[1]),
|
|
||||||
jnp.arange(part_shape[2]),
|
|
||||||
indexing='ij'),
|
|
||||||
axis=-1) + displacement
|
|
||||||
positions = positions.reshape([-1, 3])
|
positions = positions.reshape([-1, 3])
|
||||||
|
# Expand dimensions to calculate neighbor coordinates
|
||||||
positions = jnp.expand_dims(positions, 1)
|
positions = jnp.expand_dims(positions, 1)
|
||||||
|
# Floor the positions to get the base grid cell for each particle
|
||||||
floor = jnp.floor(positions)
|
floor = jnp.floor(positions)
|
||||||
|
# Define connections to calculate all neighbor coordinates
|
||||||
connection = jnp.array([[[0, 0, 0], [1., 0, 0], [0., 1, 0], [0., 0, 1],
|
connection = jnp.array([[[0, 0, 0], [1., 0, 0], [0., 1, 0], [0., 0, 1],
|
||||||
[1., 1, 0], [1., 0, 1], [0., 1, 1], [1., 1, 1]]])
|
[1., 1, 0], [1., 0, 1], [0., 1, 1], [1., 1, 1]]])
|
||||||
|
# Calculate the 8 neighboring coordinates
|
||||||
neighboor_coords = floor + connection
|
neighboor_coords = floor + connection
|
||||||
|
# Calculate kernel weights based on distance from each neighboring coordinate
|
||||||
kernel = 1. - jnp.abs(positions - neighboor_coords)
|
kernel = 1. - jnp.abs(positions - neighboor_coords)
|
||||||
kernel = kernel[..., 0] * kernel[..., 1] * kernel[..., 2]
|
kernel = kernel[..., 0] * kernel[..., 1] * kernel[..., 2]
|
||||||
|
# Modulo operation to wrap around edges if necessary
|
||||||
neighboor_coords = jnp.mod(neighboor_coords.astype('int32'),
|
neighboor_coords = jnp.mod(neighboor_coords.astype('int32'),
|
||||||
jnp.array(mesh.shape))
|
jnp.array(grid_mesh.shape))
|
||||||
|
# Ensure grid_mesh shape is as expected
|
||||||
return (mesh[neighboor_coords[..., 0], neighboor_coords[..., 1],
|
# Retrieve values from grid_mesh at each neighboring coordinate and multiply by kernel
|
||||||
neighboor_coords[..., 3]] * kernel).sum(axis=-1).reshape(
|
return (grid_mesh[neighboor_coords[..., 0],
|
||||||
displacement.shape[:-1])
|
neighboor_coords[..., 1],
|
||||||
|
neighboor_coords[..., 2]] * kernel).sum(axis=-1).reshape(original_shape[:-1]) # yapf: disable
|
||||||
|
|
||||||
|
|
||||||
@partial(jax.jit, static_argnums=(2, 3))
|
@partial(jax.jit, static_argnums=(2, 3))
|
||||||
def cic_read(grid_mesh, positions, halo_size=0, sharding=None):
|
def cic_read(grid_mesh, positions, halo_size=0, sharding=None):
|
||||||
|
|
||||||
|
original_shape = positions.shape
|
||||||
|
positions = positions.reshape((*grid_mesh.shape, 3))
|
||||||
|
|
||||||
halo_size, halo_extents = get_halo_size(halo_size, sharding=sharding)
|
halo_size, halo_extents = get_halo_size(halo_size, sharding=sharding)
|
||||||
grid_mesh = slice_pad(grid_mesh, halo_size, sharding=sharding)
|
grid_mesh = slice_pad(grid_mesh, halo_size, sharding=sharding)
|
||||||
grid_mesh = halo_exchange(grid_mesh,
|
grid_mesh = halo_exchange(grid_mesh,
|
||||||
|
@ -114,9 +111,8 @@ def cic_read(grid_mesh, positions, halo_size=0, sharding=None):
|
||||||
gpu_mesh=gpu_mesh,
|
gpu_mesh=gpu_mesh,
|
||||||
in_specs=(spec, spec),
|
in_specs=(spec, spec),
|
||||||
out_specs=spec)(grid_mesh, positions)
|
out_specs=spec)(grid_mesh, positions)
|
||||||
print(f"shape of displacement: {displacement.shape}")
|
|
||||||
|
|
||||||
return displacement
|
return displacement.reshape(original_shape[:-1])
|
||||||
|
|
||||||
|
|
||||||
def cic_paint_2d(mesh, positions, weight):
|
def cic_paint_2d(mesh, positions, weight):
|
||||||
|
|
Loading…
Add table
Reference in a new issue