19 lines
274 B
Plaintext
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;
|