[ 
https://issues.apache.org/jira/browse/HIVE-11521?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14692247#comment-14692247
 ] 

Hive QA commented on HIVE-11521:
--------------------------------



{color:red}Overall{color}: -1 at least one tests failed

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12749842/HIVE-11521.patch

{color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 9348 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_schemeAuthority
org.apache.hive.hcatalog.streaming.TestStreaming.testTransactionBatchCommit_Json
org.apache.hive.jdbc.TestJdbcWithLocalClusterSpark.testTempTable
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/4924/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/4924/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-4924/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 3 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12749842 - PreCommit-HIVE-TRUNK-Build

> Loop optimization for SIMD in logical operators
> -----------------------------------------------
>
>                 Key: HIVE-11521
>                 URL: https://issues.apache.org/jira/browse/HIVE-11521
>             Project: Hive
>          Issue Type: Sub-task
>            Reporter: Teddy Choi
>            Assignee: Teddy Choi
>            Priority: Minor
>         Attachments: HIVE-11521.patch
>
>
> JVM is quite strict on the code schema which may executed with SIMD 
> instructions, take a loop in ColOrCol.java for example,
> {code}
> for (int i = 0; i != n; i++) {
>   outputVector[i] = vector1[0] | vector2[i];
> }
> {code}
> The "vector1\[0\]" reference would prevent JVM to execute this part of code 
> with vectorized instructions, we need to assign the "vector1\[0\]" to a 
> variable outside of loop, and use that variable in loop.
> This issues covers AND, OR, NOT logical operators.



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

Reply via email to