YUTIAN0 / compute-pi

Leibniz formula for π

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

採用離散積分的方法求圓周率,並著手透過 SIMD 指令作效能最佳化

Authored by Lee Chao Yuan <charles620016@gmail.com>

相關連結

Baseline 版本

double computePi_v1(size_t N)
{
    double pi = 0.0;
    double dt = 1.0 / N;                // dt = (b-a)/N, b = 1, a = 0
    for (size_t i = 0; i < N; i++) {
        double x = (double) i / N;      // x = ti = a+(b-a)*i/N = i/N
        pi += dt / (1.0 + x * x);       // integrate 1/(1+x^2), i = 0....N
    }
    return pi * 4.0;
}

Benchmarking

About

Leibniz formula for π

License:Other


Languages

Language:C 58.1%Language:Shell 31.4%Language:Makefile 5.9%Language:Gnuplot 4.6%