similar to: [LLVMdev] Extending llvm with data types which can be accessible only through interfaces.

Displaying 20 results from an estimated 6000 matches similar to: "[LLVMdev] Extending llvm with data types which can be accessible only through interfaces."

2012 Jun 22
0
[LLVMdev] Extending llvm with data types which can be accessible only through interfaces.
Narayan, OpenCL has similar data type called Images. They can only be accessed through function calls and not directly. Micah From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of NARAYAN HEGDE Sent: Friday, June 22, 2012 10:24 AM To: llvmdev at cs.uiuc.edu Cc: Uday Reddy Subject: [LLVMdev] Extending llvm with data types which can be accessible only through
2012 Jun 22
1
[LLVMdev] Extending llvm with data types which can be accessible only through interfaces.
On Fri, Jun 22, 2012 at 1:48 PM, Villmow, Micah <Micah.Villmow at amd.com>wrote: > Narayan,**** > > OpenCL has similar data type called Images. They can only be accessed > through function calls and not directly.**** > > ** ** > > Micah**** > > ** ** > > *From:* llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] *On > Behalf Of
2019 Sep 02
2
AVX2 codegen - question reg. FMA generation
On Mon, 2 Sep 2019 at 16:59, Roman Lebedev <lebedev.ri at gmail.com> wrote: > > It appears you need 'reassoc' on fmul/fadd: > https://godbolt.org/z/nuTzx2 Thanks very much, that was it. Either that or providing -enable-unsafe-fp-math to llc yielded FMAs. I didn't expect this since using FMAs here instead of mul/add appears to be safer (the reverse is unsafe). ~ Uday
2019 Sep 02
3
AVX2 codegen - question reg. FMA generation
Hello, On the appended reasonably simple test case that has an fmul/fadd sequence on <8 x float> vector types, I don't see the x86-64 code generator (with cpu set to haswell or later types) turning it into an AVX2 FMA instructions. Here's the snippet in the output it generates: $ llc -O3 -mcpu=skylake --------------------- .LBB0_2: # =>This Inner
2020 Jan 30
2
Writing loop transformations on the right representation is more productive
Am Mo., 27. Jan. 2020 um 22:06 Uhr schrieb Uday Kumar Reddy Bondhugula < uday at polymagelabs.com>: > Hi Michael, > > Although the approach to use a higher order in-memory abstraction like the > loop tree will make it easier than what you have today, if you used MLIR > for this representation, you already get a round trippable textual format > that is *very close* to your
2020 Feb 03
5
Writing loop transformations on the right representation is more productive
Am Do., 30. Jan. 2020 um 04:40 Uhr schrieb Uday Kumar Reddy Bondhugula <uday at polymagelabs.com>: > There are multiple ways regions in MLIR can be viewed, but the more relevant point here is you do have a loop tree structure native in the IR with MLIR. Regions in MLIR didn't evolve from modeling inlined calls - the affine.for/affine.if were originally the only two operations in MLIR
2007 Aug 21
4
Formatting Sweave in R-News
Hi, I am editing a document for submission to the R-news newsletter, and in my article my Sweave code inserts a dynamically generated PDF report that my R program generates. However, when I insert the PDF using the following Sweave code: \newpage \includegraphics[scale=1.0]{\Sexpr{print(location)}} \newpage (in tex this looks like): \newpage \includegraphics[scale=1.0]{/home/arjun/sample.pdf}
2007 May 21
1
Passing R CMD Check without data
I have a package which passes R CMD check with the --no-vignettes option. However, it does not pass the check without that, as the vignette relies on some data files that I cannot distribute. However, I would like the package to pass the check so that I can put it on CRAN, so that other people with access to the dataset can put the data into the package, and then rebuild the vignettes themselves.
2008 Oct 03
4
Action Mailer >> Hiding Receipients in the email templates
Hi, Anyone have any idea about hiding the receipients address in the email template in "TO" field. As am Example: While sending an email to multiple users, the receipients email addresses should not come in the "TO" field in the email template. Thanks in Advance. Piyush. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2004 Aug 06
3
Problem with Icecast2/Ices streaming MP3.
Hello everyone, I am running Icecast 2.0.0 with ices-3.0. I run ices on a machine which has all the mp3 files I am playing and stream these mp3 to Icecast which is running on another machine. Every now and then, say 2 hours. Ices keeps churning out errors saying updating meta data and socket errors and keeps retrying and after some time it suceeds for one file and then when playing the next file
2014 Dec 05
1
FW: samba 2.2.7a tech issue
________________________________ From: Uday Mhatre<mailto:uday_mhatre at hotmail.com> Sent: ?05-?12-?2014 12:58 To: Andrea Venturoli<mailto:ml at netfence.it> Subject: RE: [Samba] samba 2.2.7a tech issue Just wondering if these samba versions are backward compatible with fedora14 and other Linux distributions. Regards, Uday ________________________________ From: Uday
2012 Feb 21
4
removing particular row from matrix
I have some data set which has some values -999.000 & I would like to remove whole row of this kind of values. e.g a<-matrix(c(1,2,3,4,4,5,6,6,-999.99,5,9,-999.00),nrow=4) a<- [,1] [,2] [,3] [1,] 1 4 -999.99 [2,] 2 5 5.00 [3,] 3 6 9.00 [4,] 4 6 -999.00 expected answer [,1] [,2] [,3] [1,] 2 5 5.00 [2,] 3 6 9.00 I
2012 Mar 27
2
Constructing Distance matrix for hclust
Hi, I have similarity value between string pairs in a mysql database. I need to construct the distance matrix which hclust can take and cluster the strings. Most of the examples I came across show how to construct the distance matrix using dist function. How can I code to construct distance matrix using the data in mysql db. Thanks a lot for any help. [[alternative HTML version deleted]]
2012 Feb 23
4
saving all data in r object
I have 100 data files, which contains very huge data sets of location details ( e.g latitude, longitude, time, temp) Now I would like to save the all data of these 100 files in r object, so I can reload data any time. * Every file has different length of data latitude <- NULL longitude <- NULL time <- NULL temp <- NULL for ( i in 1:100) { data<-
2020 Feb 08
2
Writing loop transformations on the right representation is more productive
Am Fr., 7. Feb. 2020 um 17:03 Uhr schrieb Chris Lattner <clattner at nondot.org >: > > The discussion here is valuable for me, helping me to make my > > presentation about it at EuroLLVM as relevant as possible. My current > > idea is to take a complex loop nest, and compare optimizing it using > > red/green DAGs and traditional pass-based optimizers. > > Cool.
2012 Jul 19
3
R packages installation error in Ubuntu
Hi, Recently I have installed R version 2.14.1, after installation I am trying to install some packages and I get error message. even I tried install.packages("Rcmdr") but still I am unable to fix this problem. I would be very grateful if somebody can help me to fix this problem. install.packages("hdf5") Installing package(s) into
2012 Mar 07
4
add data from .RData file
I got two .RData file e.g data.2005.RData & data.2006.RData I would like to combine these two different data set and make single RData file. in both file there are some NULL files are also available and I would like to clear this NULL files also. $ : NULL $ : NULL $ : num [1:43285, 1:8] -21.1 -21.1 -24.9 -24.9 -24.9 ... ..- attr(*, "dimnames")=List of 2 .. ..$ : NULL ..
2012 Mar 28
4
reading files from two folders
I would like to read data from two different folder and then combine this together the code which I have tried are as follows setwd("/Groups/data_first/") file_was <- list.files(path = ".", pattern = "v2.0.2.was", all.files = FALSE, full.names = FALSE, recursive = FALSE, ignore.case = FALSE) path<-c("/Groups/data_second/") file_wasaux2
2007 Oct 16
4
Xen for IBM 970MP
Hi All, We are planning to support the XEN on IBM PowerPC 970MP based blade which is running SUSE 10 Operating System. We have couple of queries regarding support XEN: 1. Is there any readily available patch for SUSE 10(as a guest) to support paravertualization? 2. Is there any porting required for XEN source for IBM 970MP? 3. Is it support both paravertualization and Hypervisor ?, If yes,
2020 Feb 10
2
Writing loop transformations on the right representation is more productive
Thanks Chris for CCing us. I remember Michael's presentation and suggestion to consider Roslyn's design and experience. I'll be glad to discuss further in April. Michael, we can also talk later this week if you'd like. I'll send you a separate email. Loop transformations in MLIR take many different paths. Polyhedral affine-to-affine, generative/lowering in linalg, and also