Displaying 20 results from an estimated 72 matches for "abhi".
2012 May 31
2
[LLVMdev] DFG of machine functions
...required to use inst_iterator in the *template <>
struct GraphTraits<DFG<Function*> >*) to MachineInstrIterator.h to iterate
over machine instructions in a machine function. But the build is throwing
the following error:
llvm[2]: Compiling MC_DFG.cpp for Debug+Asserts build
/home/abhi/work/llvm31/llvm/include/llvm/Support/GraphWriter.h: In member
function ‘void llvm::GraphWriter<GraphType>::writeNodes() [with GraphType =
llvm::MCDFGraph<llvm::MachineFunction*>]’:
/home/abhi/work/llvm31/llvm/include/llvm/Support/GraphWriter.h:100:
instantiated from ‘void llvm::GraphWr...
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/0...
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 vulnerabilitie...
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
...t 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 data as a histogram. I tried ggplot2 which
also hangs.
Any efficient methods to play with > 10 million numbers in a vector.
Thanks,
-Abhi
2011 May 05
2
quick question : interpolating file name in pipe command
...he
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 so that it can be interpolated.
Thanks!
-Abhi
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
...:max_size => 500.kilobytes,
:thumbnails => {:thumb => ''170x60>''},
:processor => ''Rmagick'',
:path_prefix => ''public/store_images''
Is any idea what can be an issue?
Regards
Abhi
--~--~---------~--~----~------------~-------~--~----~
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 unsubscribe from this group, send...
2009 Sep 09
4
Joining Characters in R {issue with paste}
...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 c...
2010 Jan 13
3
Operating on each row of data frame
...olumn 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))
}
apply(d,1,mean_N_SE) where d = data frame.
Can someone help me with this.
Thanks!
-Abhi
[[alternative HTML version deleted]]
2010 Aug 19
1
modifying factors in a data frame
...;2" and so on. What I am
trying is not working.
data1$sample[data1$sample =='M006'] <- "1"
Warning message:
In `[<-.factor`(`*tmp*`, data1$sample == "M006", value = "1") :
invalid factor level, NAs generated
Any slick way to do this ?
Thanks!
-Abhi
[[alternative HTML version deleted]]
2012 Feb 06
2
dividing values of each column in a dataframe
...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 MU_RB
row1 839 180 477 187
head(counts/c(2,3,4,5))
WT_CON WT_RB MU_CON MU_RB
row1 419.50000 45.0000 238.5000 46.7500
2010 Apr 06
2
Merging data frames on two conditions
...ly I need to apply two conditions.
I also tried sqldf but it is running forever. Will indexing help ?
temp <- sqldf("select a.chr,a.SNP,a.snp_qual,a.rms_qual,a.depth,b.rsid FROM
+ data_lane6_snps a,
+ data_lane6_snps_rsid b
+ WHERE
+ a.SNP = b.SNP
+ AND
+ a.chr = b.chr
+ ")
Thanks!
-Abhi
[[alternative HTML version deleted]]
2012 Jul 13
1
Running R from the command line: weird problem
...ny
comprehensive on how this problem can be fixed. I would appreciate some
help in the matter.
As a general question, are there any mature Perl modules that help one
interface R with Perl without having to resort to more cumbersome
methods such as using system calls from within?
Many thanks.
Abhi
[[alternative HTML version deleted]]
2011 Oct 24
2
Comparing two gff/gtf files : de novo transcripts v/s reference
...e start/end side is changed (upstream/downstream)
3. possible gene fusions may be because in-silico approaches were not
correct
I know some of these could be resolved with BedTools but just wondering if
Bioconductor has anything specific built in coz each time it pleasantly
surprises me.
Thanks!
-Abhi
[[alternative HTML version deleted]]
2013 Apr 06
2
manipulating R contingency tables
...xample:
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 this in an efficient manner as I have to do this
millions of times for my data.
Thanks!
-Abhi
[[alternative HTML version deleted]]
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