loopy icon indicating copy to clipboard operation
loopy copied to clipboard

A code generator for array-based code on CPUs and GPUs

Results 154 loopy issues
Sort by recently updated
recently updated
newest added
trafficstars

Depend on an instruction only if it writes to the variables that the compute instruction reads.

https://github.com/inducer/loopy/blob/3e687c78fb8f4701b2c117a17ec75be768eef2d1/loopy/target/c/c_execution.py#L85-L87 Negative strides are totally fine: `np.arange(10)[::-1].strides` -> `(-8,)`

Hi, Does loopy support scheduling to negative loop increment? I tried the following: ```python import numpy as np import pyopencl as cl import pyopencl.array import pyopencl.clrandom import loopy as lp...

Kernel call sites assume that the name of the generated function is identical to the LoopKernel's name. However, the actual name of the non-entrypoint kernel is generated during linearization as...

Sometimes, when doing very high order things, we need big (multi-megabyte) temporaries. They are quite long-lived so I'd be happy if there were a way to control allocation of the...