代码拉取完成,页面将自动刷新
/*
* 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_ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。