search for: sinha

Displaying 20 results from an estimated 107 matches for "sinha".

Did you mean: minha
2018 Jun 26
2
How to force an unused function declaration in clang
It does, when the function has a body. When it doesn't, it ignores <https://godbolt.org/g/2BCvht>. The body might be provided later on in the toolchain via linking a library. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University On Tue, Jun 26, 2018 at 10:25 AM Hans Wennborg <hans at chromium.org> wrote: > It works for me: > > https://godbolt.org/g/3QzqAH > > Can you share an example? > > On Tue, Jun 26, 2018 at 5:21 PM, Soham Sinha...
2018 Jun 26
2
How to force an unused function declaration in clang
For the same reason GCC allowed the attribute. Even if I want to use/inline a function later on in the pipeline. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University On Tue, Jun 26, 2018 at 8:30 AM mayuyu.io <admin at mayuyu.io> wrote: > Out of curiosity, how does an unused declaration affect the emitted object > file > > Zhang > > > 在 2018年6月26日,08:48,Soham Sinha via ll...
2006 Nov 26
1
problem loading package Hmisc
...2 minor 4.0 year 2006 month 10 day 03 svn rev 39566 language R version.string R version 2.4.0 (2006-10-03) Any help is appreciated. Unfortunately the RSiteSearch is not working now, so the question may not be well researched. Thanks Ritwik Sinha Graduate Student Epidemiology and Biostatistics Case Western Reserve University ritwik.sinha at gmail.com | +12163682366 | http://darwin.cwru.edu/~rsinha
2018 Nov 05
2
Hello World
Hello Everyone! I'm Ameya Sinha, a student, and I wanted to contribute to the libvirt organization. I have read through the contributing guidelines ( https://libvirt.org/contribute.html) and contributor guidelines ( https://libvirt.org/hacking.html). Can someone suggest how should I proceed from here? Thank You, Ameya Sinha
2006 Jun 14
3
A question about stepwise procedures: step function
Dear all, I tried to use "step" function to do model selection, but I got an error massage. What I don't understand is that data as data.frame worked well for my other programs, how come I cannot make it run this time. Could you please tell me how I can fix it? ***************************************************************************************************
2018 Jun 26
2
How to force an unused function declaration in clang
...in EmitGlobal function to detect if the function has "used" attribute and then if it has then use "GetOrCreateLLVMFunction" this to create the function declaration. However, this hack fails in some other cases. Therefore I am looking for a proper way to do this. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180625/b98923f6/attachment.html>
2008 Dec 06
1
Kaplan-Meier function from survfit
...obvious here. How do I get the Kaplan-Meier estimate function that is created by survfit and plotted by the code. fit <- survfit(Surv(time, status) , data=aml) plot(fit) That is, I need a function that will give me the survival estimate at a given time: \hat{S}(t). Thanks in advance. Ritwik Sinha ritwik.sinha at gmail.com | +12033042111 | http://ritwik.sinha.googlepages.com/
2018 Jun 25
2
How to include a opt pass in clang driver
...der &, llvm::legacy::PassManagerBase &PM) { PM.add(new MyPass()); } static RegisterStandardPasses RegisterMyPass(PassManagerBuilder::EP_OptimizerLast, registerMyPass); It still couldn't find my pass. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University On Mon, Jun 25, 2018 at 3:58 PM Friedman, Eli <efriedma at codeaurora.org> wrote: > On 6/25/2018 1:38 PM, Soham Sinha via llvm-dev wrote: > > Hello, > > > > I have written a pass for the IR and I can run it...
2016 Mar 01
4
GSOC 2016 Aspirant for Kepler Accelerated Video Encoding;
...ongratulations to the X.org team for selection into Google Summer of Code 2016. I would like to participate to Google Summer of Code 2016 by contributing to Kepler Accelerated Video Encoding for Nouveau. I request you to kindly guide me as to how to get started with this project. Regards, Saket Sinha
2018 Mar 24
4
Re: Issue with libguestfs-test-tool on a guest hosted on VMWare ESXi
Yes it works if I use force_tcg env variable On Sat, 24 Mar 2018 at 4:37 AM, Richard W.M. Jones <rjones@redhat.com> wrote: > > On Fri, Mar 23, 2018 at 05:35:38PM +0000, Tanmoy Sinha wrote: > > Thanks. Reading the defect and the associated thread in > > https://bugs.launchpad.net/qemu/+bug/1661386, I enabled performance > > counters in VMWare guest settings. Now the kvm assertion `ret == > > cpu->kvm_msr_buf->nmsrs' is gone. But the qemu/kvm h...
2018 May 15
3
How to inline function from other file in IR
...ction calls to be *inlined*. However, I get compilation error because *foo *is not found (a.ll doesn't have foo) If I remove the inline attribute of foo in a.c, I get the correctly compilation, with calls to foo inserted in bar from b.c How do I achieve this kind of inline-ing? Regards, Soham Sinha PhD Student, Department of Computer Science Boston University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180515/3ac30e95/attachment.html>
2018 May 07
0
How to add assembly instructions in CodeGen
...ns extremely late in the pass pipeline so it might be a good place to look for some inspiration. Of course, because this is *extremely late* it might not do *exactly* what you need. (e.g, this is post-register allocation, post frame-lowering, etc.) - Jessica > On May 4, 2018, at 6:32 PM, Soham Sinha via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hello, > > I want to add assembly instructions at certain points in a function. This is X86 specific. So I am working in the lib/Target/X86 folder. I create a `MachineFunctionPass` in that folder. I register it in the X86Targe...
2018 May 10
2
Assembly file compilation flow
...he driver --verbose option is not giving me much information as well. I want to know the flow. Like, What CodeGen phases does this file pass through? Is it converted to MachineFunction ever? Where does it hook into the backend infrastructure? Any documentation could also be helpful. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180510/e125c7cf/attachment.html>
2009 Jul 09
4
Compiling R-2.9.1 on Mac OS X 10.4
Hello, I am trying to compile R-2.9.1 on Mac OS-X 10.4 using --enable-R-shlib. I am not comfortable with Mac/Linux environments and trying to follow the instructions from CRAN site to every detail. The Mac OS did not have a gcc (gcc -version did not work). So I did the following: ## For gcc 4.2 and Fortran 4.2.4 Compilers Download gcc-4.2-5566-darwin8-all.tar.gz from
2009 Aug 26
2
Help regarding frequency distribution Graphs
...y/frequency of finding a specific value of *"k"*) vs *"k"*.I would like to get a smooth curve between "P(k) vs k". I have already tried *"hist*" function in R but want something more specific. Can anyone help me out ? Thanks in advance. Regards, Anupam Sinha [[alternative HTML version deleted]]
2019 Jun 27
2
mkfs fails on qemu-nbd device
...y.ws>. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. root@localhost:~# uname -a Linux localhost 4.9.0-9-amd64 #1 SMP Debian 4.9.168-1+deb9u2 (2019-05-13) x86_64 GNU/Linux Regards Tanmoy Sinha
2018 May 05
4
How to add assembly instructions in CodeGen
...ineFunctionPass? I tried addPreRegAlloc, but it failed due to insufficient register allocation error or something on that line. Can anybody please help me write a MachineFunctionPass where I can insert assembly instruction without breaking the alignment? I am doing this for X86_64. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180504/7d720e63/attachment.html>
2018 Jun 25
2
How to include a opt pass in clang driver
...-load -Xclang lib/LLVMMyPass.so -mypass -myarguments However, the pass is not being run as I cannot see output from my pass. What is the standard way to do it? I have also tried approach described here: https://www.cs.cornell.edu/~asampson/blog/clangpass.html . It didn't work. Regards, Soham Sinha PhD Student, Department of Computer Science Boston University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180625/ff50e226/attachment.html>
2018 May 10
0
Assembly file compilation flow
...through any CodeGen phases. It operates entirely in the MC layer. No MachineFunctions will be created. It just runs it through the MCAsmParser. Most of the setup for this is in clang's tools/driver/cc1as_main.cpp in the function ExecuteAssembler ~Craig On Thu, May 10, 2018 at 1:32 PM Soham Sinha via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hello, > > LLVM MC blog post > <http://blog.llvm.org/2010/04/intro-to-llvm-mc-project.html> explains > fairly well how the backend MC project is working. However, it's not clear > to me how LLVM converts an assem...
2011 Aug 16
3
Bayesian Relative Survival Analysis in R?
...is"? I have look through Bayesian Survival Analysis(2001) by Joseph George Ibrahim<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Joseph+George+Ibrahim%22>, Ming-Hui Chen<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Ming-Hui+Chen%22>, Debajyoti Sinha<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Debajyoti+Sinha%22> and would like to try out bayesian relative survival analysis in R. >From http://cran.r-project.org/web/packages/available_packages_by_name.html, i know that the package relsurv<http://cran.r-project.o...