@@ -420,8 +420,8 @@ INP_DLLEXPORT void dpnp_count_nonzero_c(void* array1_in, void* result1_out, size
420
420
* @param [in] ndim Number of elements in shape.
421
421
*/
422
422
template <typename _DataType>
423
- INP_DLLEXPORT void
424
- dpnp_partition_c ( void * array, void * array2, void * result, const size_t kth, const shape_elem_type* shape, const size_t ndim);
423
+ INP_DLLEXPORT void dpnp_partition_c (
424
+ void * array, void * array2, void * result, const size_t kth, const shape_elem_type* shape, const size_t ndim);
425
425
426
426
/* *
427
427
* @ingroup BACKEND_API
@@ -480,7 +480,7 @@ INP_DLLEXPORT void dpnp_prod_c(void* result_out,
480
480
* @param [in] input_strides Strides of first input array.
481
481
* @param [in] axis Axis.
482
482
* @param [in] naxis Number of elements in axis.
483
- */
483
+ */
484
484
template <typename _DataType>
485
485
INP_DLLEXPORT void dpnp_ptp_c (void * result_out,
486
486
const size_t result_size,
@@ -494,7 +494,7 @@ INP_DLLEXPORT void dpnp_ptp_c(void* result_out,
494
494
const shape_elem_type* input_strides,
495
495
const shape_elem_type* axis,
496
496
const size_t naxis);
497
-
497
+
498
498
/* *
499
499
* @ingroup BACKEND_API
500
500
* @brief Product of array elements
@@ -688,8 +688,13 @@ INP_DLLEXPORT void
688
688
* @param [in] ndim Number of elements in shape.
689
689
*/
690
690
template <typename _DataType>
691
- INP_DLLEXPORT void dpnp_diag_c (
692
- void * array, void * result, const int k, shape_elem_type* shape, shape_elem_type* res_shape, const size_t ndim, const size_t res_ndim);
691
+ INP_DLLEXPORT void dpnp_diag_c (void * array,
692
+ void * result,
693
+ const int k,
694
+ shape_elem_type* shape,
695
+ shape_elem_type* res_shape,
696
+ const size_t ndim,
697
+ const size_t res_ndim);
693
698
694
699
/* *
695
700
* @ingroup BACKEND_API
@@ -800,8 +805,8 @@ INP_DLLEXPORT void dpnp_max_c(void* array1_in,
800
805
* @param [in] naxis Number of elements in axis.
801
806
*/
802
807
template <typename _DataType, typename _ResultType>
803
- INP_DLLEXPORT void
804
- dpnp_mean_c ( void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis);
808
+ INP_DLLEXPORT void dpnp_mean_c (
809
+ void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis);
805
810
806
811
/* *
807
812
* @ingroup BACKEND_API
@@ -815,8 +820,8 @@ INP_DLLEXPORT void
815
820
* @param [in] naxis Number of elements in axis.
816
821
*/
817
822
template <typename _DataType, typename _ResultType>
818
- INP_DLLEXPORT void
819
- dpnp_median_c ( void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis);
823
+ INP_DLLEXPORT void dpnp_median_c (
824
+ void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis);
820
825
821
826
/* *
822
827
* @ingroup BACKEND_API
@@ -886,8 +891,13 @@ INP_DLLEXPORT void dpnp_around_c(const void* input_in, void* result_out, const s
886
891
* @param [in] ddof Delta degrees of freedom.
887
892
*/
888
893
template <typename _DataType, typename _ResultType>
889
- INP_DLLEXPORT void dpnp_std_c (
890
- void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis, size_t ddof);
894
+ INP_DLLEXPORT void dpnp_std_c (void * array,
895
+ void * result,
896
+ const shape_elem_type* shape,
897
+ size_t ndim,
898
+ const shape_elem_type* axis,
899
+ size_t naxis,
900
+ size_t ddof);
891
901
892
902
/* *
893
903
* @ingroup BACKEND_API
@@ -939,8 +949,13 @@ INP_DLLEXPORT void dpnp_tri_c(void* result, const size_t N, const size_t M, cons
939
949
* @param [in] res_ndim Number of elements in res_shape.
940
950
*/
941
951
template <typename _DataType>
942
- INP_DLLEXPORT void dpnp_tril_c (
943
- void * array, void * result, const int k, shape_elem_type* shape, shape_elem_type* res_shape, const size_t ndim, const size_t res_ndim);
952
+ INP_DLLEXPORT void dpnp_tril_c (void * array,
953
+ void * result,
954
+ const int k,
955
+ shape_elem_type* shape,
956
+ shape_elem_type* res_shape,
957
+ const size_t ndim,
958
+ const size_t res_ndim);
944
959
945
960
/* *
946
961
* @ingroup BACKEND_API
@@ -955,8 +970,13 @@ INP_DLLEXPORT void dpnp_tril_c(
955
970
* @param [in] res_ndim Number of elements in res_shape.
956
971
*/
957
972
template <typename _DataType>
958
- INP_DLLEXPORT void dpnp_triu_c (
959
- void * array, void * result, const int k, shape_elem_type* shape, shape_elem_type* res_shape, const size_t ndim, const size_t res_ndim);
973
+ INP_DLLEXPORT void dpnp_triu_c (void * array,
974
+ void * result,
975
+ const int k,
976
+ shape_elem_type* shape,
977
+ shape_elem_type* res_shape,
978
+ const size_t ndim,
979
+ const size_t res_ndim);
960
980
961
981
/* *
962
982
* @ingroup BACKEND_API
@@ -971,8 +991,13 @@ INP_DLLEXPORT void dpnp_triu_c(
971
991
* @param [in] ddof Delta degrees of freedom.
972
992
*/
973
993
template <typename _DataType, typename _ResultType>
974
- INP_DLLEXPORT void dpnp_var_c (
975
- void * array, void * result, const shape_elem_type* shape, size_t ndim, const shape_elem_type* axis, size_t naxis, size_t ddof);
994
+ INP_DLLEXPORT void dpnp_var_c (void * array,
995
+ void * result,
996
+ const shape_elem_type* shape,
997
+ size_t ndim,
998
+ const shape_elem_type* axis,
999
+ size_t naxis,
1000
+ size_t ddof);
976
1001
977
1002
/* *
978
1003
* @ingroup BACKEND_API
0 commit comments