cudf
cudf copied to clipboard
Remove using namespace cudf; and using namespace cudf::test; from libcudf gtests
Remove using using namespace cudf;
and using namespace cudf::test;
from gtests.
Likewise remove unit test source coded inside namespace cudf {}
or namespace cudf::test {}
The unit tests should not be considered part of cudf
or the cudf::test
infrastructure but rather consumers of them. This will help with maintenance (no confusion where functions are defined) and with verifying the libcudf APIs can be called outside of cudf
namespace.
Reference discussion: https://github.com/rapidsai/cudf/pull/11703#discussion_r975884822