similar to: Compiler position at Kalray

Displaying 20 results from an estimated 500 matches similar to: "Compiler position at Kalray"

2020 Jan 03
2
Legalizing vector types
Hi all, I am working on a target that has support for v4i16 vectors, and no support for v4i8 / v8i8 / v8i16 V4i8 is promoted to v4i16 which is nice V8i16 is split to 2 x v4i16 which is nice as well Now v8i8 is scalarized, which is not so nice. Ideally I would like v8i8 to be first promoted to v8i16 then split to 2xv4i16 (or split to 2xV4i8 then promoted to 2xv4i16) Is there a way to achieve
2020 Feb 07
2
LLVM Backend Legalize Phase
Hello Sebastien, Thank you very much for the clarification. This would greatly help us in our development. I have noticed that setOperationAction(Expand) does not always work, for these cases, does it automatically mean that setOperationAction(Custom) should be used or not necessarily? Currently, we perform a pseudo instruction instead of setting it to custom. For example in the case of a
2009 Mar 30
2
[LLVMdev] MSIL codegen
Hello, I work in Kalray (Montbonnot, France) and I'm PhD student at Universite Joseph Fourier in Grenoble. We want to use LLVM framework for MSIL code generation, which is part of my thesis. Currently I'm still reading LLVM's documentation and I've started completing the MSIL backend for running on Mono. Things that need to be fixed include pointers initialization, call to
2009 Mar 30
0
[LLVMdev] MSIL codegen
Hi Artur, Artur Pietrek wrote: > Hello, > > I work in Kalray (Montbonnot, France) and I'm PhD student at Universite > Joseph Fourier in Grenoble. > We want to use LLVM framework for MSIL code generation, which is part of > my thesis. > Currently I'm still reading LLVM's documentation and I've started > completing the MSIL backend for running on Mono.
2015 Apr 16
2
[LLVMdev] CPU information in the LLVMTargetMachine constructor
Hi everyone, I'm working in a company to port LLVM on their own processors. I'm try to support several set of instructions and several architectures. I'm using the "--target" options to choose my set of instructions, and I would like to use the "-mcpu" to choose the architecture of which I want to compile the code. Does it seem right? But at the moment I cannot
2000 Nov 15
4
Everyone happy?
There hasn't been any mailing list activity for almost a week. Is it that we are all happy and just waiting for meta-data journaling? -- Keith Barrett Red Hat HA Team
2012 Jul 19
2
[LLVMdev] how to stop a llvm thread
Hi, how can I safely stop a llvm thread, so that the thread can clean up. Using the WINAPI TerminateThread() is therefore not an alternative. I work with vs2010. Thanks Duc -- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents
2015 Apr 02
3
[LLVMdev] Cross Compiling LLVM's test-suite
Hi all, I'm working in a company to port LLVM on their own processor. I'm trying to run the test-suite, but it seems that it is usually run directly on the processor which is tested. In my case, I cannot run it on the processor, but I have a simulator on which I would like to run the test-suite. Also, it seems to me that the test-suite start by compiling some tools that have to be run
2000 Oct 30
7
Source RPM please
Hi, I''m a long ext3 user (rpmfind.net). I propagated ext3 on some of our server box (W3C webservers are ext3 based too now). I might be tempted of testing out your kernel RPMs but unavailability or the source RPM and the SMP version are definite showstoppers. Please provide them. In the meantime I will stick to my own set of kernel ext3 RPMs at ftp://rpmfind.net/pub/veillard/ext3/
2002 Apr 04
1
Filesystem security stuff
Dear all, I am planning to add some cryptographic properties (file encryption and digital signature on file I/O) to Linux filesystem. In detail, I want that user can do file I/O with encrypted files like he used to do with usual file except some minor changes (e.g. supply key for decrypting file). For digital signature, all read and write acts on file of any user must be signed and recorded so
2012 Jul 19
0
[LLVMdev] how to stop a llvm thread
Hi Duc, > how can I safely stop a llvm thread, so that the thread can clean up. Using the > WINAPI TerminateThread() is therefore not an alternative. I work with vs2010. LLVM doesn't have any threads. Ciao, Duncan.
2012 Aug 16
1
[LLVMdev] Question on C++ code completion - function parameter list
Hello, Using c-index-test.exe I'm learning clang code completion for C++. I have an issue to get the current parameter list of a C++ function. While it works for a C function, I get nothing which can be evaluated in case of C++ function. I use the following command line: "c-index-test -code-completion-at=x.cpp:9:10 -x c++ -fsyntax-only -x.cpp" Where: - "9:10" is
2019 Nov 28
2
Question on pattern matching extractelt
Hi, I have an issue with pattern matching. I have the following SelectionDAG: t13: i32 = extract_vector_elt t2, Constant:i64<1> That I am trying to match with the following pattern: def : Pat<(extractelt (v4i16 SingleReg:$v), 1), (SRADd1 SingleReg :$v, (i64 16))>; But for some reason the pattern does not match. It seems to be due to the fact extract_vector_elt's result
2002 Feb 06
3
Help plot
Hello, I would like plot a vector and want to specify the Xticks which will be displayed. Is it possible ? For example, suppose that x is a vector of length 3. I just want the Xticks (and the corresponding labels) for 1 2 and 3 to be displayed ( and not 1, 1.5, 2,2.5, ....) . Thanks -- -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- Olivier MARTIN PhD student
2001 Nov 13
2
plot and its options
Hi all, I have some some difficulties to use plot and its options. This is what i would like to do. I want to put three plot in a same window so i use par(mfrow=c(1,3)) and i obtain three columns for my three graphics. But, i would like that the two first take 90% of the window and the last 10%. Could anyone give me a soultion?? Best regards, Olivier --
2016 Jun 07
3
PACT-2016 ACM Student Research Competition (SRC)
######################################################### PACT-2016: Call for Abstracts in ACM Student Research Competition (SRC) http://pact2016.eew.technion.ac.il/acm-src ######################################################### IMPORTANT DATES Abstract submission: 11:59pm US EDT Friday, June 17, 2016 Acceptance notification: 11:59pm US EDT Friday, July 15, 2016 Poster
2001 Mar 15
3
outer
Dear r-plus users, i would like to use outer in the following case outer(x,y,FUN="fun") i suppose that my function fun is of the following form: fun<-function(x,y) { if(y>x) return(x+y) if(y<=x) return(0) } My problem is that the command outer(x,y,FUN="fun") return me a null matrix instead of an upper triangular matrix. Is somebody have a solution ? Thanks for your
2002 Feb 26
3
a trick ??
Dear R users, Suppose i have an A square matrix rxr. I want to obtain a block matrix B (pxr,pxr) where the p diagonal blocks are A and the others values are 0. I would like to do something like : diag(A,ncol=pr, nrow=pr) How can i do it ?? Thanks in advance, Olivier. -- -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- Olivier MARTIN PhD student phone: (33) 04
2016 May 24
1
BitcodeReader non explicit error
Hi, I'm working on OpenCL and I'm using clang as compiler (based on clang 3.7.0). I have a issue, I'm generating a bitcode file (that I can print before before the generation). But when I'm trying to read it again with clang, I have this issue: "error: Invalid record" How can I managed to know where it comes from? Thank you, Romaric Here is what is print before the
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