尚未優化前的執行時間
time
指令測量時間time ./tutorial mandelbrot.bf
real 0m39.753s user 0m39.576s sys 0m0.168s
Real is wall clock time - time from start to finish of the call. This is all elapsed time
including time slices used by other processes and time the process spends blocked (for example if
it is waiting for I/O to complete).
User is the amount of CPU time spent in user-mode code (outside the kernel) within the process.
This is only actual CPU time used in executing the process. Other processes and time the process
spends blocked do not count towards this figure.
Sys is the amount of CPU time spent in the kernel within the process. This means executing CPU
time spent in system calls within the kernel, as opposed to library code, which is still running
in user-space. Like 'user', this is only CPU time used by the process.
優化後版本
#include "luajit-2.0/dynasm/dasm_proto.h";
#include "luajit-2.0/dynasm/dasm_x86.h";
- static void bf_interpret(const char* program, bf_state_t* state) ;
+ static void(* bf_compile(const char* program) )(bf_state_t*)
- bf_interpret(program, &state);
+ bf_compile(program)(&state);
time
指令測量時間time ./tutorial mandelbrot.bf
real 0m1.877s user 0m1.868s sys 0m0.000s
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 | ||
`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