任意次元の変数
を高速に計算するためのライブラリ
cmakeを用いた場合、以下のようにしてインストール出来る
cmake -B build
cmake --build build
cmake --install build
BLASを用いて高速化する場合は、build時に
cmake -B build -DFMMA_USE_BLAS=ON
とする
pip を用いてインストール可能
pip install pyfmma
もしくは
pip install git+https://github.com/fockl/FMMA.git
cmakeを用いてより詳しく条件を設定したい場合は
cmake -B build
cmake --build build
をした後 python 側で
import build.pyfmma
をする
C++の場合、
fmma::FMMA<double, 3> fmma;
fmma.set_fn([](auto x, auto y){return 1.0/(x[0]-y[0]);});
fmma.set_solver_type("fmm");
fmma.solve(target, source_weight, source, ans);
のようにして使用する
詳しくはtutorial参照
現在はsolverとしてexact
, nrnmm
, tree
, fmm
が実装済み
type | computatoin cost |
---|---|
exact | |
nrnmm | |
tree | |
fmm |
github-actions を用いたベンチマーク結果:
1次元の場合:
2次元の場合:
- W. Fong and E. Darve. The black-box fast multipole method. Journal of Computational Physics, 228 (2009).
FMMA is a library to calculate fastly
for arbitrary function
Benchmark results using github-actions are follows :
1D:
2D:
You can install this library as follows if cmake is used:
cmake -B build
cmake --build build
cmake --install build
If BLAS is required, define an argument like:
cmake -B build -DFMMA_USE_BLAS=ON
You can install via pip
pip install pyfmma
or
pip install git+https://github.com/fockl/FMMA.git
If you want to set details with using cmake,
cmake -B build
cmake --build build
and in python
import build.pyfmma
In C++, you can use FMMA as
fmma::FMMA<double, 3> fmma;
fmma.set_fn([](auto x, auto y){return 1.0/(x[0]-y[0]);});
fmma.set_solver_type("fmm");
fmma.solve(target, source_weight, source, ans);
For more details, see tutorials
exact
, nrnmm
, tree
, fmm
are now implemented as solver.
when
type | computatoin cost |
---|---|
exact | |
nrnmm | |
tree | |
fmm |
Benchmark results using github-actions are as follows:
1D:
2D:
- W. Fong and E. Darve. The black-box fast multipole method. Journal of Computational Physics, 228 (2009).