char[] to hex string exercise - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T05:14:33Zhttp://stackoverflow.com/feeds/question/69115http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/69115/char-to-hex-string-exercise2char[] to hex string exerciseroo2008-09-16T03:15:40Z2009-08-07T12:45:04Z
<p>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?</p>
<p>How can I make this faster?</p>
<p>Compiled with -O3 in g++</p>
<pre><code>static const char _hex2asciiU_value[256][2] =
{ {'0','0'}, {'0','1'}, /* snip..., */ {'F','E'},{'F','F'} };
std::string char_to_hex( const unsigned char* _pArray, unsigned int _len )
{
std::string str;
str.resize(_len*2);
char* pszHex = &str[0];
const unsigned char* pEnd = _pArray + _len;
clock_t stick, etick;
stick = clock();
for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++, pszHex += 2 ) {
pszHex[0] = _hex2asciiU_value[*pChar][0];
pszHex[1] = _hex2asciiU_value[*pChar][1];
}
etick = clock();
std::cout << "ticks to hexify " << etick - stick << std::endl;
return str;
}
</code></pre>
<p><strong>Updates</strong></p>
<p>Added timing code</p>
<p><a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69126">Brian R. Bondy</a>: 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</p>
<p><a href="http://stackoverflow.com/questions/69115/#69305">Antti Sykäri</a>:replace inner loop with </p>
<pre><code> int upper = *pChar >> 4;
int lower = *pChar & 0x0f;
pszHex[0] = pHex[upper];
pszHex[1] = pHex[lower];
</code></pre>
<p>result ~8ms</p>
<p><a href="http://stackoverflow.com/questions/69115?sort=votes#69218">Robert</a>: replace <code>_hex2asciiU_value</code> with a full 256-entry table, sacrificing memory space but result ~7ms!</p>
<p><a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#70254">HoyHoy</a>: Noted it was producing incorrect results</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69126#691262Answer by Brian R. Bondy for char[] to hex string exerciseBrian R. Bondy2008-09-16T03:17:24Z2008-09-16T03:17:24Z<p>For one, instead of *16 do a bitshift << 4</p>
<p>Also don't use the stl string, instead just create a buffer on the heap and then delete it. It will be more efficient than the object destruction that is needed from the string. </p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69132#691323Answer by Allan Wind for char[] to hex string exerciseAllan Wind2008-09-16T03:18:30Z2008-09-16T03:18:30Z<p>Operate on 32 bits at a time (4 chars), then deal with the tail if needed. When I did this exercise with urlencoding a full table lookup for each char was slightly faster than logic constructs, so you may want to test this in context as well to take caching issues into account.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69139#691391Answer by Keith Nicholas for char[] to hex string exerciseKeith Nicholas2008-09-16T03:20:11Z2008-09-16T03:20:11Z<p>not going to make a lot of difference... <em>pChar-(ofs</em>16) can be done with [*pCHar & 0x0F]</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69197#691971Answer by Chris Jester-Young for char[] to hex string exerciseChris Jester-Young2008-09-16T03:38:37Z2008-09-16T03:38:37Z<p>This is my version, which, unlike the OP's version, doesn't assume that <code>std::basic_string</code> has its data in contiguous region:</p>
<pre><code>#include <string>
using std::string;
static char const* digits("0123456789ABCDEF");
string
tohex(string const& data)
{
string result(data.size() * 2, 0);
string::iterator ptr(result.begin());
for (string::const_iterator cur(data.begin()), end(data.end()); cur != end; ++cur) {
unsigned char c(*cur);
*ptr++ = digits[c >> 4];
*ptr++ = digits[c & 15];
}
return result;
}
</code></pre>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69213#692130Answer by Anonymous for char[] to hex string exerciseAnonymous2008-09-16T03:41:54Z2008-09-16T03:41:54Z<p>Make sure your compiler optimization is turned on to the highest working level.</p>
<p>You know, flags like '-O1' to '-03' in gcc.</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69218#692183Answer by Robert for char[] to hex string exerciseRobert2008-09-16T03:42:49Z2008-09-16T03:42:49Z<p>At the cost of more memory you can create a full 256-entry table of the hex codes:</p>
<pre><code>static const char _hex2asciiU_value[256][2] =
{ {'0','0'}, {'0','1'}, /* ..., */ {'F','E'},{'F','F'} };
</code></pre>
<p>Then direct index into the table, no bit fiddling required.</p>
<pre><code>const char *pHexVal = pHex[*pChar];
pszHex[0] = pHexVal[0];
pszHex[1] = pHexVal[1];
</code></pre>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69305#693051Answer by Antti Sykäri for char[] to hex string exerciseAntti Sykäri2008-09-16T04:04:23Z2008-09-16T04:42:10Z<p>Changing</p>
<pre><code> ofs = *pChar >> 4;
pszHex[0] = pHex[ofs];
pszHex[1] = pHex[*pChar-(ofs*16)];
</code></pre>
<p>to</p>
<pre><code> int upper = *pChar >> 4;
int lower = *pChar & 0x0f;
pszHex[0] = pHex[upper];
pszHex[1] = pHex[lower];
</code></pre>
<p>results in roughly 5% speedup.</p>
<p>Writing the result two bytes at time as suggested by <a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69218">Robert</a> results in about 18% speedup. The code changes to:</p>
<pre><code>_result.resize(_len*2);
short* pszHex = (short*) &_result[0];
const unsigned char* pEnd = _pArray + _len;
const char* pHex = _hex2asciiU_value;
for(const unsigned char* pChar = _pArray;
pChar != pEnd;
pChar++, ++pszHex )
{
*pszHex = bytes_to_chars[*pChar];
}
</code></pre>
<p>Required initialization:</p>
<pre><code>short short_table[256];
for (int i = 0; i < 256; ++i)
{
char* pc = (char*) &short_table[i];
pc[0] = _hex2asciiU_value[i >> 4];
pc[1] = _hex2asciiU_value[i & 0x0f];
}
</code></pre>
<p>Doing it 2 bytes at a time or 4 bytes at a time will probably result in even greater speedups, as pointed out by <a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69132">Allan Wind</a>, but then it gets trickier when you have to deal with the odd characters.</p>
<p>If you're feeling adventurous, you might try to adapt <a href="http://en.wikipedia.org/wiki/Duff's_device" rel="nofollow">Duff's device</a> to do this.</p>
<p>Results are on an Intel Core Duo 2 processor and <code>gcc -O3</code>.</p>
<p><strong>Always measure</strong> that you actually get faster results — a pessimization pretending to be an optimization is less than worthless.</p>
<p><strong>Always test</strong> that you get the correct results — a bug pretending to be an optimization is downright dangerous.</p>
<p>And <strong>always keep in mind</strong> the tradeoff between speed and readability — life is too short for anyone to maintain unreadable code.</p>
<p>(<a href="http://c2.com/cgi/wiki?CodeForTheMaintainer" rel="nofollow">Obligatory reference</a> to coding for the <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">violent psychopath who knows where you live</a>.)</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69499#694990Answer by Mark Ransom for char[] to hex string exerciseMark Ransom2008-09-16T04:57:21Z2008-09-16T04:57:21Z<p>I have found that using an index into an array, rather than a pointer, can speed things up a tick. It all depends on how your compiler chooses to optimize. The key is that the processor has instructions to do complex things like [i*2+1] in a single instruction.</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70254#702540Answer by hoyhoy for char[] to hex string exercisehoyhoy2008-09-16T08:05:41Z2008-09-16T20:27:34Z<p>The function as it is shown when I'm writing this produces incorrect output even when _hex2asciiU_value is fully specified. The following code works, and on my 2.33GHz Macbook Pro runs in about 1.9 seconds for 200,000,000 million characters. </p>
<pre><code>#include <iostream>
using namespace std;
static const size_t _h2alen = 256;
static char _hex2asciiU_value[_h2alen][3];
string char_to_hex( const unsigned char* _pArray, unsigned int _len )
{
string str;
str.resize(_len*2);
char* pszHex = &str[0];
const unsigned char* pEnd = _pArray + _len;
const char* pHex = _hex2asciiU_value[0];
for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++, pszHex += 2 ) {
pszHex[0] = _hex2asciiU_value[*pChar][0];
pszHex[1] = _hex2asciiU_value[*pChar][1];
}
return str;
}
int main() {
for(int i=0; i<_h2alen; i++) {
snprintf(_hex2asciiU_value[i], 3,"%02X", i);
}
size_t len = 200000000;
char* a = new char[len];
string t1;
string t2;
clock_t start;
srand(time(NULL));
for(int i=0; i<len; i++) a[i] = rand()&0xFF;
start = clock();
t1=char_to_hex((const unsigned char*)a, len);
cout << "char_to_hex conversion took ---> " << (clock() - start)/(double)CLOCKS_PER_SEC << " seconds\n";
}
</code></pre>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70275#702750Answer by Dark Shikari for char[] to hex string exerciseDark Shikari2008-09-16T08:11:49Z2008-09-16T08:11:49Z<p>If you're rather obsessive about speed here, you can do the following:</p>
<p>Each character is one byte, representing two hex values. Thus, each character is really two four-bit values.</p>
<p>So, you can do the following:</p>
<ol>
<li>Unpack the four-bit values to 8-bit values using a multiplication or similar instruction.</li>
<li>Use pshufb, the SSSE3 instruction (Core2-only though). It takes an array of 16 8-bit input values and shuffles them based on the 16 8-bit indices in a second vector. Since you have only 16 possible characters, this fits perfectly; the input array is a vector of 0 through F characters, and the index array is your unpacked array of 4-bit values.</li>
</ol>
<p>Thus, in a <em>single instruction</em>, you will have performed <strong>16 table lookups</strong> in fewer clocks than it normally takes to do just one (pshufb is 1 clock latency on Penryn).</p>
<p>So, in computational steps:</p>
<ol>
<li>A B C D E F G H I J K L M N O P (64-bit vector of input values, "Vector A") -> 0A 0B 0C 0D 0E 0F 0G 0H 0I 0J 0K 0L 0M 0N 0O 0P (128-bit vector of indices, "Vector B"). The easiest way is probably two 64-bit multiplies.</li>
<li>pshub [0123456789ABCDEF], Vector B</li>
</ol>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70348#703480Answer by slicedlime for char[] to hex string exerciseslicedlime2008-09-16T08:25:35Z2008-09-16T08:25:35Z<p>I'm not sure doing it more bytes at a time will be better... you'll probably just get tons of cache misses and slow it down significantly.</p>
<p>What you might try is to unroll the loop though, take larger steps and do more characters each time through the loop, to remove some of the loop overhead.</p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/72055#720550Answer by John Allen for char[] to hex string exerciseJohn Allen2008-09-16T13:16:36Z2008-09-16T13:16:36Z<p>Consistently getting ~4ms on my Athlon 64 4200+ (~7ms with original code)</p>
<pre><code>for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++) {
const char* pchars = _hex2asciiU_value[*pChar];
*pszHex++ = *pchars++;
*pszHex++ = *pchars;
}
</code></pre>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/78611#786113Answer by hoyhoy for char[] to hex string exercisehoyhoy2008-09-17T00:18:28Z2008-09-17T00:27:48Z<p><strong>Faster C Implmentation</strong></p>
<p>This runs nearly 3x faster than the C++ implementation. Not sure why as it's pretty similar. For the last C++ implementation that I posted it took 6.8 seconds to run through a 200,000,000 character array. The implementation took only 2.2 seconds. </p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
char* char_to_hex( const unsigned char* p_array, unsigned int p_array_len, char** hex2ascii) {
unsigned char* str = malloc(p_array_len*2+1);
const unsigned char* p_end = p_array + p_array_len;
size_t pos=0;
const unsigned char* p;
for( p = p_array; p != p_end; p++, pos+=2 ) {
str[pos] = hex2ascii[*p][0];
str[pos+1] = hex2ascii[*p][1];
}
return (char*)str;
}
int main() {
size_t hex2ascii_len = 256;
char** hex2ascii;
int i;
hex2ascii = malloc(hex2ascii_len*sizeof(char*));
for(i=0; i<hex2ascii_len; i++) {
hex2ascii[i] = malloc(3*sizeof(char));
snprintf(hex2ascii[i], 3,"%02X", i);
}
size_t len = 8;
const unsigned char a[] = "DO NOT WANT";
printf("%s\n", char_to_hex((const unsigned char*)a, len, (char**)hex2ascii));
}
</code></pre>
<p><img src="http://involution.com/images/char2hex.png" width="480"/></p>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/78892#788923Answer by Dark Shikari for char[] to hex string exerciseDark Shikari2008-09-17T01:20:38Z2008-09-17T01:20:38Z<p>This assembly function (based off my previous post here, but I had to modify the concept a bit to get it to actually work) processes 3.3 billion input characters per second (6.6 billion output characters) on one core of a Core 2 Conroe 3Ghz. Penryn is probably faster.</p>
<pre><code>%include "x86inc.asm"
SECTION_RODATA
pb_f0: times 16 db 0xf0
pb_0f: times 16 db 0x0f
pb_hex: db 48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70
SECTION .text
; int convert_string_to_hex( char *input, char *output, int len )
cglobal _convert_string_to_hex,3,3
movdqa xmm6, [pb_f0 GLOBAL]
movdqa xmm7, [pb_0f GLOBAL]
.loop:
movdqa xmm5, [pb_hex GLOBAL]
movdqa xmm4, [pb_hex GLOBAL]
movq xmm0, [r0+r2-8]
movq xmm2, [r0+r2-16]
movq xmm1, xmm0
movq xmm3, xmm2
pand xmm0, xmm6 ;high bits
pand xmm2, xmm6
psrlq xmm0, 4
psrlq xmm2, 4
pand xmm1, xmm7 ;low bits
pand xmm3, xmm7
punpcklbw xmm0, xmm1
punpcklbw xmm2, xmm3
pshufb xmm4, xmm0
pshufb xmm5, xmm2
movdqa [r1+r2*2-16], xmm4
movdqa [r1+r2*2-32], xmm5
sub r2, 16
jg .loop
REP_RET
</code></pre>
<p>Note it uses x264 assembly syntax, which makes it more portable (to 32-bit vs 64-bit, etc). To convert this into the syntax of your choice is trivial: r0, r1, r2 are the three arguments to the functions in registers. Its a bit like pseudocode. Or you can just get common/x86/x86inc.asm from the x264 tree and include that to run it natively.</p>
<p>P.S. Stack Overflow, am I wrong for wasting time on such a trivial thing? Or is this awesome?</p>