Skip to content
Snippets Groups Projects
Commit 531adac3 authored by Armando Luiz Nicolini Delgado's avatar Armando Luiz Nicolini Delgado :nerd:
Browse files

/* Macros de alinhamento SIMD criadas em 'utils.h'

*/
parent cfb77668
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,10 @@ typedef double real_t;
typedef double rtime_t;
typedef char * string_t;
// SIMD alignment macros
#define ALIGN_32 __attribute__((aligned(32)))
#define ALIGN_16 __attribute__((aligned(16)))
double timestamp(void);
string_t markerName(string_t baseName, int n);
int isPot2 (int n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment