Discussion:
[julia-dev] String comparison
David Anthoff
2016-09-01 19:57:09 UTC
Permalink
I just saw this:



http://jcdav.is/2016/09/01/How-the-JVM-compares-your-strings/



I don't know whether that might be relevant for julia, but I certainly
wasn't aware that there are special SSE instructions for string comparison
and it was a fun read.



Cheers,

David



--

David Anthoff

University of California, Berkeley



http://www.david-anthoff.com
Steven G. Johnson
2016-09-03 13:05:34 UTC
Permalink
Comparisons for String in Julia call memcmp in libc, which hopefully is
heavily optimized. (I know that glibc's memcmp uses SSE instructions, for
example.)

Loading...