mchep 0.1.1

Highly parallelizable Monte Carlo integration routine with SIMD and GPU acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `MCHeP` is a multi-dimensional Monte Carlo integration routine.
//!
//! Currently, `MCHeP` implements the VEGAS (adaptive importance sampling)
//! and VEGAS+ adaptive stratified sampling algorithms.

pub mod grid;
pub mod integrand;
pub mod vegas;
pub mod vegasplus;

#[cfg(feature = "mpi")]
pub mod mpi;

#[cfg(feature = "gpu")]
pub mod gpu;