Skip to content

Commit

Permalink
Fix issues discovered by header tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Apr 6, 2024
1 parent 38657a8 commit 4bde696
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions nvbench/axis_base.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <memory>
#include <stdexcept>
#include <string>
#include <string_view>
#include <utility>

namespace nvbench
Expand Down
4 changes: 2 additions & 2 deletions nvbench/detail/type_list_impl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ namespace tl::detail
template <typename... Ts>
auto size(nvbench::type_list<Ts...>) -> std::integral_constant<std::size_t, sizeof...(Ts)>;

template <std::size_t I, typename... Ts>
auto get(nvbench::type_list<Ts...>) -> std::tuple_element_t<I, std::tuple<Ts...>>;
template <std::size_t Idx, typename... Ts>
auto get(nvbench::type_list<Ts...>) -> std::tuple_element_t<Idx, std::tuple<Ts...>>;

template <typename... Ts, typename... Us>
auto concat(nvbench::type_list<Ts...>, nvbench::type_list<Us...>)
Expand Down
2 changes: 2 additions & 0 deletions nvbench/test_kernels.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

#pragma once

#include <nvbench/types.cuh>

#include <cuda/std/chrono>

#include <cuda_runtime.h>
Expand Down

0 comments on commit 4bde696

Please sign in to comment.