Skip to content

Commit

Permalink
Add missing newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdbaranec committed Jul 5, 2023
1 parent 3583eea commit 14b9e29
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/cpp/src/HashJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ JNIEXPORT jlong JNICALL Java_com_nvidia_spark_rapids_jni_Hash_murmurHash32(
}
CATCH_STD(env, 0);
}
}
}
2 changes: 1 addition & 1 deletion src/main/cpp/src/hash.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ std::unique_ptr<cudf::column> murmur_hash3_32(
rmm::cuda_stream_view stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());

} // namespace spark_rapids_jni
} // namespace spark_rapids_jni
2 changes: 1 addition & 1 deletion src/main/cpp/src/murmur_hash.cu
Original file line number Diff line number Diff line change
Expand Up @@ -394,4 +394,4 @@ std::unique_ptr<cudf::column> murmur_hash3_32(cudf::table_view const& input,
return output;
}

} // namespace spark_rapids_jni
} // namespace spark_rapids_jni
2 changes: 1 addition & 1 deletion src/main/cpp/tests/hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -842,4 +842,4 @@ TEST_F(SparkMurmurHash3Test, ListOfStructValues)
auto output = spark_rapids_jni::murmur_hash3_32(cudf::table_view({*list_column}), 42);
CUDF_TEST_EXPECT_COLUMNS_EQUAL(expect, output->view(), verbosity);
*/
}
}
2 changes: 1 addition & 1 deletion src/test/java/com/nvidia/spark/rapids/jni/HashTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,4 +261,4 @@ void testSpark32BitMurmur3HashListsAndNestedLists() {
assertColumnsAreEqual(nestedExpected, nestedResult);
}
}
}
}

0 comments on commit 14b9e29

Please sign in to comment.