similar to: 2nd Sydney LLVM Developers/Users Meetup

Displaying 20 results from an estimated 1000 matches similar to: "2nd Sydney LLVM Developers/Users Meetup"

2016 Dec 01
0
2nd Sydney LLVM Developers/Users Meetup
Dear llvm-dev, After the first successful LLVM developers/users meeting in Google Australia, we (together with Jingling and Dean) will hold our second Sydney LLVM meeting in UNSW, Australia. Here are the details: Date Monday 5th of December 2016 Time 17:30 - 20:00 Location CSE Seminar Room (K17_113) (UNSW Map <http://www.cse.unsw.edu.au/about-us/contact-us/unsw-map/>) We hope to
2017 Mar 10
2
flow-sensitive alias analysis
Hi, I am looking for some flow-sensitive (context-insensitive) alias analysis algorithm implemented in LLVM. (I use LLVM 3.9, hope to switch to 4.0 soon.) As far as I know, none of the built-in analysis (basicAA, globals-modref, andersAA, etc.) is intended to be flow-sensitive. So I searched and came across these two 1. https://github.com/unsw-corg/SVF by Yulei Sui (for LLVM 3.8) 2.
2017 Mar 11
3
flow-sensitive alias analysis
Perhaps by "value" you mean points-to set? Either way, flow-sensitivity can only give you more precise -- but still not necessarily exact -- answers. Yours, Andrey === Compiler Architect NXP On Fri, Mar 10, 2017 at 6:39 PM, Flamedoge via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > For a given argument of a call instruction in the cfg: Where does the > value of
2018 May 11
0
LLVM Users and Developers Meetup in Sydney, May 31, 2018
Hi llvm-dev! TL;DR: https://www.meetup.com/LLVM-Developers-Users-Meetup/events/250682391/ If you're in Sydney, Australia around that time, please join us in kicking off a series of meetups to bring more enthusiasts up to speed with the LLVM project -- from the toolchain, to the APIs and eventually some of the infrastructure internals. The goal is to grow the community in Sydney, Australia.
2018 May 02
0
LLVM Developers/Users Meetup and Event Planning in Sydney (Update)
Hi llvm-dev, I've been hosting and organising the LLVM Developers/Users meetup in Sydney for the past few months now, and recently (May 2nd, 2018) we met up to plan the next few meetups and start a discussion about a larger event sometime around October 2018. Here's some high level details (and some feedback that might be helpful for other Meetup organisers): - There's a lot of
2006 Jun 27
0
Sydney ROR Meetup - Wednesday 28th June 2006
Hi All, Sorry for the late notice. We have a ROR meetup organised for this Wednesday 28/06/06 from 7pm. I''ll be giving a short talk on using Topfunky''s ActiveRecord fixtures to remotely load production data via Capistrano, and the rest of the evening is currently open - if you have something you''d like to discuss please email Jason Crane (jason [at] codespike.com).
2018 May 31
0
Sydney Meetup Update (May 31, 2018)
Hi llvm-dev, Just sending a quick note that our most recent Meetup in Sydney went pretty well! We did: - Pizza and Chicken for dinner! - “From 0 to LLVM in 30 minutes” live demo of getting a cloud VM instance, setting it up to build the LLVM toolchain from the Monorepo [0] - Do a cursory overview of the tools in the llvm, clang, and clang-tools-extra projects. Feedback we got: - Attendees
2004 Feb 24
0
[LLVMdev] LLVM
Jingling, I faced the same issue in using LLVM for an introductory compiler course this semester. The way I am (optimistically) addressing it is that I have given the students a tarball of LLVM containing most of LLVM but very few optimizations. In particular, we've only given them a few essential transformations that the front-end or lli need, and any transformations used by those
2010 Aug 19
0
[LLVMdev] Creating a tablegen backend
Durward, Why not use LLVM-IR as your 'generic assembly'? Micah > -----Original Message----- > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of Durward McDonell > Sent: Thursday, August 19, 2010 2:02 PM > To: llvmdev at cs.uiuc.edu > Subject: [LLVMdev] Creating a tablegen backend > > Hello. > > I would like to
2010 Aug 19
2
[LLVMdev] Creating a tablegen backend
Hello. I would like to create a new backend for tablegen that produces code in an generic assembly language (not for a real processor). The documentation page for this says "ToDo", but I think what I want to do is something similar to CodeGenDAGPatterns::ParseInstructions() in CodeGenDAGPatterns.cpp. Is this even vaguely correct? Any pointers would be appreciated. I'm
2004 Feb 23
2
[LLVMdev] LLVM
Hi Chris, I understand that LLVM is now available in the public domain. I assume many more optimisations have been added to the system. I need to decide which compiler system I will use for my advanced compiler course this year. Many students enjoyed working with your llvm last year. Thanks for the input. ---Jingling On Mon, Feb 23, 2004 at 09:20:01PM -0600, Chris Lattner wrote: > On Mon,
2010 Aug 20
1
[LLVMdev] Creating a tablegen backend
>  Why not use LLVM-IR as your 'generic assembly'? I should have been more specific about my goals.  I want to read a (x86) binary, and output code in this other language.  I do not have access to the source.  The target language might be negotiable, but for the moment is fixed at what it is.  My big hope is that I can leverage the semantics that are stored in the X86*.td files,
2004 Feb 23
3
[LLVMdev] LLVM
Hi Chris, Thanks for the quick input. The harder the LLVM is, the harder it is for me to teach the course:-) Too many optimisations have been added, meaning I have to design many new projects. --- Jingling On Mon, Feb 23, 2004 at 09:41:13PM -0600, Chris Lattner wrote: > On Tue, 24 Feb 2004, Jingling Xue wrote: > > > I understand that LLVM is now available in the public domain. >
2003 May 13
1
audit.so ?
Hi all Is anyone using the audit.so module ? I've compiled it and added the appropriate line to smb.conf but I seem to be having a few issues... Here is an snip from syslog... May 13 18:12:44 netvault.crcert.unsw.edu.au smbd_audit[13474]: opendir ./ May 13 18:12:44 netvault.crcert.unsw.edu.au smbd_audit[13474]: opendir . May 13 18:12:50 netvault.crcert.unsw.edu.au smbd_audit[13474]: opendir .
2010 Aug 23
0
[LLVMdev] Tablegen backend HOWTO?
Can anyone offer me any advice on writing a new backend for tablegen? I think I want to look at CodeGenDAGPatterns.cpp, but I'm not that familiar with the code yet. I want to translate X86 (or other) binary into an in-house intermediate language. If this is easy to do with LLVM-IR, that would be great, too, though for now I ultimately need to target this other language. I would greatly
2010 Jan 05
0
London Open Source Search meetup - Tue 12 January / Meetup.com
Hi all, We are organising another open source search social evening (OSSSE?) in London on Tuesday the 12th of January. The plan is to get together and chat about search technology, from Lucene to Solr, Hadoop, Mahout, Xapian, Ferret and the like - bringing together people from across the field to discuss ideas and ask questions over a quiet drink. We've also created a group on Meetup.com
2005 Sep 26
2
questions about boxplots
Hi, there. I have two questions about using R to create boxplots. 1. The function boxplot() plots the outliers. How can I label the exact values arount these outlier points? Does R have an option allow me to do that? 2. How can I put two boxplots in one x-y axis? Thanks. Yulei $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Yulei He 276 Grove St. Apt 3 Newton, MA 02466 617-796-7834(H)
2003 Oct 27
4
how to set missing values in R
Hi, there. Can I ask how to set up missing values in R? Suppose I want to assign the missing value to the elements in vector which is greater than zero like this: x<-c(1,3,-1,0,4); after the missing value assignment, x becomes (NA,NA,-1,0,NA). Thanks! Yulei $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Yulei He 1586 Murfin Ave. Apt 37 Ann Arbor, MI 48105-3135 yuleih at umich.edu
2005 Jan 13
2
multivariate diagnostics
Hi, there. I have two questions about the diagnostics in multivarite statistics. 1. Is there any diagnostics tool to check if a multivariate sample is from multivariate normal distribution? If there is one, is there any function doing it in R? 2. Is there any function of testing if two multivariate distribution are same, i.e. the multivariate extension of Kolomogrov-Smirnov test? Thanks for
2004 Oct 30
2
(no subject)
Hi, there. Does anybody know how to plot a smooth density plot for some data simulated from certain distribution? Thanks. Yulei $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Yulei He 1586 Murfin Ave. Apt 37 Ann Arbor, MI 48105-3135 yuleih at umich.edu 734-647-0305(H) 734-763-0421(O) 734-763-0427(O) 734-764-8263(fax) $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$