-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
misc: remove scalaxy, use spire.cforRange #866
Conversation
Regexes: s/for \{ (\w) \<\- ([^\W]*) until ([^\W]*) optimized \} \{\{/cforRange { $2 until $3 } { $1 => s/for \{ (\w) \<\- ([^\W]*) to ([^\W]*) optimized \} \{\{/cforRange { $2 to $3 } { $1 => s/for \{ (\w) \<\- ([^\W]*) until ([^\W]*\.[^\W]*) optimized \} \{/cforRange { $2 until $3 } { $1 => s/for \{ (\w) \<\- ([^\W]*) to ([^\W]*\.[^\W]*) optimized \} \{//cforRange { $2 to $3 } { $1 => And manual fixes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job! Looks like one case was missed, however.
I also decided to look at the compiled code to see the difference between the old and new code, and it actually looks a bit better with the new cfor macro.
@@ -145,7 +143,7 @@ object UnsafeUtils { | |||
if (wordComp == 0) { | |||
var pointer1 = offset1 + minLenAligned | |||
var pointer2 = offset2 + minLenAligned | |||
for { i <- minLenAligned until minLen optimized } { | |||
for { i <- minLenAligned until minLen } { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed a case here. Should use cforRange.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Went again through all the changes and didn't spot any more missed cases.
@broneill would love if you posted details on the generated code and differences, just curious….
… On Aug 25, 2020, at 11:46 AM, Szymon Matejczyk ***@***.***> wrote:
@szymonm commented on this pull request.
In memory/src/main/scala/filodb.memory/format/UnsafeUtils.scala <#866 (comment)>:
> @@ -145,7 +143,7 @@ object UnsafeUtils {
if (wordComp == 0) {
var pointer1 = offset1 + minLenAligned
var pointer2 = offset2 + minLenAligned
- for { i <- minLenAligned until minLen optimized } {
+ for { i <- minLenAligned until minLen } {
Went again through all the changes and didn't spot any more missed cases.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#866 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAIDPW6WGR6XID72BK53EVDSCQBH7ANCNFSM4QGSHL3Q>.
|
Here's an example from CompositeOrdering.compare method. Before:
After:
I omitted the code that stayed the same. The important parts are the "*$macro" local variables, which control the loop in the usual way -- initialize to zero, compare each time, increment each time. The new version uses less local variables, and so it's a bit better. In practice, the HotSpot compiler reduces the use of extra local variables and so the performance of both versions should be the same. |
Pull Request checklist
Current behavior :
Scalaxy is not released for Scala 2.12, so I'm migrating the codebase to use
spire.cforRange
(see #457 for more context).Runs of jmh benchmarks showed that the performance is the same.
If you have any E2E benchmarks, it would be good to run them to verify consistency between synthetic benchmarks and real life...