search for: keryel

Displaying 20 results from an estimated 24 matches for "keryel".

Did you mean: kernel
2016 May 04
2
Is the CppBackend still supported?
...e-facto internal representation to interface with other tools for technical/marketing/political/... reasons. So sending a patch to resurrect it in a more modern new life might be also considered instead of many people crafting some half-working ashamed kludges far from the sight... :-) -- Ronan KERYELL Xilinx Research Labs, Dublin, Ireland
2016 May 04
3
Is the CppBackend still supported?
+1 On Wed, May 4, 2016 at 3:10 AM, Filipe Cabecinhas via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi, > > On Wed, May 4, 2016 at 9:35 AM, Ronan KERYELL via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > >>>>>> On Tue, 3 May 2016 16:36:01 -0400, Rafael Espíndola via llvm-dev < > llvm-dev at lists.llvm.org> said: > > > > Rafael> Care to send a patch deleting it? :-) > > > > On...
2016 May 04
2
Is the CppBackend still supported?
...4:21 PM, David Blaikie <dblaikie at gmail.com> wrote: > >> +1 >> >> On Wed, May 4, 2016 at 3:10 AM, Filipe Cabecinhas via llvm-dev < >> llvm-dev at lists.llvm.org> wrote: >> >>> Hi, >>> >>> On Wed, May 4, 2016 at 9:35 AM, Ronan KERYELL via llvm-dev >>> <llvm-dev at lists.llvm.org> wrote: >>> >>>>>> On Tue, 3 May 2016 16:36:01 -0400, Rafael Espíndola via llvm-dev < >>> llvm-dev at lists.llvm.org> said: >>> > >>> > Rafael> Care to send a patch...
2016 May 04
2
Is the CppBackend still supported?
...>>>> +1 >>>> >>>> On Wed, May 4, 2016 at 3:10 AM, Filipe Cabecinhas via llvm-dev < >>>> llvm-dev at lists.llvm.org> wrote: >>>> >>>>> Hi, >>>>> >>>>> On Wed, May 4, 2016 at 9:35 AM, Ronan KERYELL via llvm-dev >>>>> <llvm-dev at lists.llvm.org> wrote: >>>>> >>>>>> On Tue, 3 May 2016 16:36:01 -0400, Rafael Espíndola via >>>>> llvm-dev <llvm-dev at lists.llvm.org> said: >>>>> > >>>>> &g...
2012 Oct 04
2
[LLVMdev] interesting possible compiler bug
...loc() is taken into account by registering a write effect on an abstract location which is tested later by some optimization phases to avoid too much liberal optimizations, like the one above. Anyway, this is an interesting limit case to discuss tonight at the LLVM Bay-area Social. :-) -- Ronan KERYELL |\/ Phone: +1 408 658 9453 SILKAN Wild Systems |/) 4962 El Camino Real #201 K Ronan.Keryell at silkan.com Los Altos, CA 94022 |\ skype:keryell USA | \ http://si...
2012 Oct 02
0
[LLVMdev] interesting possible compiler bug
On 1 October 2012 18:34, reed kotler <rkotler at mips.com> wrote: > This code is essentially from an LTP test ( http://ltp.sourceforge.net/). > > > #include <stdlib.h> > > int main() { > void *curr; > > do { > curr = malloc(1); > } while (curr); > > return 0; > > } > > If you compile it with no optimization, it will keep
2012 Oct 02
4
[LLVMdev] interesting possible compiler bug
This code is essentially from an LTP test ( http://ltp.sourceforge.net/ <http://ltp.sourceforge.net/> ). #include <stdlib.h> int main() { void *curr; do { curr = malloc(1); } while (curr); return 0; } If you compile it with no optimization, it will keep the malloc calls. If you compile it with -O2, it will create an infinite loop, i.e. assuming that malloc
2015 Jan 16
3
[LLVMdev] git-svn authorship (was: Howdy + GIT)
Erik> I am surprised noone has mentioned the one of the biggest Erik> advantages of Git which is proper author attribution for Erik> non-core and drive-by patch contributors. >From what I can make of the git-svn docs, that LLVM committers should be adding a "From: <email>" field to commit messages instead of "Patch by <name>". If the original author is
2001 Sep 07
6
unexpected EOF in read_timeout
Perhaps someone can shed some light on the problem I'm having using rsync 2.4.6. I'm getting the following error: receiving file list ... done htdocs/acescounseling/logs/ htdocs/adihome/logs/ . . htdocs/coupons/logs/error_log htdocs/court/logs/combined_log htdocs/cowgirl/logs/combined_log htdocs/cowgirl/logs/error_log htdocs/cowgirl/logs/ssl_log Connection to nova closed by remote host.
2016 Apr 19
4
Client-side public key causing mess
Hello, I have a client machine and a server machine. I generated a pair of private-public rsa keys using ssh-keygen. On the client-machine, I uploaded my private key onto ~/.ssh/id_rsa On the server machine, I appended the content of the public key to .ssh/authorized_keys I can successfully connect from the client to the server with that config. However, on the client-side, if I add a
2012 Oct 04
0
[LLVMdev] interesting possible compiler bug
...hat had some complex recursion that no compiler could unwind and realise that it was a noop. So that is probably the safest. I can't remember anymore the exact form of these recursive functions in the suite as it was 28 years ago that I worked with that suite. On 10/04/2012 04:21 PM, Ronan Keryell wrote: >>>>>> On Mon, 1 Oct 2012 19:40:58 -0700, Nick Lewycky <nlewycky at google.com> said: > > On 1 October 2012 18:34, reed kotler <rkotler at mips.com> wrote: > > This code is essentially from an LTP test ( > > http://ltp.sourc...
2012 Oct 05
1
[LLVMdev] interesting possible compiler bug
...recursion that no > compiler could unwind and realise that it was a noop. So that is probably > the safest. I can't remember anymore the exact form of these recursive > functions in the suite as it was 28 years ago that I worked with that suite. > > On 10/04/2012 04:21 PM, Ronan Keryell wrote: > >> On Mon, 1 Oct 2012 19:40:58 -0700, Nick Lewycky <nlewycky at google.com> >>>>>>> said: >>>>>>> >>>>>> > On 1 October 2012 18:34, reed kotler <rkotler at mips.com> wrote: >> > This...
2019 Oct 04
3
Full 'restrict' support in LLVM.
Hi all, I am happy to announce that Synopsys wants to contribute its implementation of 'C99 restrict' to the LLVM project. [1] This implementation is based on Hal Finkel's local restrict patches and on the 'RFC: Full 'restrict' support in LLVM' [2] Any help with extra testing and code review is welcome. To be generally useful, there are also some small gaps [1] that
2019 Jan 12
2
Polybench llvm's IR -fopenmp
Hi all, I'm trying to get the llvm's IR from the source code of Polybench (OMP) https://github.com/cavazos-lab/PolyBench-ACC/tree/master/OpenMP. I noticed a considerable difference between the IR generated using clang -emit-llvm -fopenmp and clang -emit-llvm: * using the -fopenmp flag I get a simplified IR in which I read a single basic block where I can highlight a llvm.memcpy
2019 Jan 02
2
llvm-link: why link '@llvm.global_ctors' into dest file even it's not used in dest file?
Hi all, Recently I do some jobs based on llvm-link tool. I wonder why link '@llvm.global_ctors' into dest file, even it's not used in dest file? And how can I remove it? Thank you all in advance! Fangqing Xilinx Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2020 Jun 24
2
Target specific named address spaces
Hi, Is there a way to implement named address spaces with clang/llvm as it is possible with gcc ? We would like to have our own named address space that would be recognized by the frontend. Thanks in advance! Regards, Sebastien
2017 Dec 02
3
Generating SPIR
I am already successfully generating SPIR-V with a forward port of Khronos’ SPIR-V LLVM. What does one need in order to generate SPIR? From what I gather it is based on a specific LLVM IR version (3.4?) with a bunch of metadata. Is it possible to generate SPIR from LLVM trunk? If so how? Thanks Nic -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 Apr 22
2
Client-side public key causing mess
On Fri, Apr 22, 2016 at 3:41 AM, Damien Miller <djm at mindrot.org> wrote: > On Tue, 19 Apr 2016, Elouan Keryell-Even wrote: > >> Hello, >> >> I have a client machine and a server machine. I generated a pair of >> private-public rsa keys using ssh-keygen. >> >> On the client-machine, I uploaded my private key onto ~/.ssh/id_rsa >> >> On the server machine, I...
2015 May 14
2
[LLVMdev] Generating C code using LLVM
Hi, Thanks for the response. On Thu, May 14, 2015 at 5:06 PM, mats petersson <mats at planetcatfish.com> wrote: > From what input? Usually Clang is the tool for "rewriting C" (making > source to source conversions), but it's not clear if that's what you are > trying to achieve, so some more information would be useful. > I have successfully generated AST
2018 Feb 05
4
[RFC] Upstreaming PACXX (Programing Accelerators with C++)
HI LLVM comunity, after 3 years of development, various talks on LLVM-HPC and EuroLLVM and other scientific conferences I want to present my PhD research topic to the lists. The main goal for my research was to develop a single-source programming model equal to CUDA or SYCL for accelerators supported by LLVM (e.g., Nvidia GPUs). PACXX uses Clang as front-end for code generation and comes with