來測測ADATA UV150和新加坡力鍶的Jet

威剛的UV150外觀,蓋子可以塞在尾端防止不見,終保
ADATA UV150 16G - 1
成績不錯,比我想像的好,不過Seq Q32比Seq慢不知道發生了什麼事

Strontium JET 16GB,蓋子一樣可以塞在尾端,五年有限保固,也不知道壞了要找誰保固科科
Strontium JET 16GB成績看起來不怎麼樣,不過寫入比UV150還好一些

隨身碟不小心不見了多難過,雖然很想買CZ80,但又怕不見,還是便宜的隨便用對我來說比較合適
int cmp(const void* a, const void* b){it would easily cause a overflow, like 2000000000-(-2000000000), it would overflow and become a negative number.
return *(int*)a - *(int*)b;
}
int cmp(const void* a, const void* b){
if(*(int*)a > *(int*)b)return 1;
else if(*(int*)a < *(int*)b)return -1;
return 0;
}
update-grubOr if you have many storage devices not only SSD but also motion driven devices, you can edit or create a file in
# set noop scheduler for non-rotating disksAnd use
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="noop"
# set cfq scheduler for rotating disks
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="cfq"
cat /sys/block/sda/queue/schedulerto see the scheduler status.
#include <omp.h>in headers.
#pragma omp parallel forbefore your for loop.
gcc ctest.c -fopenmp .....Then it would run like this.