You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Nong Li (JIRA)" <ji...@apache.org> on 2016/03/17 20:55:33 UTC

[jira] [Created] (SPARK-13981) Improve Filter generated code to defer variable evaluation within operator

Nong Li created SPARK-13981:
-------------------------------

             Summary: Improve Filter generated code to defer variable evaluation within operator
                 Key: SPARK-13981
                 URL: https://issues.apache.org/jira/browse/SPARK-13981
             Project: Spark
          Issue Type: Improvement
            Reporter: Nong Li
            Priority: Minor


We can improve the generated filter code by deferring evaluating variables until just before they are needed.

For example. x > 1 and y > b

we can do
{code}
x = ...
if (x <= 1) continue
y = ...
{code}

instead of currently where we do
{code}
x = ...
y = ...
if (x <= 1) continue
...
{code}

This is helpful if evaluating y has any cost.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org