Skip to content

Commit

Permalink
reorder includes
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyann authored Feb 15, 2022
1 parent 0fdd317 commit 9f4e4e1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions cpp/benchmarks/join/join_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@

#pragma once

#include <benchmark/benchmark.h>
#include <nvbench/nvbench.cuh>
#include "generate_input_tables.cuh"

#include <thrust/iterator/counting_iterator.h>
#include <thrust/random/linear_congruential_engine.h>
#include <thrust/random/uniform_int_distribution.h>
#include <benchmarks/fixture/benchmark_fixture.hpp>
#include <benchmarks/synchronization/synchronization.hpp>

#include <cudf_test/base_fixture.hpp>
#include <cudf_test/column_wrapper.hpp>

#include <cudf/ast/expressions.hpp>
#include <cudf/detail/valid_if.cuh>
Expand All @@ -30,15 +31,14 @@
#include <cudf/scalar/scalar_factories.hpp>
#include <cudf/table/table_view.hpp>
#include <cudf/utilities/error.hpp>
#include <cudf_test/base_fixture.hpp>
#include <cudf_test/column_wrapper.hpp>

#include <fixture/benchmark_fixture.hpp>
#include <synchronization/synchronization.hpp>
#include <nvbench/nvbench.cuh>

#include <vector>
#include <thrust/iterator/counting_iterator.h>
#include <thrust/random/linear_congruential_engine.h>
#include <thrust/random/uniform_int_distribution.h>

#include "generate_input_tables.cuh"
#include <vector>

struct null75_generator {
thrust::minstd_rand engine;
Expand Down

0 comments on commit 9f4e4e1

Please sign in to comment.