Sign in to import from GitHub:
contributed by < f74034067
>
TingL7
LinYunWen
catpig1630
$ uname -a
Linux suchihhan-S551LN 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
$ lscpu
Architecture: x86_64
CPU 作業模式: 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
每核心執行緒數:2
每通訊端核心數:2
Socket(s): 1
NUMA 節點: 1
供應商識別號: GenuineIntel
CPU 家族: 6
型號: 69
Model name: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz
製程: 1
CPU MHz: 2394.417
CPU max MHz: 3000.0000
CPU min MHz: 800.0000
BogoMIPS: 4788.83
虛擬: VT-x
L1d 快取: 32K
L1i 快取: 32K
L2 快取: 256K
L3 快取: 4096K
NUMA node0 CPU(s): 0-3
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt dtherm ida arat pln pts
$ echo 1 | sudo tee /proc/sys/vm/drop_caches
$ make run
size of entry : 136 bytes
execution time of append() : 0.044759 sec
execution time of findName() : 0.005746 sec
3
$ make cache-test
Performance counter stats for './phonebook_orig' (100 runs):
1,264,772 cache-misses # 91.021 % of all cache refs ( +- 0.15% )
1,389,539 cache-references ( +- 0.14% )
263,700,620 instructions # 1.38 insn per cycle ( +- 0.02% )
190,770,983 cycles ( +- 0.10% )
0.065283811 seconds time elapsed ( +- 0.15% )
$ make plot
$ eog runtime.png
閱讀
變更 phonebook_opt.h
中的 data structure
typedef struct __PHONE_BOOK_DETAILS {
char firstName[16];
char email[16];
char phone[10];
char cell[10];
char addr1[16];
char addr2[16];
char city[16];
char state[2];
char zip[5];
}details;
typedef struct __PHONE_BOOK_ENTRY {
char lastName[MAX_LAST_NAME_SIZE];
struct __PHONE_BOOK_DETAILS *pDetails;
struct __PHONE_BOOK_ENTRY *pNext;
} entry;
size of entry : 32 bytes
execution time of append() : 0.035513 sec
execution time of findName() : 0.002131 sec
3
Performance counter stats for './phonebook_opt' (100 runs):
136,779 cache-misses # 28.291 % of all cache refs ( +- 0.54% )
483,463 cache-references ( +- 0.80% )
244,903,216 instructions # 1.81 insn per cycle ( +- 0.02% )
134,977,356 cycles ( +- 0.75% )
0.047471423 seconds time elapsed ( +- 0.85% )
閱讀
BKDR hash
unsigned int bkdr_hash(const char *key)
{
unsigned int seed = 31;
unsigned int hash = 0;
while (*key) {
hash = hash * seed +(*key++);
}
return (hash % MAX_TABLE_SIZE);
}
Performance counter stats for './phonebook_opt' (100 runs):
87,260 cache-misses # 20.894 % of all cache refs ( +- 2.80% )
417,621 cache-references ( +- 0.84% )
233,879,770 instructions # 1.66 insn per cycle ( +- 0.02% )
140,497,240 cycles ( +- 0.56% )
0.049157785 seconds time elapsed ( +- 0.72% )
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