-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Native astype #642
Native astype #642
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Provide also info about tests, that you are disabling.
@@ -35,6 +35,42 @@ | |||
namespace mkl_blas = oneapi::mkl::blas; | |||
namespace mkl_lapack = oneapi::mkl::lapack; | |||
|
|||
template <typename _DataType, typename _TypeNew, typename _ResultType> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is _TypeNew
for?
class dpnp_astype_c_kernel; | ||
|
||
template <typename _DataType, typename _TypeNew, typename _ResultType> | ||
void dpnp_astype_c(void* array1_in, void* result1, size_t size) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remember this interface only for unsafe
casting kind.
void dpnp_astype_c(void* array1_in, void* result1, size_t size) | ||
{ | ||
cl::sycl::event event; | ||
|
||
_DataType* array_in = reinterpret_cast<_DataType*>(array1_in); | ||
_ResultType* result = reinterpret_cast<_ResultType*>(result1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
void dpnp_astype_c(void* array1_in, void* result1, size_t size) | |
{ | |
cl::sycl::event event; | |
_DataType* array_in = reinterpret_cast<_DataType*>(array1_in); | |
_ResultType* result = reinterpret_cast<_ResultType*>(result1); | |
void dpnp_astype_c(const void* array1_in, void* result1, const size_t size) | |
{ | |
cl::sycl::event event; | |
const _DataType* array_in = reinterpret_cast<const _DataType*>(array1_in); | |
_ResultType* result = reinterpret_cast<_ResultType*>(result1); |
Try not to ignore suggestions from previous PRs.
dpnp/dparray.pyx
Outdated
if (not use_origin_backend(self)): | ||
if not isinstance(self, dparray): | ||
pass | ||
elif casting is not None: | ||
pass | ||
elif subok is not None: | ||
pass | ||
elif copy is not True: | ||
pass | ||
elif order is not 'K': | ||
pass | ||
else: | ||
return dpnp_astype(self, dtype) | ||
|
||
return dpnp_astype(self, dtype) | ||
return call_origin(numpy.ndarray.astype, self, dtype, order, casting, subok, copy) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think doing fallback on numpy.ndarray
here is bad idea.
It is better just throw error.
@@ -2881,6 +2881,7 @@ tests/test_umath.py::test_rint_big_int | |||
tests/test_umath.py::TestRoundingFunctions::test_object_direct | |||
tests/test_umath.py::TestRoundingFunctions::test_object_indirect | |||
tests/test_umath.py::test_signaling_nan_exceptions | |||
tests/test_umath.py::TestSign::test_sign_dtype_nan_object |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the reason?
Provide info on description, please.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test failed with error:
DPNP error: in function dpnp_dtype_to_DPNPFuncType() type '<class 'object'>' is not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
object
is a (global) variable. By default it is bound to a built-in class which is the root of the type hierarchy.
dpnp_dtype_to_DPNPFuncType
can not convert object
to dpnpc
function types (DPNP_FT_DOUBLE, DPNP_FT_FLOAT, DPNP_FT_LONG, ...).
See this internal func impl here.
You can fallback on numpy
for case when dtype is object.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can fallback on numpy for case when dtype is object.
Sorry, my fault. It is bad proposal, just leave it as is.
No need doing fallback on numpy
for dparray own methods.
@pytest.mark.parametrize("arr_dtype", | ||
[numpy.float64, numpy.float32, numpy.int64, numpy.int32, numpy.bool, numpy.bool_, numpy.complex], | ||
ids=['float64', 'float32', 'int64', 'int32', 'bool', 'bool_', 'complex']) | ||
@pytest.mark.parametrize("arr", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if array is empty?
Corner cases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
outdated.
tests/skipped_tests_gpu.tbl
Outdated
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-float64] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-float32] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-int64] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-int32] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool_] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-complex] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-float64] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-float32] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-int64] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-int32] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-bool] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-bool_] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-complex] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please, provide some info why are you skipping all this tests?
tests/skipped_tests.tbl
Outdated
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-float64] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-float32] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-int64] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-int32] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool_] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-complex] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-float64] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-float32] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-int64] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-int32] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-bool] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-bool_] | ||
tests/test_dparray.py::test_astype[[[-2, -1], [1, 2]]-complex-complex] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because
error: assigning to 'bool' from incompatible type 'const std::complex'
error: assigning to 'int' from incompatible type 'const std::complex'
error: assigning to 'long' from incompatible type 'const std::complex'
error: assigning to 'float' from incompatible type 'const std::complex'
error: assigning to 'double' from incompatible type 'const std::complex'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like they have the same issue. Investigation and fix is needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like they have the same issue. Investigation and fix is needed.
This can be done on separate PR.
So seems that, you are disabling even more tests for changes proposed by you. |
@samir-nasibli you sure that I am disabling even more tests? |
tests/skipped_tests_gpu.tbl
Outdated
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-int32] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-bool_] | ||
tests/test_dparray.py::test_astype[[-2, -1, 0, 1, 2]-complex-complex] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Complex to complex doesn't works?
@@ -154,7 +168,6 @@ tests/test_linalg.py::test_svd[(5,3)-complex128] | |||
tests/test_random.py::TestPermutationsTestShuffle::test_shuffle1[ lambda x: x] | |||
tests/test_random.py::TestPermutationsTestShuffle::test_shuffle1[ lambda x: dpnp.asarray(x).astype(dpnp.int8)] | |||
tests/test_random.py::TestPermutationsTestShuffle::test_shuffle1[ lambda x: dpnp.asarray(x).astype(dpnp.complex64)] | |||
tests/test_random.py::TestPermutationsTestShuffle::test_shuffle1[ lambda x: dpnp.asarray(x).astype(object)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty good. Thanks!
@pytest.mark.parametrize("arr_dtype", | ||
[numpy.float64, numpy.float32, numpy.int64, numpy.int32, numpy.bool, numpy.bool_, numpy.complex], | ||
ids=['float64', 'float32', 'int64', 'int32', 'bool', 'bool_', 'complex']) | ||
@pytest.mark.parametrize("arr", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
outdated.
Issues with |
@@ -125,10 +126,16 @@ cpdef dparray dpnp_array(obj, dtype=None): | |||
|
|||
|
|||
cpdef dparray dpnp_astype(dparray array1, dtype_target): | |||
cdef dparray result = dparray(array1.shape, dtype=dtype_target) | |||
cdef DPNPFuncType param1_type = dpnp_dtype_to_DPNPFuncType(array1.dtype) | |||
cdef DPNPFuncType param2_type = dpnp_dtype_to_DPNPFuncType(dtype_target) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dtype_target
might be diffrent. It can contain some object with no dtype
. I think this is the cause of the error you saw
This PR suggests adding a temporary workaround to a problem in oneMath [#642 ](uxlfoundation/oneMath#642) where exceptions are no longer thrown in `lapack` namespace for `getrf` function as expected. In oneMath develop branch `oneapi::mkl::lapack::computation_error` is not thrown. Instead, `oneapi::mkl::computation_error` from `mkl` namespace is used so existing catch block `mkl_lapack::exception` does not handle singular matrix errors. A workaround has been added to explicitly catch `oneapi::mkl::computation_error` and update `dev_info` ensuring that singular matrices are handled correctly.
This PR suggests adding a temporary workaround to a problem in oneMath [#642 ](uxlfoundation/oneMath#642) where exceptions are no longer thrown in `lapack` namespace for `getrf` function as expected. In oneMath develop branch `oneapi::mkl::lapack::computation_error` is not thrown. Instead, `oneapi::mkl::computation_error` from `mkl` namespace is used so existing catch block `mkl_lapack::exception` does not handle singular matrix errors. A workaround has been added to explicitly catch `oneapi::mkl::computation_error` and update `dev_info` ensuring that singular matrices are handled correctly. 1b0ce60
No description provided.