You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by cloud-fan <gi...@git.apache.org> on 2017/11/10 13:55:12 UTC

[GitHub] spark pull request #19077: [SPARK-21860][core]Improve memory reuse for heap ...

Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19077#discussion_r150240149
  
    --- Diff: common/unsafe/src/main/java/org/apache/spark/unsafe/array/ByteArrayMethods.java ---
    @@ -31,8 +31,8 @@ public static long nextPowerOf2(long num) {
         return (highBit == num) ? num : highBit << 1;
       }
     
    -  public static int roundNumberOfBytesToNearestWord(int numBytes) {
    -    int remainder = numBytes & 0x07;  // This is equivalent to `numBytes % 8`
    +  public static long roundNumberOfBytesToNearestWord(long numBytes) {
    --- End diff --
    
    I think we should create a new method instead of changing this method. The added int cast looks scaring.


---

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