Skip to content

Commit

Permalink
Update Zephir dependency and fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdalpino committed Mar 13, 2024
1 parent 178da34 commit 483adcb
Show file tree
Hide file tree
Showing 98 changed files with 615 additions and 615 deletions.
2 changes: 1 addition & 1 deletion benchmarks/Arithmetic/MatrixColumnVectorMultiplyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class MatrixColumnVectorMultiplyBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Arithmetic/MatrixMatrixMultiplyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class MatrixMatrixMultiplyBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $b;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Arithmetic/MatrixScalarMultiplyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixScalarMultiplyBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Arithmetic/MatrixSumBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixSumBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Arithmetic/MatrixVectorMultiplyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
class MatrixVectorMultiplyBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $b;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Arithmetic/VectorVectorMultiplyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class VectorVectorMultiplyBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $b;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Comparison/VectorVectorEqualBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class VectorVectorEqualBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $b;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Decompositions/CholeskyBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class CholeskyBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Decompositions/EigBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class EigBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Decompositions/LUBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class LUBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Decompositions/SVDBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class SVDBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/AbsMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class AbsMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/ExpMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class ExpMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/LogMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class LogMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/ProductVectorBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class ProductVectorBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/SqrtMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class SqrtMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/SquareMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class SquareMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/SumMatrixBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class SumMatrixBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Functions/SumVectorBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class SumVectorBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/LinearAlgebra/MatmulBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class MatmulBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $b;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixDeterminantBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixDeterminantBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixInfinityNormBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixInfinityNormBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixInverseBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixInverseBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixL1NormBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixL1NormBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixL2NormBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixL2NormBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixMaxNormBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixMaxNormBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/LinearAlgebra/MatrixPseudoInverseBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixPseudoinverseBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/LinearAlgebra/VectorDotProductBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class VectorDotProductBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $b;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/LinearAlgebra/VectorOuterProductBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class VectorOuterProductBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $b;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Reductions/REFBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class REFBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Reductions/RREFBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class RREFBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/SignalProcessing/MatrixConvolveBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class MatrixConvolveBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $kernel;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/SignalProcessing/VectorConvolveBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class VectorConvolveBench
{
/**
* @var \Tensor\Vector
* @var Vector
*/
protected $a;

/**
* @var \Tensor\Vector
* @var Vector
*/
protected $kernel;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Special/MatrixClippingBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
class MatrixClippingBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $kernel;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Statistical/CovarianceBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class CovarianceBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Statistical/MatrixMeanBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixMeanBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Statistical/MatrixMedianBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class MatrixMedianBench
{
/**
* @var \Tensor\Matrix
* @var Matrix
*/
protected $a;

Expand Down
Loading

0 comments on commit 483adcb

Please sign in to comment.