2b2b8329b5
Signed-off-by: Alysa Liu <Alysa.Liu@amd.com>
20 baris
407 B
C++
20 baris
407 B
C++
/*
|
|
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#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);
|
|
|
|
|
|
|