CUTLASS 3.4.0 (#1286)
* CUTLASS 3.4.0 * Update CHANGELOG.md --------- Co-authored-by: Pradeep Ramani <prramani@nvidia.com>
This commit is contained in:
@ -233,14 +233,14 @@ CUTE_HOST_DEVICE void print(T const* const ptr)
|
||||
template <class T>
|
||||
CUTE_HOST_DEVICE void print(counting_iterator<T> ptr)
|
||||
{
|
||||
printf("counting_iter_"); print(ptr.n_);
|
||||
printf("counting_iter("); print(ptr.n_); printf(")");
|
||||
}
|
||||
|
||||
#if !defined(__CUDACC_RTC__)
|
||||
template <class T>
|
||||
CUTE_HOST std::ostream& operator<<(std::ostream& os, counting_iterator<T> ptr)
|
||||
{
|
||||
return os << "counting_iter_" << ptr.n_;
|
||||
return os << "counting_iter(" << ptr.n_ << ")";
|
||||
}
|
||||
#endif // !defined(__CUDACC_RTC__)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user