search for: adele

Displaying 20 results from an estimated 84 matches for "adele".

Did you mean: dele
2020 Mar 26
3
LLVM pass to optimize redundant branch conditions
Hello All I am looking for an LLVM pass that is able to detect branches whose condition is known if they are reached. To illustrate what I mean, I attached a screenshot showing a partial CFG of a function. The branch in basic block for.cond.cleanup3 tests the same condition as the branch in the entry block, and has the same target BB if the condition is false. Also, if you inspect the graph
2020 Apr 23
2
Incorrect behavior in the LLVM dependence analyzer
Hi all, I am trying to use the dependence analyzer in a pass that I am writing and I was surprised to see an incorrect behavior when I try to query DependenceInfo for dependences between instructions. Specifically, if the two instructions are loads/stores accessing an array in a loop, the depend() method would return a dependence regardless of the order of instructions specified. (i.e. if the two
2020 Nov 11
1
Accessing Function analyses in a Module pass with the new pass manager
Hello With the legacy pass manager, we could invoke a Function Pass within the runOnModule() of a Module Pass by simply passing the Function reference to the getAnalysis<>() method. Can the same be achieved using the new Pass Manager? I am writing a Module Pass which requires to access analyses for the different functions, and I need the new pass manager because I need different copies of
2012 Dec 04
3
monte carlo simulation on R
Hello, How can I make a monte carlo simulation on R? Regards Adel -- PhD candidate in Computer Science Address 3 avenue lamine, cité ezzahra, Sousse 4000 Tunisia tel: +216 97 246 706 (+33640302046 jusqu'au 15/6) fax: +216 71 391 166 [[alternative HTML version deleted]]
2018 Aug 07
4
Generating a loop from llvm bitcode
Hello I am developing a backend that generates OpenCL from llvm bitcode. I start with a revived fork of the original LLVM C-Backend and have been modifying it. One thing that the backend lacked was generating proper loop structures; instead it relied on labels and goto statements. Therefore, I am trying to find a way to identify the loop structure and print it out in the backend. So far, the main
2010 Aug 21
4
basic hist() question
Hi list I loaded the content of a file dureetasks.txt to variable a. This file contains an interger per line. when I print a vector, it displays correctly. however, when I try to print the histogram, I get this error message > a=read.table("dureetasks.txt") > hist(a) Error in hist.default(a) : 'x' must be numeric Can you help please? regards -- PhD candidate in
2002 Mar 26
1
installing gzip files
I'm trying to install an R package that arrived in a package.tar.gz file. I use: R INSTALL -l /home/adele/packagedir package.tar.gz and I get: ERROR: cannot extract package from package.tar.gz The author of the package assures me that the same command works for his version of solaris and R. He has solaris 5.7 and R 1.4.1, while I have solaris 5.8 and R 1.4.1. Does anyone know what's wrong a...
2008 Jun 30
4
Add comments on plot window
Dear R users, Is it possible to add comments in a plot window? I have 3 plots -> this plots have to be commented on same window Is possible to do the following : http://www.nabble.com/file/p18193822/plot%2526comments.JPG plot%26comments.JPG I don't know how to do it. Maybe plot.window or something like that. Any suggestions?? Thanks in advance, Adel. -- View this message in context:
2011 Sep 24
2
two ecdf in the same figure
Hello, is ot possible to draw two ecdf of vectors (say s1 and s2) on the same figire with R. plot function draws a new plot and there is no function like points or lines to draw a second ecdf on the figure. Regards -- *PhD candidate in Computer Science Address 3 avenue lamine, cité ezzahra, Sousse 4000 Tunisia tel: +216 97 246 706 fax: +216 71 391 166* [[alternative HTML version deleted]]
2009 Jan 28
0
Palm Terrace apartments launching - From R299K Cape Town
[top.jpg] [left_image.jpg] * Combination of retail and residential units making this ideal to live, work and play * Only 4km from Cape Town CBD * Delayed transfer: end of 2009 * Mix of bachelor,1 and 2 bedrooms * Large sun-deck and braai area * Enclosed sun-lounge * Small gym area * High rental demand and rental return
2000 Feb 02
0
Summary: Archetypal Analysis in R
.... With the author's permission, I ported the S code to R using two excellent sets of instructions: (1) From the FAQ - 5.5 How can I create an R package? (2) Thomas Lumley's instructions on porting S to R - http://www.biostat.washington.edu/~thomas/Rlib.html The author of this code is Adele Cutler (adele at math.usu.edu, http://www.math.usu.edu/~adele). With the author's permission, I've made this port available at: http://socrates.berkeley.edu/~lorenmc/R/ Since this is not a full-blown library and hasn't been completely tested with R, I don't think it is ready to be...
2010 Jun 05
1
variation
Hi list I am a new user of R. I ask for some "beginner" question I am searching if there is any function that computes the variation of some discrete values of a vector (mean() and sd() exists, but i have not find variation). Thanks in advance Adel -- PhD candidate in Computer Science Address 3 avenue lamine, cité ezzahra, Sousse 4000 Tunisia tel: +216 97 246 706 (+33640302046
2011 Jan 19
1
printing big real values
Hello, I have a file with very big values. I want to display the real values with classic ways (without exposant) > summary(a[,1]); Min. 1st Qu. Median Mean 3rd Qu. Max. 1.198e+09 1.199e+09 1.200e+09 1.200e+09 1.201e+09 1.202e+09 Can you help please? Regards Adel -- PhD candidate in Computer Science Address 3 avenue lamine, cité ezzahra, Sousse 4000 Tunisia tel:
2008 Jul 18
1
re ad and check table
Dear R users, I want to read a file like following : if it is a table then z <- read.table(pathname, dec=".", header=TRUE) else if it's not a table (image,doc,...) then send an error or something like that acually I have a read.table in the beginnig of my R code, and if my data is not a table I become in my R console : fail in scan. So the question is how to check the nature of
2012 Feb 11
1
multiple histograms from a dataframe
Hi list I need some help for drawing some histograms I have a dataframe , say, X Y Z T I want to draw a histogram Z-T for each value of the couple (X-Y). When I use thus syntax > library(lattice) > histogram(law[,3] ~ law[,66] | law[,1] ) it draws multiple histograms but by selecting distinct values of law[,1] The deal is to make the same thing but for a couple of columns Thanks in
2008 Jul 04
2
create a zero matrix & fill
Dear R user, I have written a function which returns max,min and variation of a power (see below) Power is a given matrix(1,n) I call the function >Variation<-VAR(p,(n-deltat)) Now the problem is when I want plot(Results[1],Results[2]). Not possible! I become the following error (in english it means: Error in as.double.default(x) :Object cannot be transformed in double) >
2008 Jul 01
2
if one of 4 conditions is not satisfied
I'm trying to do realize the following: I have 4 condtions. If all conditions are satisfied I will paste("PASS") If any of these is not satisfied I will paste("FAIL"). But I have to paste the corresponding failure. ifelse is a good solution but for a 2 conditions. Maybe switch or something like this. Does anyone have an idea how to do? Thanks in advance. Adel -- View
2016 Sep 23
3
Formación en bigdata
Buenas, ¿Alguien ha hecho algun curso sobre bigdata que merezca la pena? La verdad es quequiero adquirir competencias sobre el manejo de grandes volumenes de información, hadoop, spark, etc y no se muy bien que estudios cursar. He estado mirando, pero veo que las escuelas de negocio lo orientan a big data + business analytics y no se si pueden pasar muy por encim adel tema o estar centrados en la
2012 Jan 27
3
generate a random number with rexp ?
dear list I use runif to generate a ramdom number between min and max runif(n, min=0, max=1) however , the syntaxe of rexp does not allow that rexp(n, rate = 1) and it generate a number with the corresponding rate. The question is: how to generate a number between min and max using rexp(). Regards -- PhD candidate in Computer Science Address 3 avenue lamine, cité ezzahra, Sousse 4000
2006 Oct 31
0
Samba Wins Problem
Hi All I have installed Samba 3 under RHEL v4, with LDAP support for the authentication and as a PDC Domain, it seems everything works fine, but the only problem was the network browser list. We have a different subnet 192.168.X., 192.168.Y., 192.168.Z., etc..., Samba local browser works fine, but the remote subnet and workgroup are inaccessible, I double check the nmbd logs, there an error which