Skip to content

Commit

Permalink
Remove dependency on shaded Spark artifact (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Jun 15, 2020
1 parent 472fdf8 commit 27d7258
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
package ai.rapids.spark

import java.io.File

import org.sparkproject.guava.io.Files
import java.nio.file.Files

import org.apache.spark.sql.execution.metric.SQLMetric
import org.apache.spark.sql.rapids.metrics.source.MockTaskContext
Expand Down Expand Up @@ -166,7 +165,7 @@ class GpuCoalesceBatchesSuite extends SparkQueryCompareTestSuite {
.set("spark.rapids.sql.exec.FileSourceScanExec", "false") // force Parquet read onto CPU
.set("spark.sql.shuffle.partitions", "1")

val dir = Files.createTempDir()
val dir = Files.createTempDirectory("spark-rapids-test").toFile
val path = new File(dir,
s"HostColumnarToGpu-${System.currentTimeMillis()}.parquet").getAbsolutePath

Expand Down

0 comments on commit 27d7258

Please sign in to comment.