/********************************************************************************************* Description: The entry for sw performance tests Copyright : All right reserved by NCIC.ICT Author : Zhang Zhonghai Date : 2023/08/20 ***********************************************************************************************/ #include #include #include #include #include #include #include #include "byte_alloc.h" #include "utils.h" #include "profiling.h" #include "extend.h" #include "align.h" #define TEST_EXTEND 0 #define TEST_ALIGN 1 // 程序执行入口 int main(int argc, char *argv[]) { #if TEST_EXTEND main_extend(argc - 1, argv + 1); #endif #if TEST_ALIGN main_align(argc - 1, argv + 1); #endif return 0; }