search for: offset0

Displaying 3 results from an estimated 3 matches for "offset0".

Did you mean: offset
2011 Apr 11
1
[LLVMdev] linearizing aggregates
Hi I have asked the clang mailing list if it can be done in clang. However, i would like to also check if it can be done as a BC level transformation. I would like to address aggregates (structures, arrays) in a linear fashion and in terms of the simplest target type that is embedded in these data structures, So a 2 dimensional array becomes a single dimension array. A structure with a
2012 Sep 06
8
[LLVMdev] PROPOSAL: IR representation of detailed struct assignment information (new version)
Hello, Persuant to feedback, http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-August/052927.html here is a new proposal for detailed struct assignment information. Here's the example showing the basic problem: struct bar { char x; float y; double z; }; void copy_bar(struct bar *a, struct bar *b) { *a = *b; } The solution I now propose here is to have front-ends describe the copy using
2019 Apr 04
1
Proof of concept for GPU forwarding for Linux guest on Linux host.
Hi, This is a proof of concept of GPU forwarding for Linux guest on Linux host. I'd like to get comments and suggestions from community before I put more time on it. To summarize what it is: 1. It's a solution to bring GPU acceleration for Linux vm guest on Linux host. It could works with different GPU although the current proof of concept only works with Intel GPU. 2. The basic idea