search for: ghosh

Displaying 20 results from an estimated 76 matches for "ghosh".

Did you mean: ghost
2018 Feb 26
3
Level of support for ARM LLD
...uality? Thanks On Mon, Feb 26, 2018 at 2:06 PM, Rafael Avila de Espindola < rafael.espindola at gmail.com> wrote: > Not sure there is an official POC, you are probably better off asking > whatever question you have directly on the list. > > Cheers, > Rafael > > Sumonto Ghosh via llvm-dev <llvm-dev at lists.llvm.org> writes: > > > Hi, > > Could someone please connect me to the POC for ARM support on LLD > > > > > > Thanks > > _______________________________________________ > > LLVM Developers mailing list > > llvm...
2018 Feb 27
0
Level of support for ARM LLD
I think ARM ELF is pretty good. I was able to link clang with it some time ago and it now has support for thunks. Cheers, Rafael Sumonto Ghosh <sumonto.ghosh at gmail.com> writes: > Thanks Rafael, wondering as of what is the level of support for ARM and is > it close to production quality? > > Thanks > > On Mon, Feb 26, 2018 at 2:06 PM, Rafael Avila de Espindola < > rafael.espindola at gmail.com> wrote: &...
2003 Mar 27
7
Request
Dear all, I am trying to learn R. Is it possible to find the mean of some rows (of some table) and to put it in new table. For example we have following table date x y z 1 05-23-2001 7 1 3 2 05-24-2001 8 4 5 3 05-24-2001 6 0 0 4 05-24-2001 26 2 6 5 06-19-2001 0 7 0 6 06-19-2001 5 0
2005 May 05
6
Need some quick help with lattice - barchart
For the following code below, the x-axis ticks are 1,2,3,4,5,6,7 when I was expection them to be 1,2,8,9,10,11,12. Please help me figure out where is the mistake. library(lattice) testdata <- as.data.frame(t(structure(c( 1,2005,9.24,6.18,634, 2,2005,8.65,6.05,96, 8,2004,6.81,6.51,16, 9,2004,9.0,7.29,8, 10,2004,8.84,6.18,524, 11,2004,8.54,6.35,579, 12,2004,9.97,6.3,614, 12,2005,8.75,5.84,32,
2011 Mar 25
2
[LLVMdev] set line number debug info
...ll the getLine() function from other functions then it is returning the previous value not the changed. Is the change in the LineCol variable is not permanent or is this variable not at all linked with the debug information? How can I set the line number information for the instructions? Abhirup Ghosh M. Tech Department of Computer Science & Engg. IIT, Bombay email - abhirupju at gmail.com , abhirup at cse.iitb.ac.in Contact - 9920735181 On Mon, Mar 14, 2011 at 1:45 PM, Frits van Bommel <fvbommel at gmail.com>wrote: > On Mon, Mar 14, 2011 at 8:56 AM, Abhirup Ghosh <abhirupju a...
2018 Feb 27
2
Level of support for ARM LLD
...or alike Thanks On Mon, Feb 26, 2018 at 4:19 PM Rafael Avila de Espindola < rafael.espindola at gmail.com> wrote: > I think ARM ELF is pretty good. I was able to link clang with it some > time ago and it now has support for thunks. > > Cheers, > Rafael > > > Sumonto Ghosh <sumonto.ghosh at gmail.com> writes: > > > Thanks Rafael, wondering as of what is the level of support for ARM and > is > > it close to production quality? > > > > Thanks > > > > On Mon, Feb 26, 2018 at 2:06 PM, Rafael Avila de Espindola < > &gt...
2011 Mar 25
0
[LLVMdev] set line number debug info
...e line number for an instruction - 1. Add a function in DebugLoc class located in llvm/Support/DebugLoc.h. Set the line number there to the private variable called LineCol. 2. Call the added function. And then pass the modified DebugLoc object to the seDebugInfo method for the instruction. Abhirup Ghosh M. Tech Department of Computer Science & Engg. IIT, Bombay email - abhirupju at gmail.com , abhirup at cse.iitb.ac.in Contact - 9920735181 / 9434362120 On Fri, Mar 25, 2011 at 5:45 PM, Abhirup Ghosh <abhirupju at gmail.com> wrote: > Thanks for the help. > I thought I'd solved...
2005 Jun 30
1
FW: plot legend outside the grid
-----Original Message----- From: Ghosh, Sandeep Sent: Thursday, June 30, 2005 5:43 PM To: 'Berton Gunter' Subject: plot legend outside the grid Thanks for the pointers... I managed to get everything to look and feel the way I want except for the legend to plot outside the grid... Thanks for the note on the par, but I'm n...
2005 Jun 28
3
Help with stripplot
...ied")], function(x) as.numeric(levels(x)[x])); trellis.par.set(theme = col.whitebg()); stripplot(jitter(marbles_buried) ~ genotype, data = dataFrame, aspect = 1, jitter = TRUE, xlab='Genotype', ylab = "Marbles Buried", main='MBA WTs Vs HOMs'); Thanks, Sandeep Kumar Ghosh Lexicon Genetics, Inc., 8800 Technology Forest, The Woodlands, TX 77380 (281) 863-3479 Internal Extension - 3479 [[alternative HTML version deleted]]
2012 Mar 08
2
Regarding randomForest regression
...column are also different. Should this happen , since I am using the training dataset as the testing dataset? I expected that the test and training predictions would be the same. It would be helpful if you could point out if I am missing something. Thanks for the help. Regards, Shameek Ghosh [[alternative HTML version deleted]]
2008 Jul 26
3
Which build is the last beta release ?
Hi, netvirt-src-20080310.tar.bz2 appears to the last beta release. Is this synced against Build 81 ? Also when is the next beta expected ? Regards, Moinak.
2006 Aug 18
3
Lattice package par.settings/trellis.par.settings questions
...ents for example like /axis.font=2/, or /cex=2/ are not working in the /par.settings(). /I also tried to read the manual of /trellis.par.settings()/ but didn't understand how to use it and where exactly to put it. Any help with this will be appreciated. Thanks, Debarchana. -- Debarchana Ghosh Research Assistant Department of Geography University of Minnesota PH: 8143607580 email to: ghos0033 at umn.edu www.tc.umn.edu/~ghos0033
2011 Mar 14
2
[LLVMdev] set line number debug info
...I create MDNode* consisting of desired source line number. Source line number can be extracted from the instruction-debug-info using getMetadata method and then using getLineNumber method from DILocation class. Unfortunately DILocation class does not have any function like setLinenumber. Abhirup Ghosh M. Tech Department of Computer Science & Engg. IIT, Bombay email - abhirupju at gmail.com , abhirup at cse.iitb.ac.in Contact - 9920735181 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110314/c15a824c/a...
2018 Feb 27
0
Level of support for ARM LLD
...much use of Big Endian on Arm outside of networking though so getting access to hardware to test on is difficult. I'm not planning on adding the errata fixes as these are quite disruptive and the affected CPUs are now quite old and not in wide use. Peter On 27 February 2018 at 03:04, Sumonto Ghosh via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Is there a regression bot with a list of tests or alike > > Thanks > > On Mon, Feb 26, 2018 at 4:19 PM Rafael Avila de Espindola > <rafael.espindola at gmail.com> wrote: >> >> I think ARM ELF is pretty good...
2011 Mar 13
2
Problem implementing 'waldtest' when using 'mlogit' package
...or in terms.default(x) : no terms component The two fitted models are: mc <- mlogit(depvar ~ ic + oc, H, reflevel="hp") mi2 <- mlogit(depvar ~ oc + ic | income, H, reflevel="hp") I would be grateful for tips on how to proceed. Thanks in advance. Best regards, Gaurav S. Ghosh, Ph.D., E.ON Energy Research Centre, Room 01.32, RWTH Aachen, Mathieustraße 6, D-52074 Aachen, Germany [[alternative HTML version deleted]]
2008 May 26
1
To draw observation [m, n] from 20 data frames named frame1, ... , frame20
...",i,"[1,2]",sep="") } The vector that results is of the form ("frame1[1,2]", ... , "frame20[1,2]"). Instead, the vector I need has the numerical values that correspond to frame1[1,2], frame2[1,2], ... etc. How should I amend my code? Thanks, Gaurav Ghosh Graduate Student, Department of Agricultural Economics and Rural Sociology, 311 Armsby Building, Pennsylvania State University, University Park, PA 16802 Ph: 814-865-1128 [[alternative HTML version deleted]]
2012 Sep 30
1
Query
...wing problem using R or not? I have to select 6-10 parameters whose range are given but I need to select the parameter values which satisfies 5-6 known conditions i.e. to find a suitable parameters satisfying given conditions where we only know the range of parameters. Thanks and regards, Mini Ghosh [[alternative HTML version deleted]]
2011 Mar 14
0
[LLVMdev] set line number debug info
On Mon, Mar 14, 2011 at 8:56 AM, Abhirup Ghosh <abhirupju at gmail.com> wrote: > Hi, >       I am new to LLVM infrastructure. Recently I am trying to set the debug > info for an instruction. The main aim is to set the source line number of an > instruction. Can anyone please show how to do that? >       I think  that setMet...
2005 Jul 05
0
plot legend outside the grid
...rbles_buried)), c(wtLegend, hetLegend, homLegend), col=c('blue', 'red', 'green'), pch=c(1,4,2)); Again thanks so much for all the pointers.. - Sandeep -----Original Message----- From: Berton Gunter [mailto:gunter.berton at gene.com] Sent: Friday, July 01, 2005 7:37 PM To: Ghosh, Sandeep Subject: RE: plot legend outside the grid You are not specifying the x,y position of the legend correctly. You do not need to end each statement with a ";"; you should set par(xpd=TRUE) before you do the plot. On a windows device, I used locator() to determine the coordinates...
2007 Sep 23
3
ext3 file system becoming read only
Hi In our office environment few servers mostly database servers and yesterday it happened for one application server(first time) the partion is getting "read only". I was checking the archives, found may be similar kind of issues in the 2007-July archives. But how it has been solved if someone describes me that will be really helpful. In our case, just at the problem started found