#author("2020-05-18T03:25:49+00:00","","") #author("2020-05-18T03:27:29+00:00","","") [[hidekiwiki]] #html{{ <meta name="description" content="https://fukumoto.tokyo/wiki/" /> <meta name="keywords" content="普通人間製作所,world,Centos,bcコマンド,ベンチマーク,パフォーマンス,負荷試験,高野式,円周率 /> <link rel="canonical" href="https://fukumoto.tokyo/wiki/" /> <br> <a href="http://it.blogmura.com/linux/"><img src="http://it.blogmura.com/linux/img/linux80_15_darkgray_1.gif" width="80" height="15" border="0" alt="にほんブログ村 IT技術ブログ Linuxへ" /></a><br /><a href="http://it.blogmura.com/linux/">にほんブログ村</a> <a href="https://it.blogmura.com/linux/"><img src="https://it.blogmura.com/linux/img/linux80_15_darkgray_1.gif" width="80" height="15" border="0" alt="にほんブログ村 IT技術ブログ Linuxへ" /></a><br /><a href="https://it.blogmura.com/linux/">にほんブログ村</a> <!-- admax --> <script src="http://adm.shinobi.jp/s/1a0429ab1f292195e9a461469817a0ca"></script> <script src="https://adm.shinobi.jp/s/1a0429ab1f292195e9a461469817a0ca"></script> <!-- admax --> </html> }} Centos等のサーバの負荷試験(CPUベンチマーク)のために、円周率計算をおこなう際のメモ **円周率を1万桁まで計算する(高野の公式(1982年)を使用) [#g17aefc9] $ bc -l -q scale = 10000; (12*a(1/49)+32*a(1/57)-5*a(1/239)+12*a(1/110443))*4 **円周率を100桁まで計算する(高野の公式(1982年)を使用) [#y781f4ff] $ bc -l -q scale = 100; (12*a(1/49)+32*a(1/57)-5*a(1/239)+12*a(1/110443))*4