or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
![image alt](https:// "title") | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | Emoji list | ||
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
compute-pi
contributed by <
snoopy831002
>reviewed by <
janetwei
>流程
make check
開使編繹分別產生5個執行檔make gencsv
將執行結果輸入至csv檔中這邊參考 王紹華 的共筆 我們可以更改 Makefile中的gencsv標題來決定我們取樣的點個數(預設只取樣5個點也就是100 5100 10100 15100 20100 這五個點)
make plot
首先於Makefile中加入
如果此時出現Skipping data file with no valid points
請在runtime .gp檔案中增加
set datafile separator","
(因為CSV檔案中
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →分析
以下為50筆資料之結果:
以下為250筆資料之結果
以下為500筆資料之結果
在benchmark_clock_gettime.c中意外發現所測之clock其實是疊代25次之結果(原執行時間之25倍),所以應將程式改為取25次運算時間之平均
統計學上,我們可以預測在95%信心水準下,95%以上的正確資料會出現在此信賴區間內。
公式:
upperbound: μ+2*SD
lowerbound: μ-2*SD
以下為50筆資料之結果
以下為250筆資料之結果
以下為500筆資料之結果
由這幾張圖可以發現資料跳動已經不如未修正之前了
誤差
以下為50筆資料之結果
以下為250筆資料之結果
以下為500筆資料之結果
參考資料
王紹華的共筆
廖健富的共筆
信賴區間