Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4c579e2
Bump CUB for CDP update.
alliepiper Jun 29, 2022
4182f8e
Use seq algos for CDP launches on sm90+.
alliepiper Jun 29, 2022
3c9c838
Ensure kernels are instantiated for CDPv1 nvcc device passes.
alliepiper Aug 12, 2022
f27d762
Add changelog for 1.17.1.
alliepiper Aug 15, 2022
37a8d2b
Bump CUB.
alliepiper Aug 15, 2022
1fe97c6
Add Thrust 2.0.0 changelog.
alliepiper Aug 15, 2022
d6e9274
Bump CUB.
alliepiper Aug 15, 2022
92b3aaf
Merge branch 'ctk12_cdp_updates' into staging/ctk_12.0
alliepiper Aug 16, 2022
89a5fbd
Bump version to 2.0.1 for CTK12.
alliepiper Aug 16, 2022
8fe85d8
Add sm90 option to CMake builds.
alliepiper Aug 16, 2022
d31abae
Merge branch 'ctk12_sm90_cmake_option' into staging/ctk_12.0
alliepiper Aug 16, 2022
5372a29
Bump CUB.
alliepiper Aug 17, 2022
1e6fb36
Move sync from for_each to parallel_for to fix CDP usages.
alliepiper Aug 26, 2022
512272c
Merge pull request #1776 from allisonvacanti/cdp_for_each_fix_backport
alliepiper Aug 29, 2022
f32a788
Merge remote-tracking branch 'origin/2.0.X' into staging/ctk_12.0
alliepiper Aug 29, 2022
f58f28c
Only generate per-dialect targets when needed.
Aug 30, 2022
73a4616
Fix FindTBB.cmake for MSVC 2022.
Aug 30, 2022
786e5aa
Merge pull request #1781 from allisonvacanti/c++20_fix_backport
alliepiper Aug 30, 2022
af8317f
Merge remote-tracking branch 'origin/2.0.X' into staging/ctk_12.0
alliepiper Aug 30, 2022
d205a6f
Merge pull request #1799 from miscco/no_throw
miscco Sep 26, 2022
8a2c7e5
Merge branch 'staging/ctk_12.0' into gpgpu
wmaxey Sep 27, 2022
6c518b0
WAR bug on MSVC 2022.
Aug 31, 2022
0c28b7c
Actually really for real remove throw
miscco Oct 5, 2022
cb86111
Bump CUB.
alliepiper Dec 13, 2022
a31906a
Merge branch 'staging/ctk_12.0' into main
alliepiper Dec 13, 2022
bdd6880
Limit gpuCI configurations to CTK only.
Dec 15, 2022
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
Prev Previous commit
Next Next commit
Merge pull request #1799 from miscco/no_throw
Remove remnants of `throw()`

(cherry picked from commit d3e6fa1)
  • Loading branch information
miscco authored and wmaxey committed Sep 26, 2022
commit d205a6f040bef7142fe02032a2a8a4f963c0b7c9
2 changes: 1 addition & 1 deletion thrust/system/detail/bad_alloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class bad_alloc

inline virtual ~bad_alloc(void) throw () {};

inline virtual const char *what(void) const throw()
inline virtual const char *what(void) const noexcept
{
return m_what.c_str();
} // end what()
Expand Down
4 changes: 2 additions & 2 deletions thrust/system/detail/system_error.inl
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ system_error


const error_code &system_error
::code(void) const throw()
::code(void) const noexcept
{
return m_error_code;
} // end system_error::code()


const char *system_error
::what(void) const throw()
::what(void) const noexcept
{
if(m_what.empty())
{
Expand Down
4 changes: 2 additions & 2 deletions thrust/system/system_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ class system_error
* \return <tt>ec</tt> or <tt>error_code(ev, ecat)</tt>, from the
* constructor, as appropriate.
*/
inline const error_code &code(void) const throw();
inline const error_code &code(void) const noexcept;

/*! Returns a human-readable string indicating the nature of the error.
* \return a string incorporating <tt>code().message()</tt> and the
* arguments supplied in the constructor.
*/
inline const char *what(void) const throw();
inline const char *what(void) const noexcept;

/*! \cond
*/
Expand Down