Sotiris Niarchos
Sotiris Niarchos
E.g. say that a kernel has this struct as an argument, with 2 arrays: ```C typedef struct { uint x[2]; float y; uint z[3]; } my_struct; ``` I can not...
Is it possible to fill a custom struct (or an array of custom structs) with random values after I have registered its type? For a "primitive" type, I can to...
## 🚀 Feature It would be nice to have a `programl.to_pyg` function to convert one or more Program Graphs to [`torch_geometric.data.Data`](https://pytorch-geometric.readthedocs.io/en/latest/modules/data.html#torch_geometric.data.Data), i.e. to PyTorch Geometric graphs. ## Motivation This would...
This is more of a question than an issue... I am very interested on how `oclgrind` manages to distinguish the OpenCL address spaces regarding the operands of the `load` and...
Is there any functionality in `pycparserext` regarding [basic blocks](https://en.wikipedia.org/wiki/Basic_block)? I.e. parsing the input file and getting a list of basic blocks for each function, or a specific function. If not,...
I am using `pycparserext` to parse, edit and then re-generate OpenCL kernels. During the re-generation phase, with some kernels, I get the following error: ``` File "/test.py", line 131, in...
Hello Chris! I am trying to replicate your first case study regarding OpenCL heterogeneous mapping and I am trying to use CUDA. When I import tensorflow from the Python 3...