Skip to content

Commit

Permalink
Turn on transition logging in HostAllocSuite (NVIDIA#10590)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
jlowe authored Mar 14, 2024
1 parent 9105fd7 commit e0ef44a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import org.apache.spark.sql.rapids.execution.TrampolineUtil
class HostAllocSuite extends AnyFunSuite with BeforeAndAfterEach with
BeforeAndAfterAll with TimeLimits {
private val sqlConf = new SQLConf()
sqlConf.setConfString("spark.rapids.memory.gpu.state.debug", "stderr")
private val rc = new RapidsConf(sqlConf)
private val timeoutMs = 10000

Expand Down Expand Up @@ -332,8 +333,10 @@ class HostAllocSuite extends AnyFunSuite with BeforeAndAfterEach with
override def afterAll(): Unit = {
RapidsBufferCatalog.close()
PinnedMemoryPool.shutdown()
if (!rmmWasInitialized) {
Rmm.shutdown()
Rmm.shutdown()
if (rmmWasInitialized) {
// put RMM back for other tests to use
Rmm.initialize(RmmAllocationMode.CUDA_DEFAULT, null, 512 * 1024 * 1024)
}
// 1 GiB
PinnedMemoryPool.initialize(1 * 1024 * 1024 * 1024)
Expand Down

0 comments on commit e0ef44a

Please sign in to comment.