search for: uestc

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

Did you mean: uesc
2011 Jun 19
1
hello about proxy configuration
...roxy=http://211.83.105.140:808/" error:: '\i' is an unrecognized escape in character string starting "R_HOME\bin\i" what is wrong with my command? I just want to know is there any other way such as mannually edit a configuration file to set the proxy? kind regards edwin_uestc Center of E-Health technology and Engineering in UESTC [[alternative HTML version deleted]]
2014 Sep 14
2
[LLVMdev] How to translate library functions into LLVM IR bitcode?
Hello, I run into a situation where I need to provide the library functions, such as sqrt() from <math.h> and rand() from <stdlib.h>, in the format of LLVM IR bitcode files. Then I can try to link the bitcode of my program against these library bitcode files to formulate a holistic bitcode file. However, these library functions are only available in object format. And the source
2014 Sep 15
2
[LLVMdev] How to translate library functions into LLVM IR bitcode?
...gest you > wrapped the original function in your own project and call the wrapped one > instead. And at last you may dynamically load the original library and link > to it at runtime (using dlopen). > > Regards, > Yabin > > 2014-09-14 11:49 GMT+08:00 Liwei Yang <yangliwei.uestc at gmail.com>: > >> Hello, >> >> I run into a situation where I need to provide the library functions, >> such as sqrt() from <math.h> and rand() from <stdlib.h>, in the format of >> LLVM IR bitcode files. Then I can try to link the bitcode of my prog...
2012 May 19
0
Call for Participation: ACM HPDC 2012 -- Early registration deadline May 25th
..., John Lange (University of Pittsburgh) 21. VNET/P: Bridging the Cloud and High Performance Computing Through Fast Overlay Networking, Lei Xia (Northwestern University), Zheng Cui (University of New Mexico), John Lange (University of Pittsburgh), Yuan Tang (UESTC, China), Peter Dinda (Northwestern University), Patrick Bridges (University of New Mexico) 22. Massively-Parallel Stream Processing under QoS Constraints with Nephele, Bj?rn Lohrmann, Daniel Warneke, Odej Kao (Technische Universit?t Berlin) 23. A...
2012 May 19
0
Call for Participation: ACM HPDC 2012 -- Early registration deadline May 25th
..., John Lange (University of Pittsburgh) 21. VNET/P: Bridging the Cloud and High Performance Computing Through Fast Overlay Networking, Lei Xia (Northwestern University), Zheng Cui (University of New Mexico), John Lange (University of Pittsburgh), Yuan Tang (UESTC, China), Peter Dinda (Northwestern University), Patrick Bridges (University of New Mexico) 22. Massively-Parallel Stream Processing under QoS Constraints with Nephele, Bj?rn Lohrmann, Daniel Warneke, Odej Kao (Technische Universit?t Berlin) 23. A...
2014 Sep 15
2
[LLVMdev] How to translate library functions into LLVM IR bitcode?
Good tips. Although I have used llvm-link to merge .bc files together, I guess -flto could optimize the resultant .bc file further. As for the assembly, yes it is an issue. Anyway, I'll try to address those sources which are available for being translated into .bc first. Thanks for your advice, Tim. On Mon, Sep 15, 2014 at 2:55 PM, Tim Northover <t.p.northover at gmail.com> wrote:
2014 Sep 20
2
[LLVMdev] How to translate library functions into LLVM IR bitcode?
Hi Johannes, By following your directions, I can use your script as is to produce the .bc file now. Here's my command line for compiling s_sin.c into s_sin.bc file and the output: command line: ~/Downloads/newlib-2.1.0/newlib/libm/mathfp ยป python ~/llvm_link.py s_sin.c -I../common/ -I../../libc/include/ -o s_sin.bc output: Initiate CLANG (/path-to-clang): Options: 's_sin.c
2014 Sep 20
2
[LLVMdev] How to translate library functions into LLVM IR bitcode?
Hi Johannes, Actually, I'm working in the same scenario, i.e. configure + make of a benchmark/program/library like you said. I've got your point of using this script as a replacement to generate .bc files instead of a executable. That's truly helpful and has already answered my original question. Now I'm actually moving a step further. Take the same example in your reply, say, if