Skip to content
Snippets Groups Projects
Commit 2cca2278 authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Pipeline intrinsics with root arguments allocated on stack

parent ec7c07a3
No related branches found
No related tags found
No related merge requests found
#include <stdlib.h>
#include "visc.h"
struct Root {
int *input;
int *output;
};
void PipeRoot(int *In, int *Out) {
__visc__hint (CPU_TARGET);
__visc__attributes(1, In, 1, Out);
__visc__return(1, Out);
}
int main(void) {
int In, Out;
// struct Root RootArgs;
// RootArgs.input = (int *)&In;
// RootArgs.output = (int *)&Out;
struct Root* RootArgs = (struct Root *) malloc(sizeof(struct Root));
RootArgs->input = (int *)&In;
RootArgs->output = (int *)&Out;
__visc__init();
void* PipeDFG = __visc__launch(0, PipeRoot, (void *) RootArgs);
__visc__wait(PipeDFG);
__visc__cleanup();
return 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