Skip to content

Commit e73c1c3

Browse files
Fix kudo serializer test where table is to large. (#3760)
Closes #3759 Reduce the allocation size in kudo test so that it works on devices with smaller memories. --------- Signed-off-by: liurenjie1024 <liurenjie2008@gmail.com>
1 parent e94fff5 commit e73c1c3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/test/java/com/nvidia/spark/rapids/jni/kudo/KudoSerializerTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646

4747
public class KudoSerializerTest extends CudfTestBase {
4848
private static final Logger log = LoggerFactory.getLogger(KudoSerializerTest.class);
49-
static final long RMM_POOL_SIZE_LARGE = 20L * 1024 * 1024 * 1024;
49+
50+
static final long RMM_POOL_SIZE_LARGE = 10L * 1024 * 1024 * 1024;
5051

5152
public KudoSerializerTest() {
5253
super(RmmAllocationMode.POOL, RMM_POOL_SIZE_LARGE);

0 commit comments

Comments
 (0)