MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / tile_params

Class tile_params

test/jit.cpp:437–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

435using af::dim4;
436
437struct tile_params {
438 dim4 in_dim;
439 dim4 tile;
440 dim4 out_dim;
441 tile_params(dim4 in, dim4 t, dim4 out)
442 : in_dim(in), tile(t), out_dim(out) {}
443};
444
445std::ostream& operator<<(std::ostream& os, const tile_params& tp) {
446 os << "in_dim: " << tp.in_dim << "; tile parameters: " << tp.tile

Callers 1

jit.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected