Skip to content

Commit

Permalink
hot fix for testGetCudaRuntimeInfo
Browse files Browse the repository at this point in the history
Signed-off-by: sperlingxx <[email protected]>
  • Loading branch information
sperlingxx committed Jul 9, 2021
1 parent 73df850 commit 8780674
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/src/test/java/ai/rapids/cudf/CudaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public class CudaTest {

@Test
public void testGetCudaRuntimeInfo() {
assert Cuda.getDriverVersion() >= Cuda.getRuntimeVersion();
assert Cuda.getRuntimeVersion() > 1000;
assert Cuda.getDriverVersion() >= 1000;
assert Cuda.getRuntimeVersion() >= 1000;
assertEquals(Cuda.getNativeComputeMode(), Cuda.getComputeMode().nativeId);
}

Expand Down

0 comments on commit 8780674

Please sign in to comment.