similar to: [LLVMdev] LLVM teaching materials

Displaying 20 results from an estimated 8000 matches similar to: "[LLVMdev] LLVM teaching materials"

2011 Feb 28
0
[LLVMdev] LLVM teaching materials
On 02/28/2011 05:27 AM, Christian Plessl wrote: > Hi everyone > > I am teaching a lecture on hardware/software codesign which, though not a dedicated compiler course, covers quite a bit of compiler related contents (general introduction, intermediate code, code generation). > > I'm currently considering replacing and/or extending this compiler related lecture parts with an
2011 May 24
1
[LLVMdev] LLVM teaching materials
On 28.02.2011, at 15:44, Tobias Grosser wrote: > On 02/28/2011 05:27 AM, Christian Plessl wrote: >> Hi everyone >> >> I am teaching a lecture on hardware/software codesign which, though not a dedicated compiler course, covers quite a bit of compiler related contents (general introduction, intermediate code, code generation). >> >> I'm currently considering
2011 May 27
0
[LLVMdev] LLVM teaching materials
I guess even kaleidoscope would serve as a good tutorial -sanjiv On 24 May 2011 17:23, "Tobias Grosser" <grosser at fim.uni-passau.de> wrote: > > On 05/24/2011 05:18 AM, Christian Plessl wrote: > > > > On 28.02.2011, at 15:44, Tobias Grosser wrote: > > > >> On 02/28/2011 05:27 AM, Christian Plessl wrote: > >>> Hi everyone >
2003 Oct 11
0
Some teaching/training materials (ESS/ESS-Noweb-Sweave/SNOW)
http://www.analytics.washington.edu/~rossini/courses/cph-statcomp/ Lecture/Labs 1 and 2 are on For ESS, ESS-Noweb-Sweave. Lecture/Lab 4 is on parallel computing with R (each Lecture/Lab was just under 2 hours). Comments/corrections welcome, they were used last week here in Copenhagen, so "most" of the bugs are out. best, -tony p.s. Lecture/Lab 3 on visualization needs to be
2005 Sep 19
6
Teaching R - In front of the computer?
Dear R-Users, given you have been teaching R to students (grad level, mainly social science background, no previous programming experience, 80% know SPSS), what are your experiences concerning the style of teaching? Do you prefer to stand in front of the class like in "normal" lectures and you show them slides? Or do you you explain some concept (for example things like
2004 Oct 25
2
Revision: post on Intro to R lecture
Hi All: This follows my earlier post on webized slides on lecture presentation on introducing R. I learned that in Mozilla (Firefox) browsers, the slides did not show up. Sorry for the no show. As a reluctant windows user, I kind of carelessly clicked through Powerpoint to convert the presentation file to its html form, unwittingly leading to the mess. See if it got corrected now (I do not have
2004 Aug 26
2
introduction slides for beginners
Hi all, does anybody have slides for a 1 to 3 hour crash course into R, that I would be allowed to recycle to show a few people the light? On the R-website http://cran.r-project.org/other-docs.html I found several additional books, but no slides. It might be nice to add a page with slides, too. Thank you, -Armin
2014 Aug 04
3
[LLVMdev] Publication: Languages Used in LLVM During Compilation
Hello, for one course at our Brno University of Technology, I made a presentation about languages used in LLVM during compilation. I think also other may find it useful, so I am sending it here, so you can add it somewhere on the web if you will would like to. It is not exactly a publication, rather lecture slides. Title: Languages Used in LLVM During Compilation Date: 30th April 2014
2015 Jun 29
2
[LLVMdev] Inferring dependencies in phi instructions
On Mon, Jun 29, 2015 at 10:16 AM, Evgeny Astigeevich <Evgeny.Astigeevich at arm.com> wrote: > Hi Anirudh, > > > > I hope these lecture slides about SSA and the dominance frontier will help > you with SSA and control flow analysis: > > > > http://www.seas.harvard.edu/courses/cs252/2011sp/slides/Lec04-SSA.pdf > > > > Unfortunately a use of
2012 Oct 08
4
Need some help reproducing a graph
<http://r.789695.n4.nabble.com/file/n4645492/graph.jpg> I need to replicate this graph. It is a simple normal distribution-curve with mean 90 and sd=10. The vertical bars is the 95% confidence limit of the mean. How on earth do I add those confidence limits? Im thinking something that has to do with: c(0.025,0.975) But I really dont know :S Any help? -- View this message in
2008 Jun 12
2
[LLVMdev] Binary translation to LLVM bitcode
I'm looking for methods for generating LLVM bitcode from binaries (binary translation). I found two projects that seem to be related: vmkit and llvm-qemu a) Could someone shed some light on how the recently released vmkit works? Can vmkit be used for statically translating JVM or MSIL code to LLVM bitcode? Or is vmkit simply reusing LLVM's JIT execution engine, without ever
2008 Sep 15
3
[LLVMdev] LLVM bindings, scope of llvm-c
Hi all Last week, I performed some experiments using the python bindings to LLVM (http://code.google.com/p/llvm-py/). The goal of these experiments was to evaluate the usability of LLVM's scripting language bindings for code analysis and transformations. I found that the current version of the python bindings allows for loading, generating, JIT compiling and executing LLVM IR.
2011 Sep 20
3
Adding a data in Live OR Saving Stream on Server side.
I want to build a website where user can listen my voice. I want to use only Icecast. But on my website I want to display some data too inside a stream. What data I want to add ? basically on my website there are various images. each image having a number. While I deliver my lecture I want to send image number too. Now I can send this number using http PUSH/PULL but I do not know How it will be
2015 Jun 29
2
[LLVMdev] Inferring dependencies in phi instructions
On Jun 29, 2015 3:16 AM, "Evgeny Astigeevich" <evgeny.astigeevich at arm.com> wrote: > > Hi Anirudh, > > 'x' has a control dependency on 'y' because the value assigned to 'x' > depends on a path selected. This dependency can be converted into a data > dependency by means of a 'select' instruction because the control flow is >
2006 Feb 09
3
Rail in teaching environments
Newbie question (just joined the list) Is anyone running Ruby on Rails in a teaching environment? Regards John John Colby BA, MBCS, PGCertE Lecturer, Department of Computing, The Business School Room F316, Galton Building, University of Central England, Franchise Street, Perry Barr, Birmingham B42 2SU Tel: +44 (0) 121 331 6937, Fax +44 (0) 121 331 6281, Mobile: 07795 215 912
2004 Jul 16
2
Functions in a package not visible to a user
That's one of the purposes of the namespace. See Prof. Tierney's article in the R Newsletter, or the slides of his keynote lecture at the useR! 2004 conference. It's also explained in the `Writing R Extensions' manual. Basically you only export functions that the users should see. The manual also explains how to not document functions that aren't intended to be called by
2008 Sep 29
5
[LLVMdev] Architecture Dependency of LLVM bitcode (was Re: compile linux kernel)
On 29.09.2008, at 11:53, Jonathan S. Shapiro wrote: > Watching this thread, it occurs to me that the "V" in "LLVM" is > creating > confusion. So far as I know, LLVM is the first project to use > "virtual" > to refer to the instruction set of the intermediate form. I understand > why this labeling made sense (sort of), but it was unfortunate. The
2008 Jan 30
0
[LLVMdev] How to use profiling runtime for program profiling?
Hi Haifeng > I have a question about how to profile program with LLVM. When I tried > to compile the instrumented version of program after using "-insert- > block-profiling", I got > error complaining " undefined reference to > `llvm_start_block_profiling'. > > I found that there is a "runtime"directory in llvm source directory > but in the
2010 Jan 28
2
[LLVMdev] About setting up official git & bzr mirrors.
Due to a current need to have a git mirror for LLVM, I'm resurrecting this old thread. I'm aware that there exist already LLVM git mirrors at git://repo.or.cz/llvm.git and git://github.com/earl/llvm-mirror.git However, these repositories only mirror the current SVN trunk and do no provide any branch and tag information, which would be very convenient for creating experimental branches
2009 Sep 14
3
Teaching material for children...
Wondering if anyone is aware of resources appropriate for home schooled pre-teen/teen relatives? Before anyone suggests, a lengthy google search was unsuccessful. TIA, V. -- Vince Fulco, CFA, CAIA 612.424.5477 (universal) vfulco1 at gmail.com A posse ad esse non valet consequentia ?the possibility does not necessarily lead to materialization?