HILA
Loading...
Searching...
No Matches
backend_cpu/lattice.h
1#ifndef _BACKEND_LATTICE_H_
2#define _BACKEND_LATTICE_H_
3
4/// Some backends need specialized lattice data
5/// in loops. These are implemented here.
6/// Loops generated by Transformer can access
7/// this through lattice.backend_lattice.
9 /// Setup will be called when the actual lattice
10 /// is set up
11 void setup(lattice_struct *lattice) {}
12};
13
14#endif
Helper class for loading the vectorized lattice.
void setup(lattice_struct *lattice)