34 lines
729 B
C
34 lines
729 B
C
/*********************************************************************************************
|
|
Description: The entry for sw performance tests
|
|
|
|
Copyright : All right reserved by NCIC.ICT
|
|
|
|
Author : Zhang Zhonghai
|
|
Date : 2023/08/20
|
|
***********************************************************************************************/
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <assert.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include "byte_alloc.h"
|
|
#include "utils.h"
|
|
#include "extend.h"
|
|
#include "profiling.h"
|
|
|
|
|
|
#define TEST_EXTEND
|
|
|
|
// 程序执行入口
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
#ifdef TEST_EXTEND
|
|
main_extend(argc - 1, argv + 1);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|