Skip to content

Commit

Permalink
Run clang-format-16
Browse files Browse the repository at this point in the history
  • Loading branch information
Third Party authored and bernhardmgruber committed Jul 23, 2023
1 parent 4522098 commit 5362b81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/llama/Tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ namespace llama
};

template<typename... Elements>
LLAMA_HOST_ACC Tuple(Elements...)->Tuple<std::remove_cv_t<std::remove_reference_t<Elements>>...>;
LLAMA_HOST_ACC Tuple(Elements...) -> Tuple<std::remove_cv_t<std::remove_reference_t<Elements>>...>;

template<std::size_t I, typename... Elements>
LLAMA_FN_HOST_ACC_INLINE constexpr auto get(Tuple<Elements...>& tuple) -> auto&
Expand Down
4 changes: 2 additions & 2 deletions tests/simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
// MSVC does not support std::experimental::simd and #warning
#elif defined(__NVCOMPILER)
# pragma message( \
"LLAMA SIMD tests disabled for nvc++. It fails to compile std::experimental::simd due to unrecognized intrinsics")
"LLAMA SIMD tests disabled for nvc++. It fails to compile std::experimental::simd due to unrecognized intrinsics")
#elif defined(__NVCC__)
# pragma message( \
"LLAMA SIMD tests disabled for nvcc. It fails to compile std::experimental::simd due to invalid type conversions")
"LLAMA SIMD tests disabled for nvcc. It fails to compile std::experimental::simd due to invalid type conversions")
#elif defined(_LIBCPP_VERSION)
# warning "LLAMA SIMD tests disabled for libc++. Their std::experimental::simd implementation is incomplete"
#elif !__has_include(<experimental/simd>)
Expand Down

0 comments on commit 5362b81

Please sign in to comment.