File tree Expand file tree Collapse file tree
src/test/java/com/nvidia/spark/rapids/jni/kudo Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747public class KudoSerializerTest extends CudfTestBase {
4848 private static final Logger log = LoggerFactory .getLogger (KudoSerializerTest .class );
4949
50+ static final long RMM_POOL_SIZE_LARGE = 10L * 1024 * 1024 * 1024 ;
51+
5052 public KudoSerializerTest () {
53+ super (RmmAllocationMode .POOL , RMM_POOL_SIZE_LARGE );
5154 }
5255
5356 @ Test
@@ -813,7 +816,7 @@ static Table buildLargeTestTable() {
813816 List <ColumnVector > allCols = new ArrayList <>();
814817 List <ColumnVector > tableCols = new ArrayList <>();
815818
816- final int nonNullCount = Integer .MAX_VALUE / 128 - 21 ; // to avoid OOM
819+ final int nonNullCount = Integer .MAX_VALUE / 512 - 21 ; // to avoid OOM
817820 final int nullCount = 11 ; // to add nulls
818821 final int totalCount = nonNullCount + nullCount ;
819822
You can’t perform that action at this time.
0 commit comments