Skip to content

Commit

Permalink
fix clang-format style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyann committed Jul 26, 2022
1 parent 3e756bb commit 12cf0be
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
5 changes: 0 additions & 5 deletions cpp/tests/io/fst/fst_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

#include <rmm/cuda_stream.hpp>
#include <rmm/cuda_stream_view.hpp>
#include <rmm/cuda_stream.hpp>
#include <rmm/device_buffer.hpp>
#include <rmm/device_uvector.hpp>

Expand Down Expand Up @@ -211,10 +210,6 @@ TEST_F(FstTest, GroundTruth)
auto& d_input = static_cast<cudf::scalar_type_t<std::string>&>(*d_input_string);
input = d_input.to_string(stream);





// Prepare input & output buffers
constexpr std::size_t single_item = 1;
hostdevice_vector<SymbolT> output_gpu(input.size(), stream_view);
Expand Down
2 changes: 0 additions & 2 deletions cpp/tests/io/fst/logical_stack_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
#include <rmm/cuda_stream_view.hpp>
#include <rmm/device_buffer.hpp>
#include <rmm/device_uvector.hpp>
#include <rmm/device_buffer.hpp>
#include <rmm/device_uvector.hpp>

#include <cstdlib>
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion cpp/tests/io/nested_json_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void print_tree_representation(std::string const& json_input,
nested_json::tree_meta_t const& tree_rep)
{
for (std::size_t i = 0; i < tree_rep.node_categories.size(); i++) {
std::size_t parent_id = tree_rep.parent_node_ids[i];
std::size_t parent_id = tree_rep.parent_node_ids[i];
std::stack<std::size_t> path;
path.push(i);
while (parent_id != nested_json::parent_node_sentinel) {
Expand Down

0 comments on commit 12cf0be

Please sign in to comment.