Skip to content
Snippets Groups Projects
Commit 9a52f81e authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

remove linux-specific type from cyclone source files

parent aef7168d
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ static t_int *cycle_perform(t_int *w) ...@@ -97,7 +97,7 @@ static t_int *cycle_perform(t_int *w)
t_float *addr, f1, f2, frac; t_float *addr, f1, f2, frac;
double dphase = x->x_phase + SHARED_UNITBIT32; double dphase = x->x_phase + SHARED_UNITBIT32;
double conv = x->x_conv; double conv = x->x_conv;
int32_t normhipart; int32 normhipart;
t_shared_wrappy wrappy; t_shared_wrappy wrappy;
wrappy.w_d = SHARED_UNITBIT32; wrappy.w_d = SHARED_UNITBIT32;
......
...@@ -31,7 +31,7 @@ static t_int *rand_perform(t_int *w) ...@@ -31,7 +31,7 @@ static t_int *rand_perform(t_int *w)
double ph = x->x_nextphase; double ph = x->x_nextphase;
double tfph = ph + SHARED_UNITBIT32; double tfph = ph + SHARED_UNITBIT32;
t_shared_wrappy wrappy; t_shared_wrappy wrappy;
int32_t normhipart; int32 normhipart;
float rcpsr = x->x_rcpsr; float rcpsr = x->x_rcpsr;
float target = x->x_target; float target = x->x_target;
float scaling = x->x_scaling; float scaling = x->x_scaling;
......
...@@ -39,7 +39,7 @@ static t_int *train_perform(t_int *w) ...@@ -39,7 +39,7 @@ static t_int *train_perform(t_int *w)
double ph = x->x_phase; double ph = x->x_phase;
double tfph = ph + SHARED_UNITBIT32; double tfph = ph + SHARED_UNITBIT32;
t_shared_wrappy wrappy; t_shared_wrappy wrappy;
int32_t normhipart; int32 normhipart;
int on = x->x_on; int on = x->x_on;
int edge = 0; int edge = 0;
......
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