From 373844f5c8f1963743c0f3ecfbe432e657537537 Mon Sep 17 00:00:00 2001 From: Andrew DalPino Date: Tue, 19 Sep 2023 00:05:44 -0500 Subject: [PATCH] Recompile --- ext/php_tensor.h | 4 -- ext/tensor/columnvector.zep.c | 26 +++---- ext/tensor/decompositions/cholesky.zep.c | 4 +- ext/tensor/decompositions/eigen.zep.c | 4 +- ext/tensor/decompositions/lu.zep.c | 8 +-- ext/tensor/decompositions/svd.zep.c | 6 +- ext/tensor/matrix.zep.c | 88 ++++++++++++------------ ext/tensor/reductions/ref.zep.c | 4 +- ext/tensor/reductions/rref.zep.c | 4 +- ext/tensor/vector.zep.c | 58 ++++++++-------- 10 files changed, 101 insertions(+), 105 deletions(-) diff --git a/ext/php_tensor.h b/ext/php_tensor.h index baaf1c4..2d7a15e 100644 --- a/ext/php_tensor.h +++ b/ext/php_tensor.h @@ -14,11 +14,7 @@ #define PHP_TENSOR_VERSION "3.0.3" #define PHP_TENSOR_EXTNAME "tensor" #define PHP_TENSOR_AUTHOR "The Rubix ML Community" -<<<<<<< HEAD #define PHP_TENSOR_ZEPVERSION "0.17.0-$Id$" -======= -#define PHP_TENSOR_ZEPVERSION "0.17.0-9f99da6" ->>>>>>> master #define PHP_TENSOR_DESCRIPTION "A library and extension that provides objects for scientific computing in PHP." diff --git a/ext/tensor/columnvector.zep.c b/ext/tensor/columnvector.zep.c index 6f7d0af..66bf31f 100644 --- a/ext/tensor/columnvector.zep.c +++ b/ext/tensor/columnvector.zep.c @@ -191,7 +191,7 @@ PHP_METHOD(Tensor_ColumnVector, matmul) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -254,7 +254,7 @@ PHP_METHOD(Tensor_ColumnVector, multiplyMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -443,7 +443,7 @@ PHP_METHOD(Tensor_ColumnVector, divideMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -632,7 +632,7 @@ PHP_METHOD(Tensor_ColumnVector, addMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -821,7 +821,7 @@ PHP_METHOD(Tensor_ColumnVector, subtractMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1010,7 +1010,7 @@ PHP_METHOD(Tensor_ColumnVector, powMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1199,7 +1199,7 @@ PHP_METHOD(Tensor_ColumnVector, modMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1388,7 +1388,7 @@ PHP_METHOD(Tensor_ColumnVector, equalMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1601,7 +1601,7 @@ PHP_METHOD(Tensor_ColumnVector, notEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1814,7 +1814,7 @@ PHP_METHOD(Tensor_ColumnVector, greaterMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -2027,7 +2027,7 @@ PHP_METHOD(Tensor_ColumnVector, greaterEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -2240,7 +2240,7 @@ PHP_METHOD(Tensor_ColumnVector, lessMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -2453,7 +2453,7 @@ PHP_METHOD(Tensor_ColumnVector, lessEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/decompositions/cholesky.zep.c b/ext/tensor/decompositions/cholesky.zep.c index f9dae24..786af50 100644 --- a/ext/tensor/decompositions/cholesky.zep.c +++ b/ext/tensor/decompositions/cholesky.zep.c @@ -70,7 +70,7 @@ PHP_METHOD(Tensor_Decompositions_Cholesky, decompose) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -122,7 +122,7 @@ PHP_METHOD(Tensor_Decompositions_Cholesky, __construct) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(l, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(l, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/decompositions/eigen.zep.c b/ext/tensor/decompositions/eigen.zep.c index 07ce670..5a65036 100644 --- a/ext/tensor/decompositions/eigen.zep.c +++ b/ext/tensor/decompositions/eigen.zep.c @@ -87,7 +87,7 @@ PHP_METHOD(Tensor_Decompositions_Eigen, decompose) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 2) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) Z_PARAM_OPTIONAL Z_PARAM_BOOL(symmetric) ZEND_PARSE_PARAMETERS_END(); @@ -167,7 +167,7 @@ PHP_METHOD(Tensor_Decompositions_Eigen, __construct) bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(2, 2) Z_PARAM_ARRAY(eigenvalues) - Z_PARAM_OBJECT_OF_CLASS(eigenvectors, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(eigenvectors, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/decompositions/lu.zep.c b/ext/tensor/decompositions/lu.zep.c index faab245..319b700 100644 --- a/ext/tensor/decompositions/lu.zep.c +++ b/ext/tensor/decompositions/lu.zep.c @@ -92,7 +92,7 @@ PHP_METHOD(Tensor_Decompositions_Lu, decompose) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -159,9 +159,9 @@ PHP_METHOD(Tensor_Decompositions_Lu, __construct) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(3, 3) - Z_PARAM_OBJECT_OF_CLASS(l, tensor_matrix_ce) - Z_PARAM_OBJECT_OF_CLASS(u, tensor_matrix_ce) - Z_PARAM_OBJECT_OF_CLASS(p, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(l, zephir_get_internal_ce(SL("tensor\\matrix"))) + Z_PARAM_OBJECT_OF_CLASS(u, zephir_get_internal_ce(SL("tensor\\matrix"))) + Z_PARAM_OBJECT_OF_CLASS(p, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/decompositions/svd.zep.c b/ext/tensor/decompositions/svd.zep.c index 0135de1..2a9e82b 100644 --- a/ext/tensor/decompositions/svd.zep.c +++ b/ext/tensor/decompositions/svd.zep.c @@ -82,7 +82,7 @@ PHP_METHOD(Tensor_Decompositions_Svd, decompose) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -135,9 +135,9 @@ PHP_METHOD(Tensor_Decompositions_Svd, __construct) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(3, 3) - Z_PARAM_OBJECT_OF_CLASS(u, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(u, zephir_get_internal_ce(SL("tensor\\matrix"))) Z_PARAM_ARRAY(singularValues) - Z_PARAM_OBJECT_OF_CLASS(vT, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(vT, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/matrix.zep.c b/ext/tensor/matrix.zep.c index feb61a4..742573d 100644 --- a/ext/tensor/matrix.zep.c +++ b/ext/tensor/matrix.zep.c @@ -2321,7 +2321,7 @@ PHP_METHOD(Tensor_Matrix, matmul) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -2390,7 +2390,7 @@ PHP_METHOD(Tensor_Matrix, dot) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -2464,7 +2464,7 @@ PHP_METHOD(Tensor_Matrix, convolve) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 2) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) Z_PARAM_OPTIONAL Z_PARAM_LONG(stride) ZEND_PARSE_PARAMETERS_END(); @@ -4723,7 +4723,7 @@ PHP_METHOD(Tensor_Matrix, covariance) bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(0, 1) Z_PARAM_OPTIONAL - Z_PARAM_OBJECT_OF_CLASS_OR_NULL(mean, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS_OR_NULL(mean, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5828,7 +5828,7 @@ PHP_METHOD(Tensor_Matrix, augmentAbove) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5904,7 +5904,7 @@ PHP_METHOD(Tensor_Matrix, augmentBelow) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5981,7 +5981,7 @@ PHP_METHOD(Tensor_Matrix, augmentLeft) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6060,7 +6060,7 @@ PHP_METHOD(Tensor_Matrix, augmentRight) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6262,7 +6262,7 @@ PHP_METHOD(Tensor_Matrix, multiplyMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6379,7 +6379,7 @@ PHP_METHOD(Tensor_Matrix, divideMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6496,7 +6496,7 @@ PHP_METHOD(Tensor_Matrix, addMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6613,7 +6613,7 @@ PHP_METHOD(Tensor_Matrix, subtractMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6731,7 +6731,7 @@ PHP_METHOD(Tensor_Matrix, powMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6849,7 +6849,7 @@ PHP_METHOD(Tensor_Matrix, modMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6967,7 +6967,7 @@ PHP_METHOD(Tensor_Matrix, equalMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7084,7 +7084,7 @@ PHP_METHOD(Tensor_Matrix, notEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7202,7 +7202,7 @@ PHP_METHOD(Tensor_Matrix, greaterMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7320,7 +7320,7 @@ PHP_METHOD(Tensor_Matrix, greaterEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7437,7 +7437,7 @@ PHP_METHOD(Tensor_Matrix, lessMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7554,7 +7554,7 @@ PHP_METHOD(Tensor_Matrix, lessEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7668,7 +7668,7 @@ PHP_METHOD(Tensor_Matrix, multiplyVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7771,7 +7771,7 @@ PHP_METHOD(Tensor_Matrix, divideVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7874,7 +7874,7 @@ PHP_METHOD(Tensor_Matrix, addVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -7977,7 +7977,7 @@ PHP_METHOD(Tensor_Matrix, subtractVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8080,7 +8080,7 @@ PHP_METHOD(Tensor_Matrix, powVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8183,7 +8183,7 @@ PHP_METHOD(Tensor_Matrix, modVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8287,7 +8287,7 @@ PHP_METHOD(Tensor_Matrix, equalVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8390,7 +8390,7 @@ PHP_METHOD(Tensor_Matrix, notEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8493,7 +8493,7 @@ PHP_METHOD(Tensor_Matrix, greaterVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8596,7 +8596,7 @@ PHP_METHOD(Tensor_Matrix, greaterEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8699,7 +8699,7 @@ PHP_METHOD(Tensor_Matrix, lessVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8803,7 +8803,7 @@ PHP_METHOD(Tensor_Matrix, lessEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -8912,7 +8912,7 @@ PHP_METHOD(Tensor_Matrix, multiplyColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9033,7 +9033,7 @@ PHP_METHOD(Tensor_Matrix, divideColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9154,7 +9154,7 @@ PHP_METHOD(Tensor_Matrix, addColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9275,7 +9275,7 @@ PHP_METHOD(Tensor_Matrix, subtractColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9396,7 +9396,7 @@ PHP_METHOD(Tensor_Matrix, powColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9517,7 +9517,7 @@ PHP_METHOD(Tensor_Matrix, modColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9638,7 +9638,7 @@ PHP_METHOD(Tensor_Matrix, equalColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9759,7 +9759,7 @@ PHP_METHOD(Tensor_Matrix, notEqualColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -9880,7 +9880,7 @@ PHP_METHOD(Tensor_Matrix, greaterColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -10001,7 +10001,7 @@ PHP_METHOD(Tensor_Matrix, greaterEqualColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -10122,7 +10122,7 @@ PHP_METHOD(Tensor_Matrix, lessColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -10243,7 +10243,7 @@ PHP_METHOD(Tensor_Matrix, lessEqualColumnVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_columnvector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\columnvector"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/reductions/ref.zep.c b/ext/tensor/reductions/ref.zep.c index 9bf6e9f..12ba9a7 100644 --- a/ext/tensor/reductions/ref.zep.c +++ b/ext/tensor/reductions/ref.zep.c @@ -77,7 +77,7 @@ PHP_METHOD(Tensor_Reductions_Ref, reduce) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -130,7 +130,7 @@ PHP_METHOD(Tensor_Reductions_Ref, __construct) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(2, 2) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) Z_PARAM_LONG(swaps) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/reductions/rref.zep.c b/ext/tensor/reductions/rref.zep.c index 8f9a439..5ef2591 100644 --- a/ext/tensor/reductions/rref.zep.c +++ b/ext/tensor/reductions/rref.zep.c @@ -85,7 +85,7 @@ PHP_METHOD(Tensor_Reductions_Rref, reduce) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -232,7 +232,7 @@ PHP_METHOD(Tensor_Reductions_Rref, __construct) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(a, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(a, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif diff --git a/ext/tensor/vector.zep.c b/ext/tensor/vector.zep.c index 320a7cb..1e72c1b 100644 --- a/ext/tensor/vector.zep.c +++ b/ext/tensor/vector.zep.c @@ -1317,7 +1317,7 @@ PHP_METHOD(Tensor_Vector, dot) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1385,7 +1385,7 @@ PHP_METHOD(Tensor_Vector, convolve) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 2) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) Z_PARAM_OPTIONAL Z_PARAM_LONG(stride) ZEND_PARSE_PARAMETERS_END(); @@ -1458,7 +1458,7 @@ PHP_METHOD(Tensor_Vector, matmul) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1491,7 +1491,7 @@ PHP_METHOD(Tensor_Vector, inner) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -1542,7 +1542,7 @@ PHP_METHOD(Tensor_Vector, outer) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4025,7 +4025,7 @@ PHP_METHOD(Tensor_Vector, multiplyMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4131,7 +4131,7 @@ PHP_METHOD(Tensor_Vector, divideMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4237,7 +4237,7 @@ PHP_METHOD(Tensor_Vector, addMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4343,7 +4343,7 @@ PHP_METHOD(Tensor_Vector, subtractMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4449,7 +4449,7 @@ PHP_METHOD(Tensor_Vector, powMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4555,7 +4555,7 @@ PHP_METHOD(Tensor_Vector, modMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4661,7 +4661,7 @@ PHP_METHOD(Tensor_Vector, equalMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4767,7 +4767,7 @@ PHP_METHOD(Tensor_Vector, notEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4873,7 +4873,7 @@ PHP_METHOD(Tensor_Vector, greaterMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -4979,7 +4979,7 @@ PHP_METHOD(Tensor_Vector, greaterEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5085,7 +5085,7 @@ PHP_METHOD(Tensor_Vector, lessMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5191,7 +5191,7 @@ PHP_METHOD(Tensor_Vector, lessEqualMatrix) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_matrix_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\matrix"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5290,7 +5290,7 @@ PHP_METHOD(Tensor_Vector, multiplyVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5359,7 +5359,7 @@ PHP_METHOD(Tensor_Vector, divideVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5428,7 +5428,7 @@ PHP_METHOD(Tensor_Vector, addVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5497,7 +5497,7 @@ PHP_METHOD(Tensor_Vector, subtractVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5566,7 +5566,7 @@ PHP_METHOD(Tensor_Vector, powVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5635,7 +5635,7 @@ PHP_METHOD(Tensor_Vector, modVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5705,7 +5705,7 @@ PHP_METHOD(Tensor_Vector, equalVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5774,7 +5774,7 @@ PHP_METHOD(Tensor_Vector, notEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5843,7 +5843,7 @@ PHP_METHOD(Tensor_Vector, greaterVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5912,7 +5912,7 @@ PHP_METHOD(Tensor_Vector, greaterEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -5981,7 +5981,7 @@ PHP_METHOD(Tensor_Vector, lessVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif @@ -6050,7 +6050,7 @@ PHP_METHOD(Tensor_Vector, lessEqualVector) #if PHP_VERSION_ID >= 80000 bool is_null_true = 1; ZEND_PARSE_PARAMETERS_START(1, 1) - Z_PARAM_OBJECT_OF_CLASS(b, tensor_vector_ce) + Z_PARAM_OBJECT_OF_CLASS(b, zephir_get_internal_ce(SL("tensor\\vector"))) ZEND_PARSE_PARAMETERS_END(); #endif