Lines Matching defs:dilation
282 // Conv Op: level check dilation/stride/pad values
288 if (!levelCheckKernel(op, k, "dilation <= MAX_KERNEL")) {
302 auto dilation = convOp.getDilation();
308 assert(dilation.size() == 2);
309 if (!levelCheckKernel(op, dilation[0] * shape[1],
311 !levelCheckKernel(op, dilation[1] * shape[2],
316 assert(dilation.size() == 3);
317 if (!levelCheckKernel(op, dilation[0] * shape[1],
319 !levelCheckKernel(op, dilation[1] * shape[2],
321 !levelCheckKernel(op, dilation[2] * shape[3],
326 assert(dilation.size() == 2);
327 if (!levelCheckKernel(op, dilation[0] * shape[0],
329 !levelCheckKernel(op, dilation[1] * shape[1],