Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shrshi committed Sep 17, 2024
1 parent 39bedb8 commit 0c18a3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cpp/src/io/json/json_normalization.cu
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

#include "io/fst/lookup_tables.cuh"

#include <cudf/detail/utilities/vector_factories.hpp>
#include <cudf/detail/nvtx/ranges.hpp>
#include <cudf/detail/utilities/vector_factories.hpp>
#include <cudf/io/detail/json.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/memory_resource.hpp>
Expand Down
8 changes: 4 additions & 4 deletions cpp/src/io/json/nested_json_gpu.cu
Original file line number Diff line number Diff line change
Expand Up @@ -2079,12 +2079,12 @@ cudf::io::parse_options parsing_options(cudf::io::json_reader_options const& opt
{
auto parse_opts = cudf::io::parse_options{',', '\n', '\"', '.'};

parse_opts.dayfirst = options.is_enabled_dayfirst();
parse_opts.keepquotes = options.is_enabled_keep_quotes();
parse_opts.dayfirst = options.is_enabled_dayfirst();
parse_opts.keepquotes = options.is_enabled_keep_quotes();
parse_opts.normalize_whitespace = options.is_enabled_normalize_whitespace();
parse_opts.mixed_types_as_string = options.is_enabled_mixed_types_as_string();
parse_opts.trie_true = cudf::detail::create_serialized_trie({"true"}, stream);
parse_opts.trie_false = cudf::detail::create_serialized_trie({"false"}, stream);
parse_opts.trie_true = cudf::detail::create_serialized_trie({"true"}, stream);
parse_opts.trie_false = cudf::detail::create_serialized_trie({"false"}, stream);
std::vector<std::string> na_values{"", "null"};
na_values.insert(na_values.end(), options.get_na_values().begin(), options.get_na_values().end());
parse_opts.trie_na = cudf::detail::create_serialized_trie(na_values, stream);
Expand Down

0 comments on commit 0c18a3a

Please sign in to comment.