Source code for halotools.mock_observables.pair_counters.marked_npairs_3d

""" Module containing the `~halotools.mock_observables.npairs_3d` function
used to count pairs as a function of separation.
"""
from __future__ import (absolute_import, division, print_function, unicode_literals)
import numpy as np
import multiprocessing
from functools import partial

from .npairs_3d import _npairs_3d_process_args
from .mesh_helpers import _set_approximate_cell_sizes, _cell1_parallelization_indices
from .rectangular_mesh import RectangularDoubleMesh

from .marked_cpairs import marked_npairs_3d_engine

from ...custom_exceptions import HalotoolsError

__author__ = ('Duncan Campbell', 'Andrew Hearin')


__all__ = ('marked_npairs_3d', )


# cbx_aph: weight_function_id is not optional. However moving it to be a
# required arg is a breaking change.
[docs]def marked_npairs_3d(sample1, sample2, rbins, weight_func_id, period=None, weights1=None, weights2=None, num_threads=1, approx_cell1_size=None, approx_cell2_size=None): """ Calculate the weighted number of pairs with separations less than or equal to the input ``rbins``, :math:`W(<r)`. The weight given to each pair is determined by the weights for a pair, :math:`w_1`, :math:`w_2`, and a user-specified "weighting function", indicated by the ``weight_func_id`` parameter, :math:`f(w_1,w_2)`. Note that if sample1 == sample2 that the `marked_npairs` function double-counts pairs. Note that this does not count the number of pairs *between* the bins, but rather the total number with separation smaller than each bin. Parameters ---------- sample1 : array_like Numpy array of shape (Npts1, 3) containing 3-D positions of points. See the :ref:`mock_obs_pos_formatting` documentation page, or the Examples section below, for instructions on how to transform your coordinate position arrays into the format accepted by the ``sample1`` and ``sample2`` arguments. Length units are comoving and assumed to be in Mpc/h, here and throughout Halotools. sample2 : array_like Numpy array of shape (Npts2, 3) containing 3-D positions of points. Should be identical to sample1 for cases of auto-sample pair counts. rbins : array_like numpy array of length *Nrbins+1* defining the boundaries of bins in which pairs are counted. weight_func_id : int, optional weighting function integer ID. Each weighting function requires a specific number of weights per point, *N_weights*. See the Notes for a description of available weighting functions. period : array_like, optional Length-3 sequence defining the periodic boundary conditions in each dimension. If you instead provide a single scalar, Lbox, period is assumed to be the same in all Cartesian directions. weights1 : array_like, optional Either a 1-D array of length *N1*, or a 2-D array of length *N1* x *N_weights*, containing the weights used for the weighted pair counts. If this parameter is None, the weights are set to np.ones(*(N1,N_weights)*). weights2 : array_like, optional Either a 1-D array of length *N1*, or a 2-D array of length *N1* x *N_weights*, containing the weights used for the weighted pair counts. If this parameter is None, the weights are set to np.ones(*(N1,N_weights)*). num_threads : int, optional Number of threads to use in calculation, where parallelization is performed using the python ``multiprocessing`` module. Default is 1 for a purely serial calculation, in which case a multiprocessing Pool object will never be instantiated. A string 'max' may be used to indicate that the pair counters should use all available cores on the machine. approx_cell1_size : array_like, optional Length-3 array serving as a guess for the optimal manner by how points will be apportioned into subvolumes of the simulation box. The optimum choice unavoidably depends on the specs of your machine. Default choice is to use Lbox/10 in each dimension, which will return reasonable result performance for most use-cases. Performance can vary sensitively with this parameter, so it is highly recommended that you experiment with this parameter when carrying out performance-critical calculations. approx_cell2_size : array_like, optional Analogous to ``approx_cell1_size``, but for sample2. See comments for ``approx_cell1_size`` for details. Returns ------- wN_pairs : numpy.array array of length *Nrbins* containing the weighted number counts of pairs Examples -------- For demonstration purposes we create randomly distributed sets of points within a periodic unit cube, using random weights. >>> Npts1, Npts2, Lbox = 1000, 1000, 250. >>> period = [Lbox, Lbox, Lbox] >>> rbins = np.logspace(-1, 1.5, 15) >>> x1 = np.random.uniform(0, Lbox, Npts1) >>> y1 = np.random.uniform(0, Lbox, Npts1) >>> z1 = np.random.uniform(0, Lbox, Npts1) >>> x2 = np.random.uniform(0, Lbox, Npts2) >>> y2 = np.random.uniform(0, Lbox, Npts2) >>> z2 = np.random.uniform(0, Lbox, Npts2) We transform our *x, y, z* points into the array shape used by the pair-counter by taking the transpose of the result of `numpy.vstack`. This boilerplate transformation is used throughout the `~halotools.mock_observables` sub-package: >>> sample1 = np.vstack([x1, y1, z1]).T >>> sample2 = np.vstack([x2, y2, z2]).T >>> weights1 = np.random.random(Npts1) >>> weights2 = np.random.random(Npts2) >>> result = marked_npairs_3d(sample1, sample2, rbins, period = period, weights1 = weights1, weights2 = weights2, weight_func_id=1) Notes ----- See the docstring of the `~halotools.mock_observables.marked_tpcf` function for a description of the available marking functions that can be passed in via the ``wfunc`` optional argument. """ result = _npairs_3d_process_args(sample1, sample2, rbins, period, num_threads, approx_cell1_size, approx_cell2_size) x1in, y1in, z1in, x2in, y2in, z2in = result[0:6] rbins, period, num_threads, PBCs, approx_cell1_size, approx_cell2_size = result[6:] xperiod, yperiod, zperiod = period rmax = np.max(rbins) search_xlength, search_ylength, search_zlength = rmax, rmax, rmax # Process the input weights and with the helper function weights1, weights2 = _marked_npairs_process_weights(sample1, sample2, weights1, weights2, weight_func_id) # Compute the estimates for the cell sizes approx_cell1_size, approx_cell2_size = ( _set_approximate_cell_sizes(approx_cell1_size, approx_cell2_size, period) ) approx_x1cell_size, approx_y1cell_size, approx_z1cell_size = approx_cell1_size approx_x2cell_size, approx_y2cell_size, approx_z2cell_size = approx_cell2_size # Build the rectangular mesh double_mesh = RectangularDoubleMesh(x1in, y1in, z1in, x2in, y2in, z2in, approx_x1cell_size, approx_y1cell_size, approx_z1cell_size, approx_x2cell_size, approx_y2cell_size, approx_z2cell_size, search_xlength, search_ylength, search_zlength, xperiod, yperiod, zperiod, PBCs) # Create a function object that has a single argument, for parallelization purposes engine = partial(marked_npairs_3d_engine, double_mesh, x1in, y1in, z1in, x2in, y2in, z2in, weights1, weights2, weight_func_id, rbins) # Calculate the cell1 indices that will be looped over by the engine num_threads, cell1_tuples = _cell1_parallelization_indices( double_mesh.mesh1.ncells, num_threads) if num_threads > 1: pool = multiprocessing.Pool(num_threads) result = pool.map(engine, cell1_tuples) counts = np.sum(np.array(result), axis=0) pool.close() else: counts = engine(cell1_tuples[0]) return np.array(counts)
def _marked_npairs_process_weights(sample1, sample2, weights1, weights2, weight_func_id): """ """ correct_num_weights = _func_signature_int_from_wfunc(weight_func_id) npts_sample1 = np.shape(sample1)[0] npts_sample2 = np.shape(sample2)[0] correct_shape1 = (npts_sample1, correct_num_weights) correct_shape2 = (npts_sample2, correct_num_weights) # Process the input weights1 _converted_to_2d_from_1d = False # First convert weights1 into a 2-d ndarray if weights1 is None: weights1 = np.ones(correct_shape1, dtype=np.float64) else: weights1 = np.atleast_1d(weights1) weights1 = weights1.astype("float64") if weights1.ndim == 1: _converted_to_2d_from_1d = True npts1 = len(weights1) weights1 = weights1.reshape((npts1, 1)) elif weights1.ndim == 2: pass else: ndim1 = weights1.ndim msg = ("\n You must either pass in a 1-D or 2-D array \n" "for the input `weights1`. Instead, an array of \n" "dimension %i was received.") raise HalotoolsError(msg % ndim1) npts_weights1 = np.shape(weights1)[0] num_weights1 = np.shape(weights1)[1] # At this point, weights1 is guaranteed to be a 2-d ndarray # now we check its shape if np.shape(weights1) != correct_shape1: if _converted_to_2d_from_1d is True: msg = ("\n You passed in a 1-D array for `weights1` that \n" "does not have the correct length. The number of \n" "points in `sample1` = %i, while the number of points \n" "in your input 1-D `weights1` array = %i") raise HalotoolsError(msg % (npts_sample1, npts_weights1)) else: msg = ("\n You passed in a 2-D array for `weights1` that \n" "does not have a consistent shape with `sample1`. \n" "`sample1` has length %i. The input value of `weight_func_id` = %i \n" "For this value of `weight_func_id`, there should be %i weights \n" "per point. The shape of your input `weights1` is (%i, %i)\n") raise HalotoolsError(msg % (npts_sample1, weight_func_id, correct_num_weights, npts_weights1, num_weights1)) # Process the input weights2 _converted_to_2d_from_1d = False # Now convert weights2 into a 2-d ndarray if weights2 is None: weights2 = np.ones(correct_shape2, dtype=np.float64) else: weights2 = np.atleast_1d(weights2) weights2 = weights2.astype("float64") if weights2.ndim == 1: _converted_to_2d_from_1d = True npts2 = len(weights2) weights2 = weights2.reshape((npts2, 1)) elif weights2.ndim == 2: pass else: ndim2 = weights2.ndim msg = ("\n You must either pass in a 1-D or 2-D array \n" "for the input `weights2`. Instead, an array of \n" "dimension %i was received.") raise HalotoolsError(msg % ndim2) npts_weights2 = np.shape(weights2)[0] num_weights2 = np.shape(weights2)[1] # At this point, weights2 is guaranteed to be a 2-d ndarray # now we check its shape if np.shape(weights2) != correct_shape2: if _converted_to_2d_from_1d is True: msg = ("\n You passed in a 1-D array for `weights2` that \n" "does not have the correct length. The number of \n" "points in `sample2` = %i, while the number of points \n" "in your input 1-D `weights2` array = %i") raise HalotoolsError(msg % (npts_sample2, npts_weights2)) else: msg = ("\n You passed in a 2-D array for `weights2` that \n" "does not have a consistent shape with `sample2`. \n" "`sample2` has length %i. The input value of `weight_func_id` = %i \n" "For this value of `weight_func_id`, there should be %i weights \n" "per point. The shape of your input `weights2` is (%i, %i)\n") raise HalotoolsError(msg % (npts_sample2, weight_func_id, correct_num_weights, npts_weights2, num_weights2)) return weights1, weights2 def _func_signature_int_from_wfunc(weight_func_id): """ Return the function signature available weighting functions. """ if type(weight_func_id) != int: msg = "\n weight_func_id parameter must be an integer ID of a weighting function." raise ValueError(msg) if weight_func_id == 1: return 1 elif weight_func_id == 2: return 1 elif weight_func_id == 3: return 2 elif weight_func_id == 4: return 2 elif weight_func_id == 5: return 2 elif weight_func_id == 6: return 2 elif weight_func_id == 7: return 2 elif weight_func_id == 8: return 2 elif weight_func_id == 9: return 2 elif weight_func_id == 10: return 2 elif weight_func_id == 11: return 2 else: msg = ("The value ``weight_func_id`` = %i is not recognized") raise HalotoolsError(msg % weight_func_id)