加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sdx_test.h 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
changwoolee 提交于 2017-07-20 23:59 . all bug fixed
/*
* sdx_test.h
*
* Created on: 2017. 4. 11.
* Author: woobes
*/
#ifndef SRC_SDX_TEST_H_
#define SRC_SDX_TEST_H_
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "sds_lib.h"
#define TEST_ITR 1000
using namespace std;
/*class perf_counter
{
public:
unsigned long long int tot, cnt, calls;
perf_counter() : tot(0), cnt(0), calls(0) {};
inline void reset() { tot = cnt = calls = 0; }
inline void start() { cnt = sds_clock_counter(); calls++; };
inline void stop() { tot += (sds_clock_counter() - cnt); };
inline uint64_t avg_cpu_cycles() { return (tot / calls); };
};
*/
int check(float* arr1, float* arr2, int N){
for(int i=0;i<N;i++){
float t1 = arr1[i];
float t2 = arr2[i];
if(t1!=t2){
std::cout<<i<<" Error : HW and SW are not matched"<<std::endl;
return 1;
}
}
return 0;
}
#endif /* SRC_SDX_TEST_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化