Closed GoogleCodeExporter closed 8 years ago
Here are the old names
thrust::system::cuda_errc // this is a namespace
thrust::system::cuda_errc_t
thrust::system::cuda_category
thrust::cuda_category // this is a using alias
thrust::cuda_ercc // this is a using alias
New names should be
thrust::system::cuda::errc
thrust::system::cuda::errc_t
thrust::system::cuda::error_category
thrust::cuda::error_category // this is a using alias
thrust::cuda::ercc // this is a using alias
Make thrust::system::cuda_errc a using alias of thrust::system::cuda::errc
Make thrust::system::cuda_errc_t a typedef of thrust::system::cuda::errc_t
Make thrust::system::cuda_category a deprecated function that does nothing
except call thrust::system::cuda::error_category
Leave thrust::cuda_category a using alias of thrust::system::cuda_category.
deprecate it, if using aliases can be deprecated
Leave thrust::cuda_ercc a using alias of thrust::system::cuda_errc. deprecate
it, if using namespaces can be deprecated
Original comment by jaredhoberock
on 27 Jan 2012 at 8:14
New name for the function
thrust::system::cuda_category
should be
thrust::system::cuda::category
rather than
thrust::system::cuda::error_category
because
thrust::system::error_category is a type, not a function
Original comment by jaredhoberock
on 27 Jan 2012 at 9:53
Still not sure whether to rename thrust::system::cuda_category to
thrust::system::cuda::category
"category" seems not descriptive enough. "error_category" seems better, but the
function declaration looks weird:
namespace cuda
{
thrust::error_category &error_category()
}
Also, there are a lot of names in std:: that are just "category".
Here are some names in std::
const error_category &future_category();
const error_category &generic_category();
const error_category &system_category();
Maybe we should just keep thrust::system::cuda_category (and the alias
thrust::cuda_category)
Original comment by jaredhoberock
on 27 Jan 2012 at 11:47
Decided to keep thrust::system::cuda_category & thrust::cuda_category as-is.
We can deprecate and provide a new name later if we care to.
thrust::system::cuda_errc et al still get renamed. It's not likely many folks
use this stuff anyway.
The only change most users will need to make is to use the new header to avoid
the deprecation warning.
Original comment by jaredhoberock
on 27 Jan 2012 at 11:54
This issue was closed by revision 9d272d18fc81.
Original comment by jaredhoberock
on 28 Jan 2012 at 12:39
Original issue reported on code.google.com by
jaredhoberock
on 27 Jan 2012 at 1:20