Skip to content

Commit

Permalink
Added Group annotations
Browse files Browse the repository at this point in the history
Added Group annotations to all benchmarks.
  • Loading branch information
jiyo4476 committed Jul 29, 2024
1 parent b85f442 commit dd9bdd6
Show file tree
Hide file tree
Showing 33 changed files with 99 additions and 0 deletions.
3 changes: 3 additions & 0 deletions benchmarks/initializers/ArangeInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class ArangeInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/initializers/ArrayInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class ArrayInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/initializers/FullInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class FullInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/initializers/IdentityInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class IdentityInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/initializers/OnesInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class OnesInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/initializers/ZerosInitializerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"initializers"})
*/
class ZerosInitializerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/CholeskyBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class CholeskyBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/CondBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class CondBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/DetBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class DetBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/DotBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class DotBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/EigBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class EigBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/InnerBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class InnerBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/InvBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class InvBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/LstsqBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class LstsqBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/LuBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class LuBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/MatmulBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class MatmulBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/Matrix_Rank_Bench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class Matrix_Rank_Bench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/NormBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class NormBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/OuterBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class OuterBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/QrBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class QrBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/SVDBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class SVDBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/SolveBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class SolveBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/linalg/TraceBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"linearAlgebra"})
*/
class TraceBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/AddBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class AddBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/DivideBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class DivideBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/ModBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class ModBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/MultiplyBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class MultiplyBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/NegativeBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class NegativeBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/PositiveBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class PositiveBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/PowBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class PowBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/ProdBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"sumsProductsDifferences"})
*/
class ProdBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/SubtractBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"arithmetics"})
*/
class SubtractBench
{
/**
Expand Down
3 changes: 3 additions & 0 deletions benchmarks/math/SumBench.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
/**
* @Groups({"sumsProductsDifferences"})
*/
class SumBench
{
/**
Expand Down

0 comments on commit dd9bdd6

Please sign in to comment.