search for: sangeeta

Displaying 20 results from an estimated 34 matches for "sangeeta".

2017 Jun 12
3
After gluster clean up sub directories becomes invisible
can you please describe a bit more about the steps taken to clean up and re-configure gluster? Regards, Vijay On Mon, Jun 12, 2017 at 12:08 PM, Sangeeta Ramapure < sangeeta.ramapure at globallogic.com> wrote: > Kindly somebody help me with this issue. > > > > Thanks & Regards, > > Sangeeta Ramapure > > > > *From:* Sangeeta Ramapure [mailto:sangeeta.ramapure at globallogic.com] > *Sent:* June 09, 2017 4...
2017 Jun 09
2
After gluster clean up sub directories becomes invisible
Hi Team, After performing the gluster clean up and again doing gluster configuration the sub directories become invisible. Even after they are present the directories are invisible. If I create a new directory by the same name it will say the directory already exists. Thanks & Regards, Sangeeta Ramapure -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.gluster.org/pipermail/gluster-users/attachments/20170609/7d0185f6/attachment.html>
2017 Jun 12
0
After gluster clean up sub directories becomes invisible
Kindly somebody help me with this issue. Thanks & Regards, Sangeeta Ramapure *From:* Sangeeta Ramapure [mailto:sangeeta.ramapure at globallogic.com] *Sent:* June 09, 2017 4:41 PM *To:* 'gluster-users at gluster.org' *Cc:* 'devarajan at ericsson.com' *Subject:* After gluster clean up sub directories becomes invisible Hi Team, After performin...
2017 Jun 12
0
After gluster clean up sub directories becomes invisible
...onfigurations 1. sudo ./confGfs.sh -s -c -P <charging_ip> This step adds the entry in the fstab and mount the same. There are multiple directories under /export/home/ecmsftp which becomes invisible after gluser clean up and gluster configuration. Thanks & Regards, Sangeeta Ramapure *From:* Vijay Bellur [mailto:vbellur at redhat.com] *Sent:* June 12, 2017 12:32 PM *To:* Sangeeta Ramapure *Cc:* gluster-users *Subject:* Re: [Gluster-users] After gluster clean up sub directories becomes invisible can you please describe a bit more about the steps taken to clean up...
2020 Feb 29
2
Preserving the type of structure
Hello, LLVM IR flattens out the structure with one integer element to i32. Is there any way to disable this? I want to preserve the type information of the structure. I tried compiling the program with O0, it maintains the type for most of the instructions but for all. Regards, Sangeeta -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200228/c6676093/attachment.html>
2018 Aug 11
2
Need help in understanding llvm optimization
...est integer than be accurately represented is 2^53. As the number gets > larger floating sacrifices precision in the lower digits. Because of this > 1e16 and 1e16+1 end up having the same representation. So the result of > subtracting them is 0.0. > > On Sat, Aug 11, 2018 at 12:30 PM SANGEETA CHOWDHARY via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hi, >> >> I have below code in C - >> >> int main() { >> >> double x,y; >> >> x = 1e16; >> >> y = (x + 1) - x; >> >> printf("y:%e...
2018 Aug 11
4
Need help in understanding llvm optimization
...i64 0), double 0.000000e+00) ret i32 0 } I am not able to understand how addition and subtraction are performed in this code. There is no fadd or fsub instruction. How llvm knows that result of y is 0? Is there any way to disable this in llvm? Any help would be much appreciated. Regards, Sangeeta -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180811/7e03ffa5/attachment.html>
2020 Jun 24
2
Function name demangling in llvm ir
...nnes Doerfert via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > I have not tried it but maybe > > `std::string llvm::demangle(const std::string &MangledName)` > > in `llvm/Demangle/Demangle.h` > > is already what you want. > > > > On 6/24/20 2:10 PM, sangeeta chowdhary via llvm-dev wrote: > > Hello, > > I am doing some program analysis with C++ programs. I need to check if some > particular function is called in the program, for that I need the name of > the function being called in the call instruction. Since C++ mangles the > name...
2002 Aug 05
2
No subject
...as very good bootstrapping abilities. What I need to do is to program it (or use an existing program) to bootstrapping test for multimodality using nonparametric kernel density estimates as proposed by Efron and Tibshirani (1993). If anyone can get me started, I will be immensely grateful. Thanks. Sangeeta -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at sta...
2020 Jun 15
2
Need help in creating clone functions
...am with gdb and set a breakpoint on this new function, gdb shows the name of the original function. I know it has to do something with debug options but I am not sure how should I set the debug options of this new function so that I can see it in gdb. Can someone please help me with this? Regards, Sangeeta -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200615/7072698c/attachment.html>
2020 Jun 24
2
Function name demangling in llvm ir
...d to check if some particular function is called in the program, for that I need the name of the function being called in the call instruction. Since C++ mangles the name of the function, I need a way to demangle the function name in llvm IR. Is there any way to achieve that in llvm pass? Regards, Sangeeta -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200624/dcc1b31a/attachment.html>
2018 Jan 08
5
Integrating llvm pass with pass manager
...s/48142693#48142693>, to integrate my pass with pass manager and run it with clang. I am able to run my pass with opt - opt -mypass but when I try to run it with clang, I always get an error - unknown argument: '-mypass'. Please help me for the same. I would be really grateful. Regards, Sangeeta -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180107/aee51816/attachment.html>
2018 Aug 21
4
different output with fast-math flag
...in fdiv fast and fmul fast. I feel that its because d/max is really small number and fast-math does not care about small numbers and consider them to zero but this is so incorrect. On Tue, Aug 21, 2018 at 12:45 PM Stephen Canon <scanon at apple.com> wrote: > On Aug 21, 2018, at 11:17 AM, sangeeta chowdhary via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > Why the output is different for this below program when compiled using > clang with fast-math optimization > > #include<stdio.h> > > int main() { > double d = 1.0; > double max = 1.7...
2009 Feb 16
3
Finishing up the contributors list as well
...32:45 carolg,Carol Gayo,20,networking,Networking,2009-02-24 00:32:45 anders,Anders Persson,20,networking,Networking,2009-09-05 15:21:03 I vote to approve the above as is. --------------------------------------------------------------------- These three contributors already got 3 positive votes. sangeeta,Sangeeta Misra,20,on,OS/Net (ON),2010-07-13 11:58:19 Michael Schuster xzh,zhenghui xie,20,on,OS/Net (ON),2010-07-13 11:58:26 Micheal, I need your opensolaris user id. Core contributors, please take a look. --------------------------------------------------------------------- New suggestions (the...
2018 Jan 13
0
Integrating llvm pass with pass manager
Do you pull clang under llvm/tools and compile it as well? In theory, if `opt` recognize the option, so does `clang -mllvm`. 2018-01-12 8:47 GMT+08:00 sangeeta chowdhary <sangitachowdhary at gmail.com>: > Hello, > > I have tried giving this option like this > > clang -c -emit-llvm -mllvm -rdetector hello.c -c -o hello.bc > but I am getting error " Unknown command line argument '-rdetector’.” > > Although same option...
2016 Jul 11
2
Does KB3161949 (netbios disabled on windows) affect samba4 as well?
Hi, Sorry am new, so dont know if this is the right place to ask this question. Microsoft recently released a security update( KB 3161949) that disables netbios connection outside the local subnet. I have been using Samba 3.0.28 and since the name resolution doesn't happen after installing the patch, I cant connect to my shares anymore. If someone is using Linux samba4, can you please let
2016 Jul 12
0
Does KB3161949 (netbios disabled on windows) affect samba4 as well?
You should consider using the samba 4 code -- I don't think there is much help to be had with version 3.0 -- On Sun, Jul 10, 2016 at 10:18 PM, Sangeeta Singh < sangeeta.ss.singh at gmail.com> wrote: > Hi, > > Sorry am new, so dont know if this is the right place to ask this question. > Microsoft recently released a security update( KB 3161949) that > disables netbios connection outside the local subnet. > > I have been...
2018 Jan 11
0
Integrating llvm pass with pass manager
`-mypass` should be only recognize by the backend part (i.e. llvm). You should add `-mllvm` to tell clang the following argument have to be passed to the backend part. 2018-01-08 8:02 GMT+08:00 sangeeta chowdhary via llvm-dev < llvm-dev at lists.llvm.org>: > Hello, > > I have followed steps given in - https://stackoverflow.com/ > questions/29910051/integrating-llvm-passes/48142693#48142693, to > integrate my pass with pass manager and run it with clang. I am able to > run...
2018 Jan 15
0
Integrating llvm pass with pass manager
On 14 Jan 2018, at 00:14, sangeeta chowdhary <sangitachowdhary at gmail.com> wrote: > > I have taken SimplePass and added in Transform directory, “libLLVMSimplePass.a” is built but I can not see this pass in opt —help. I don’t even see the name of pass while registering it in the example. The SimplePass example is inte...
2018 May 23
1
How to create a call to a function which returns a struct
Hello, I am trying to create a call to a function which returns a struct in llvm pass. I also want to read struct fields returned from this function call. Can somebody help me with this? Regards, Sangeeta