Skip to content

Commit

Permalink
Removed duplicated stream param
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarrr committed Sep 11, 2024
1 parent 430031b commit 8c767cf
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions cpp/include/cudf/detail/datetime.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ namespace detail {
* @copydoc cudf::extract_year(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_year(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -39,7 +38,6 @@ std::unique_ptr<cudf::column> extract_year(cudf::column_view const& column,
* @copydoc cudf::extract_month(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_month(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -49,7 +47,6 @@ std::unique_ptr<cudf::column> extract_month(cudf::column_view const& column,
* @copydoc cudf::extract_day(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_day(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -59,7 +56,6 @@ std::unique_ptr<cudf::column> extract_day(cudf::column_view const& column,
* @copydoc cudf::extract_weekday(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_weekday(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -69,7 +65,6 @@ std::unique_ptr<cudf::column> extract_weekday(cudf::column_view const& column,
* @copydoc cudf::extract_hour(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_hour(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -79,7 +74,6 @@ std::unique_ptr<cudf::column> extract_hour(cudf::column_view const& column,
* @copydoc cudf::extract_minute(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_minute(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -89,7 +83,6 @@ std::unique_ptr<cudf::column> extract_minute(cudf::column_view const& column,
* @copydoc cudf::extract_second(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_second(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -99,7 +92,6 @@ std::unique_ptr<cudf::column> extract_second(cudf::column_view const& column,
* @copydoc cudf::extract_millisecond_fraction(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_millisecond_fraction(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -109,7 +101,6 @@ std::unique_ptr<cudf::column> extract_millisecond_fraction(cudf::column_view con
* @copydoc cudf::extract_microsecond_fraction(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_microsecond_fraction(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -119,7 +110,6 @@ std::unique_ptr<cudf::column> extract_microsecond_fraction(cudf::column_view con
* @copydoc cudf::extract_nanosecond_fraction(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> extract_nanosecond_fraction(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -129,7 +119,6 @@ std::unique_ptr<cudf::column> extract_nanosecond_fraction(cudf::column_view cons
* @copydoc cudf::last_day_of_month(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> last_day_of_month(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -139,7 +128,6 @@ std::unique_ptr<cudf::column> last_day_of_month(cudf::column_view const& column,
* @copydoc cudf::day_of_year(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> day_of_year(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand All @@ -149,7 +137,6 @@ std::unique_ptr<cudf::column> day_of_year(cudf::column_view const& column,
* @copydoc cudf::add_calendrical_months(cudf::column_view const&, cudf::column_view const&,
* rmm::cuda_stream_view, rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> add_calendrical_months(cudf::column_view const& timestamps,
cudf::column_view const& months,
Expand All @@ -160,7 +147,6 @@ std::unique_ptr<cudf::column> add_calendrical_months(cudf::column_view const& ti
* @copydoc cudf::add_calendrical_months(cudf::column_view const&, cudf::scalar const&,
* rmm::cuda_stream_view, rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> add_calendrical_months(cudf::column_view const& timestamps,
cudf::scalar const& months,
Expand All @@ -171,7 +157,6 @@ std::unique_ptr<cudf::column> add_calendrical_months(cudf::column_view const& ti
* @copydoc cudf::is_leap_year(cudf::column_view const&, rmm::cuda_stream_view,
* rmm::device_async_resource_ref)
*
* @param stream CUDA stream used for device memory operations and kernel launches.
*/
std::unique_ptr<cudf::column> is_leap_year(cudf::column_view const& column,
rmm::cuda_stream_view stream,
Expand Down

0 comments on commit 8c767cf

Please sign in to comment.