search for: abhis

Displaying 20 results from an estimated 72 matches for "abhis".

Did you mean: abhi
2012 May 31
2
[LLVMdev] DFG of machine functions
...eFunction* ViewGraph(MCDFGraph<MachineFunction*>(&F), "Function:" + (F.getFunction())->getName()); WriteGraph(File, (MCDFGraph<MachineFunction*>)&F); The MachineInstrIterator.h is quite lengthy, please let me know if I need to post it. -- Regards, Abhishek -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120530/88babf4b/attachment.html>
2012 Jun 02
0
[LLVMdev] DFG of machine functions
...3 types - NodeType &Node, NodeType *const *Node, NodeType *Node, where NodeType corresponds to llvm::Value) and the llvm::MachineInstr type passed through the mc_inst_iterator template. But I am not sure how to fix it. Can someone provide some debug pointers? On Wed, May 30, 2012 at 8:21 PM, AbhishekR <abhishekr1982 at gmail.com> wrote: > Hi, > I am trying to generate the DFG of machine functions. > > Initially, I added a pass to generate the DFG of LLVM IR functions. This > was based on the mail thread - > http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/02...
2016 Mar 08
2
Need Help to Fix CVE-2008-1483, CVE-2008-5161, CVE-2015-5600 and CVE-2015-6565
Hi Gert, Thanks for your reply. But we can't upgrade to 7.2 version also we don't have plan to upgrade in near future. Can I fix these vulnerabilities in the current version? Regards Abhishek On Tue, Mar 8, 2016 at 6:42 PM, Gert Doering <gert at greenie.muc.de> wrote: > Hi, > > On Tue, Mar 08, 2016 at 06:14:01PM +0530, abhi dhiman wrote: > > Actually I am working with the OpenSSH version 6.2p which is vulnerable > to > > above mentioned vulnerabilities...
2009 Sep 07
0
[LLVMdev] Graphviz and LLVM-TV
Edwin, thanks, it starts making sense inline comments... Török Edwin wrote: > On 2009-09-06 19:57, Ioannis Nousias wrote: > >> Edwin, >> >> thank you for your effort, but I'm not sure I understand. >> Are you describing a graph traversal problem? Is the data model stored >> in a predecessor/successor fashion, which requires you to 'walk' the
2016 Mar 08
4
Need Help to Fix CVE-2008-1483, CVE-2008-5161, CVE-2015-5600 and CVE-2015-6565
Hi All, Actually I am working with the OpenSSH version 6.2p which is vulnerable to above mentioned vulnerabilities. So am looking for some help how I can fix these vulnerabilities in my version. I need to fix it in the OpenSSH code. Regards Abhishek
2007 Oct 25
8
report generation in rails
Hi is there any way of generating reports other than xls and pdf. I am using my sql . -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To
2010 Feb 25
5
Plotting 15 million points
Hi All I have a vector of about 15 million numbers which I would like to plot. The goal is the see the distribution. I tired the usual steps. 1. Histogram : never gets complete my window freezes w/out log base 10 2. Density : I first calculated the kernel density and then plotted it which worked. It would be nice to superimpose histogram with density but as of now I am not able to get this
2011 May 05
2
quick question : interpolating file name in pipe command
Hi Guys I am trying to read a bunch of files in the loop but pipe function which I use to cut few columns is somehow unable to interpolate the file variable. eg: > file="check.txt" > data <- read.table(pipe("cut -f 2,3 file"), sep="\t", col.names=c('pos','cov') ) cut: file: No such file or directory how can I pass variable file to pipe
2009 Sep 06
3
[LLVMdev] Graphviz and LLVM-TV
On 2009-09-06 19:57, Ioannis Nousias wrote: > Edwin, > > thank you for your effort, but I'm not sure I understand. > Are you describing a graph traversal problem? Is the data model stored > in a predecessor/successor fashion, which requires you to 'walk' the > graph in order to visit all nodes? (and what happens when you have > disjointed DFGs?). Sorry for the
2009 Apr 21
3
attachment_fu giving problem on production
Hello friends, I have configured attachment_f. It''s working fine on Local(development) system but giving problem on production. Basically on production the attachment_fu is not able to generate thumbnail image it saving the original size image. Below is the configuration. has_attachment :content_type => :image, :storage => :file_system, :max_size
2009 Sep 09
4
Joining Characters in R {issue with paste}
Hi Guys I am want to join to strings in R. I am using paste but not getting desirable result. For the sake of clarity, a quick example: > a="Bio" > b="iology" > paste(a,b) [1] "Bio iology" *There is a SPACE in the word biology which is what I dont want * Thanks, -Abhi [[alternative HTML version deleted]]
2020 Mar 15
2
MLIR project, GSoC 2020.
Hi there, I am Abhimanyu Rawat, 1st-year graduate student and researcher from Paris, I hail from a pure computer science background on both Bachelors's and Masters's level. I find MLIR projects quite interesting. I have experience writing C code for EMC^2 as a protocols engineer for 2 years, I use python for convenience tasks. From a programming language perspective(thanks to Dan
2010 Jan 13
3
Operating on each row of data frame
Hi All I have a data frame in which there are 4 columns . Column 1 : name Column 2-4 : values I would like to calculate mean/Standard error of values in column 2-4 and store them in column 5,6 respectively. I have done the following but doesn't seem to work mean_N_SE <-function(x) { name <- x[1] vals <- c(x[2:4]) temp_mean <- mean(vals) SE <- sqrt(var(x)/length(x)) }
2010 Aug 19
1
modifying factors in a data frame
Hi All I have a data frame in which on the columns is a factor with following levels Levels: M006 M0114 M0379 M0432 M0823 M1012 M1096 M1107 SW393 SW708 I want to change all the M006 to "1", M0114 to "2" and so on. What I am trying is not working. data1$sample[data1$sample =='M006'] <- "1" Warning message: In `[<-.factor`(`*tmp*`, data1$sample ==
2012 Feb 06
2
dividing values of each column in a dataframe
Hey Guys I want to divide(numerically) all the columns of a data frame by different numbers. Here is what I am doing but getting a weird error. The values in each column are not getting divided by the corresponding value in the denominator vector instead by the alternative values. I am sure I am messing up something. Appreciate your help -Abhi head(counts) WT_CON WT_RB MU_CON
2010 Apr 06
2
Merging data frames on two conditions
Hi Guys I have two data frames which I would like to merge on two conditions. I am doing the following (abstract form) new.data.frame <- merge(df1,df2, by=c("Col1","Col2")) It is giving me a null result. Basically I need to apply two conditions. I also tried sqldf but it is running forever. Will indexing help ? temp <- sqldf("select
2012 Jul 13
1
Running R from the command line: weird problem
Hi, I'm trying to run an R script from the command line and I do it in the following way: R CMD BATCH -q <something.R> <output file>* *I write the R script from inside a Perl program (on UNIX of course!) and execute the shell command using the function "system".**What intrigues me is the strange error that I see in the output file: Error: embedded nul in string:
2011 Oct 24
2
Comparing two gff/gtf files : de novo transcripts v/s reference
Hi All I am wondering if people based on their experience could share what methods one could use to compare two gff/gtf files. The reason why I want to do so is that we have constructed a RNA-Seq based transcriptome and would like to compare it with reference transcriptome we had from in-silico approaches. Ideally we are looking to find out 1. new genes we see 2. transcripts where the
2013 Apr 06
2
manipulating R contingency tables
Hi Guys I am back with another thing that's puzzling me. I am creating contingency tables but then I want to filter out certain columns and also find if any entry in the table is 0. Example: gts labels A1 B2 G3 1 21 127 120 2 23 112 0 Here I want to remove B2 column from this table and also if any entry is 0 in this case G3 second row. Missing out on how to do
2016 Dec 20
2
Need Help to Fix CVE-2016-6210
Hi All, Actually I am working with the OpenSSH version 6.2p which is vulnerable to above mentioned vulnerabilities (CVE-2016-6210). So am looking for some help how I can fix these vulnerabilities in my version. I need to fix it in the OpenSSH code. Regards Abhishek