Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ However, imagine that there are two shared libraries: ``lib_a`` and ``lib_b`` bo
add_library(lib_b SHARED tu_b.cu)
target_link_libraries(host_stub_visibility PRIVATE lib_a lib_b)

Each library will have it's own fatbinary: ``d_kernel_a`` and ``d_kernel_b``, but the the compiler
Each library will have its own fatbinary: ``d_kernel_a`` and ``d_kernel_b``, but the compiler
generated host stub function ``h_kernel`` has weak external linkage, so after dynamic linkage, we'll end up having
only one of them.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class permutation_iterator
{}

//! @brief Constructs an @c permutation_iterator from an iterator and an optional index
//! @param __iter The iterator to to index from
//! @param __iter The iterator to index from
//! @param __index The iterator with the permutations
_CCCL_EXEC_CHECK_DISABLE
_CCCL_API constexpr permutation_iterator(_Iter __iter, _Index __index) noexcept(
Expand Down
Loading