3b84f5a4f6
[git-p4: depot-paths = "//depot/stg/hsa/drivers/hsa/runtime/": change = 1124951]
[ROCm/ROCR-Runtime commit: 9d9ea2ad3b]
14 строки
296 B
C++
14 строки
296 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
double CalcMean(vector<double> scores);
|
|
double CalcMedian(vector<double> scores);
|
|
double CalcStdDeviation(vector<double> scores, int score_mean);
|
|
int CalcConcurrentQueues(vector<double> scores);
|
|
|
|
|
|
|