Github user JoshRosen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/9477#discussion_r43983322
  
    --- Diff: 
core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeSortDataFormat.java
 ---
    @@ -44,37 +47,43 @@ public RecordPointerAndKeyPrefix newKey() {
       }
     
       @Override
    -  public RecordPointerAndKeyPrefix getKey(long[] data, int pos, 
RecordPointerAndKeyPrefix reuse) {
    -    reuse.recordPointer = data[pos * 2];
    -    reuse.keyPrefix = data[pos * 2 + 1];
    +  public RecordPointerAndKeyPrefix getKey(LongArray data, int pos, 
RecordPointerAndKeyPrefix reuse) {
    +    reuse.recordPointer = data.get(pos * 2);
    +    reuse.keyPrefix = data.get(pos * 2 + 1);
         return reuse;
       }
     
       @Override
    -  public void swap(long[] data, int pos0, int pos1) {
    -    long tempPointer = data[pos0 * 2];
    -    long tempKeyPrefix = data[pos0 * 2 + 1];
    -    data[pos0 * 2] = data[pos1 * 2];
    -    data[pos0 * 2 + 1] = data[pos1 * 2 + 1];
    -    data[pos1 * 2] = tempPointer;
    -    data[pos1 * 2 + 1] = tempKeyPrefix;
    +  public void swap(LongArray data, int pos0, int pos1) {
    +    long tempPointer = data.get(pos0 * 2);
    +    long tempKeyPrefix = data.get(pos0 * 2 + 1);
    +    data.set(pos0 * 2, data.get(pos1 * 2));
    +    data.set(pos0 * 2 + 1, data.get(pos1 * 2 + 1));
    +    data.set(pos1 * 2, tempPointer);
    +    data.set(pos1 * 2 + 1, tempKeyPrefix);
       }
     
       @Override
    -  public void copyElement(long[] src, int srcPos, long[] dst, int dstPos) {
    -    dst[dstPos * 2] = src[srcPos * 2];
    -    dst[dstPos * 2 + 1] = src[srcPos * 2 + 1];
    +  public void copyElement(LongArray src, int srcPos, LongArray dst, int 
dstPos) {
    +    dst.set(dstPos * 2, src.get(srcPos * 2));
    +    dst.set(dstPos * 2 + 1, src.get(srcPos * 2 + 1));
       }
     
       @Override
    -  public void copyRange(long[] src, int srcPos, long[] dst, int dstPos, 
int length) {
    -    System.arraycopy(src, srcPos * 2, dst, dstPos * 2, length * 2);
    +  public void copyRange(LongArray src, int srcPos, LongArray dst, int 
dstPos, int length) {
    +    Platform.copyMemory(
    +      src.getBaseObject(),
    +      src.getBaseOffset() + srcPos * 16,
    +      dst.getBaseObject(),
    +      dst.getBaseOffset() + dstPos * 16,
    +      length * 16);
       }
     
       @Override
    -  public long[] allocate(int length) {
    +  public LongArray allocate(int length) {
         assert (length < Integer.MAX_VALUE / 2) : "Length " + length + " is 
too large";
    -    return new long[length * 2];
    +    // This is used as temporary buffer, it's fine to allocate from JVM 
heap.
    +    return new LongArray(MemoryBlock.fromLongArray(new long[length * 2]));
    --- End diff --
    
    Wait, nevermind: it's on-heap.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to