search for: benchmarket

Displaying 3 results from an estimated 3 matches for "benchmarket".

Did you mean: benchmarked
2017 May 24
2
memcmp code fragment
...f bzip2 that are more efficient than bzip.org? I haven't seen one. Sirish is going to send a patch to Julian Seward and try to get the change in a new release of bzip2, and from there we may need to ask the AOSP folks to update bzip2. AOSP has the last released bzip2 from Sept 2010. For SPEC benchmarketing, doing the right thing wouldn't help. Maybe we should put this idiom and others under a -fspec flag ;-) Sebastian
2006 Jan 25
0
benchmarker and quotation marks
...r script. I understand, from the rails book, that the command used is: script/benchmarker 10 "Product.search(''version_control'')" Maybe I''m misunderstanding it but what if there are some nested " or '' required inside the command, such as: script/benchmarket 10 "Question.find(:all, :conditions => ''created_on > ''2006-01-01'''')" That''s not a real example, but let''s say I want to test a find with some joins where there will be some nested ". thanks, Steve -------------- next part...
2017 May 19
4
memcmp code fragment
Hi, Look at the following code: Look at the following C code seqence: unsigned char mainGtU ( unsigned int i1, unsigned int i2, unsigned char* block) { unsigned char c1, c2; c1 = block[i1]; c2 = block[i2]; if (c1 != c2) return (c1 > c2); i1++; i2++; c1 = block[i1]; c2 = block[i2]; if (c1 != c2) return (c1 > c2); i1++; i2++; .. ..