Skip to content
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

Merged
merged 5 commits into from
Mar 11, 2021
Merged

Native astype #642

merged 5 commits into from
Mar 11, 2021

Conversation

Rubtsowa
Copy link
Contributor

@Rubtsowa Rubtsowa commented Mar 9, 2021

No description provided.

@Rubtsowa Rubtsowa requested a review from shssf March 9, 2021 18:29
Copy link

@samir-nasibli samir-nasibli left a 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>

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)

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.

Comment on lines 42 to 47
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);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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
Comment on lines 793 to 807
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)

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

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.

Copy link
Contributor Author

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

Copy link

@samir-nasibli samir-nasibli Mar 10, 2021

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.

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",

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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

outdated.

Comment on lines 1 to 14
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]

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?

Comment on lines 1 to 14
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]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the reason?

Copy link
Contributor Author

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'

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.

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.

@samir-nasibli
Copy link

So seems that, you are disabling even more tests for changes proposed by you.
You need to investigate them.

@Rubtsowa
Copy link
Contributor Author

@samir-nasibli you sure that I am disabling even more tests?
I added 196 tests, 20 of them skipped(not converted many types in complex in c++ ). And I uskip 1 test and 1 skip in existing tests.

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]

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)]
Copy link

@samir-nasibli samir-nasibli Mar 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link

@samir-nasibli samir-nasibli left a 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",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

outdated.

@samir-nasibli
Copy link

Issues with complex type can be solved on other PR.

@@ -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)
Copy link
Contributor

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

@shssf shssf merged commit 299667d into IntelPython:master Mar 11, 2021
@Rubtsowa Rubtsowa deleted the native_astype branch March 11, 2021 09:10
vlad-perevezentsev added a commit that referenced this pull request Mar 7, 2025
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.
github-actions bot added a commit that referenced this pull request Mar 7, 2025
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants