search for: libengu

Displaying 8 results from an estimated 8 matches for "libengu".

2010 Nov 23
2
"help"
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20101123/db21b78a/attachment.pl>
2010 Jan 29
2
[LLVMdev] C code generation from LLVM IR
Hello, Does anybody know whether the functionality of generating C code from LLVM IR is still available? As described in the document of getting started with VS, to compile IR to C you can use "llc -march=c hello.bc". But it no longer works. Thanks, Bengu -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Jan 29
0
[LLVMdev] C code generation from LLVM IR
Found it in 2.6 release note. It is no longer considered as release criteria and no more maintenance on this. Bengu On Fri, Jan 29, 2010 at 11:55 AM, Bengu Li <libengu at gmail.com> wrote: > Hello, > > Does anybody know whether the functionality of generating C code from LLVM > IR is still available? > As described in the document of getting started with VS, to compile IR to C > you can use "llc -march=c hello.bc". But it no longer...
2010 Nov 23
5
cross validation using e1071:SVM
Hi everyone I am trying to do cross validation (10 fold CV) by using e1071:svm method. I know that there is an option (?cross?) for cross validation but still I wanted to make a function to Generate cross-validation indices using pls: cvsegments method. ##################################################################### Code (at the end) Is working fine but sometime caret:confusionMatrix
2010 Jan 28
1
[LLVMdev] llc generated machine assembly code for NASM
Could you give me some examples of such constructs that are not possible to represent with MASM/NASM/FASM but are able to represent with gas? Thanks, Bengu On Thu, Jan 28, 2010 at 11:41 AM, Anton Korobeynikov < anton at korobeynikov.info> wrote: > Hello > > > Does anybody have an idea of roughly how much effort is required to make > > intel asm printer to be usable? If
2010 Feb 03
2
[LLVMdev] llc generated machine assembly code for NASM
Hi, Anton, For a simple example, I took the machine assembly code generated by llc and with a little manual change on the assebmly code (the way how llc generates .text segment is not accepted by MASM), it is able to be assembled and linked by MASM. And it runs. Haven't tried it on NASM yet. I am sure that you've run into many problems when efforts were carried out to implement the
2010 Jan 28
4
[LLVMdev] llc generated machine assembly code for NASM
Thanks for Anton's reply. Does anybody have an idea of roughly how much effort is required to make intel asm printer to be usable? If it is within weeks, probably I can give it a try. Thanks, Bengu On Thu, Jan 28, 2010 at 12:18 AM, Anton Korobeynikov < anton at korobeynikov.info> wrote: > Hello > > > system native assemlber and linker to generate executables. And it >
2010 Jan 28
2
[LLVMdev] llc generated machine assembly code for NASM
Hello, I am new here. This is my first post. I spent about three days on trying out LLVM by developing a front-end which is able to generate LLVM IR for a subset of C language. I have not applied any optimization pass yet. On linux, it can go all the way through with the system native assemlber and linker to generate executables. And it runs. I ran into problems on Windows since the generated