Files
2026-07-13 13:33:03 +08:00

19 lines
274 B
Plaintext

namespace CudaCache;
attribute "priority";
table Autotuning {
// layout, alignment, precisionType
params:[int];
// B, M, N, K
problemSize:[uint];
threadBlockSize:string;
timeCost:uint;
}
table Cache {
tunings:[Autotuning];
}
root_type Cache;