copapy/stencils/aux_functions.c

13 lines
268 B
C
Raw Permalink Normal View History

#include <stdint.h>
#include "stencil_helper.h"
volatile extern int dummy_int;
volatile extern float dummy_float;
2025-11-13 23:37:42 +00:00
NOINLINE float auxsub_get_42(int n) {
return n * 5.0f + 21.0f;
}
2025-11-13 23:37:42 +00:00
NOINLINE float aux_get_42(float n) {
return auxsub_get_42(n * 3.0f + 42.0f);
}