Skip to content

Commit e501f1d

Browse files
densmirnoleksandr-pavlyk
authored andcommitted
Fix conjugate
1 parent b6204a0 commit e501f1d

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

dpnp/backend/kernels/dpnp_krnl_elemwise.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ static void func_map_init_elemwise_1arg_1type(func_map_t& fmap)
724724
fmap[DPNPFuncName::DPNP_FN_CONJIGUATE_EXT][eft_FLT][eft_FLT] = {eft_FLT, (void*)dpnp_copy_c_ext<float>};
725725
fmap[DPNPFuncName::DPNP_FN_CONJIGUATE_EXT][eft_DBL][eft_DBL] = {eft_DBL, (void*)dpnp_copy_c_ext<double>};
726726
fmap[DPNPFuncName::DPNP_FN_CONJIGUATE_EXT][eft_C128][eft_C128] = {
727-
eft_C128, (void*)dpnp_copy_c_ext<std::complex<double>>};
727+
eft_C128, (void*)dpnp_conjugate_c_ext<std::complex<double>>};
728728

729729
fmap[DPNPFuncName::DPNP_FN_COPY][eft_BLN][eft_BLN] = {eft_BLN, (void*)dpnp_copy_c_default<bool>};
730730
fmap[DPNPFuncName::DPNP_FN_COPY][eft_INT][eft_INT] = {eft_INT, (void*)dpnp_copy_c_default<int32_t>};

tests/skipped_tests.tbl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
tests/test_sycl_queue.py::test_1in_1out[opencl:gpu:0-conjugate-data2]
21
tests/test_sycl_queue.py::test_1in_1out[opencl:gpu:0-trapz-data19]
3-
tests/test_sycl_queue.py::test_1in_1out[opencl:cpu:0-conjugate-data2]
42
tests/test_sycl_queue.py::test_1in_1out[opencl:cpu:0-trapz-data19]
5-
tests/test_sycl_queue.py::test_1in_1out[level_zero:gpu:0-conjugate-data2]
63
tests/test_sycl_queue.py::test_broadcasting[opencl:gpu:0-floor_divide-data12-data22]
74
tests/test_sycl_queue.py::test_broadcasting[opencl:gpu:0-remainder-data15-data25]
85
tests/test_sycl_queue.py::test_broadcasting[opencl:cpu:0-floor_divide-data12-data22]

tests/skipped_tests_gpu.tbl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
tests/test_sycl_queue.py::test_1in_1out[opencl:gpu:0-conjugate-data2]
21
tests/test_sycl_queue.py::test_1in_1out[opencl:gpu:0-trapz-data19]
3-
tests/test_sycl_queue.py::test_1in_1out[opencl:cpu:0-conjugate-data2]
42
tests/test_sycl_queue.py::test_1in_1out[opencl:cpu:0-trapz-data19]
5-
tests/test_sycl_queue.py::test_1in_1out[level_zero:gpu:0-conjugate-data2]
63
tests/test_sycl_queue.py::test_broadcasting[opencl:gpu:0-floor_divide-data12-data22]
74
tests/test_sycl_queue.py::test_broadcasting[opencl:gpu:0-remainder-data15-data25]
85
tests/test_sycl_queue.py::test_broadcasting[opencl:cpu:0-floor_divide-data12-data22]

0 commit comments

Comments
 (0)