summaryrefslogtreecommitdiff
path: root/c++/examples/cavity_2d.cpp
blob: a3db08285874a2d96bdcd133501cd5717d645527 (plain)
1
2
3
4
5
6
7
8
9
10
#include "../lattice.h"

#include <forstio/codec/data.h>

int main(){
	using namespace kel::lbm;
	saw::data<schema::Lattice2D<saw::schema::Float32>, saw::encode::Native> lattice{512, 512};

	return 0;
}