|
5 |
edited tags; [made Community Wiki]
|
||
|
|
||||
|
4 | added 64 characters in body | ||
|
Below is my current char* to hex string function. I wrote it as an exercise in bit manipulation. It takes ~7ms on a AMD Athlon MP 2800+ to hexify a 10 million byte array. Is there any trick or other way that I am missing? How can I make this faster? Compiled with -O3 in g++
Updates Added timing code Brian R. Bondy: replace the std::string with a heap alloc'd buffer and change ofs*16 to ofs << 4 - however the heap allocated buffer seems to slow it down? - result ~11ms Antti Sykäri:replace inner loop with
result ~8ms Robert: replace HoyHoy: Noted it was producing incorrect results |
||||
|
3 | added 539 characters in body | ||
|
Below is my current char* to hex string function. I wrote it as an exercise in bit manipulation. It takes ~5ms 7ms on a AMD Athlon MP 2800+ to hexify a 10 million byte array. Is there any trick or other way that I am missing? How can I make this faster? Compiled with -O3 in g++
Updates Added timing code Brian R. Bondy: replace the std::string with a heap alloc'd buffer and change ofs*16 to ofs << 4 - however the heap allocated buffer seems to slow it down? - result ~11ms Antti Sykäri:replace inner loop with
result ~8ms Robert: replace
|
||||
|
2 | added 520 characters in body; edited tags | ||
|
1 |
|
||
