We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c775b09 commit 890406aCopy full SHA for 890406a
lib/node_modules/@stdlib/blas/base/ssyr/benchmark/c/benchmark.c
@@ -80,16 +80,6 @@ static double tic( void ) {
80
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
81
}
82
83
-/**
84
-* Generates a random number on the interval [0,1).
85
-*
86
-* @return random number
87
-*/
88
-static float rand_float( void ) {
89
- int r = rand();
90
- return (float)r / ( (float)RAND_MAX + 1.0f );
91
-}
92
-
93
/**
94
* Runs a benchmark.
95
*
0 commit comments