Displaying 20 results from an estimated 101 matches for "mahesh".
Did you mean:
mahesha
2018 Mar 31
3
Writing tests with Filecheck without emitting output to stdin
...a.
I am hoping to do something like this,
; RUN: FileCheck --input-file=a.rpt.gold --check-prefix=CHECK-A < a.rpt
; RUN: FileCheck --input-file=b.rpt.gold --check-prefix=CHECK-B < b.rpt
i did not find much examples in tests hence question.
does this have any potential issue in matching.
~Mahesh
On Sat, Mar 31, 2018 at 5:08 PM, Tim Northover <t.p.northover at gmail.com>
wrote:
> Hi Mahesh,
>
> On 31 March 2018 at 11:45, Mahesh Attarde via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
> > opt --my-pass <%s | Filecheck %s
> >
> > --my-pass ge...
2017 Oct 03
1
About LLVM Pass dependency
...t;AnnotatedFunctionPass>(); // Transformation like pass
AU.addRequired<CallGraphSCCPass>(); // Analysis Pass
}
here AnnotateFunctionPass is adding meta information,so technically nothing
Functional transformational in module and
not Analysis either.
Would that be right way?
Thanks
Mahesh
On Tue, Oct 3, 2017 at 9:43 PM, Hongbin Zheng <etherzhhb at gmail.com> wrote:
> Hi Mahesh,
>
> Did you override getAnalysisUsage and require D1, D2 and D3?
>
>
> void YourPass::getAnalysisUsage(AnalysisUsage &AU) const {
> AU.addRequired<D1>();
> AU.add...
2011 Jul 14
9
Extension wise dialplan
...no. of extensions in my dialer. from 456 to 556 extensions. I was
created 2 other extensions 667 and 668 I need to allow only STD calls to
go from this extensions.
These all extensions are same context . I need to define the STD dialplan
for only this 2 extensions. how I can ?
Best Regards,
Mahesh Katta
*BUZZ**WORKS* Business Services Private Limited
BANGALORE | CHENNAI | HYDERABAD | MUMBAI| DELHI
201, Crystal Tower, 75 Gundavali Cross Lane, Andheri Kurla Road, Andheri (E)
Mumbai 400069
GSM +91.97029.70779 | Phone +91.22.4229.2634 | Fax +91.22.4229.2634
Web http://www.buzzworks.com
---------...
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Oops. My bad. I mean to write match-file being my match pattern. and a.rpt
being file generated by opt.
;RUN: FileCheck <match-file>a.rpt.gold --input-file=a.rpt.
mahesh
On Sat, Mar 31, 2018 at 6:57 PM, Mahesh Attarde <coder.mahesh at gmail.com>
wrote:
> That works. Thanks.
>
> One more followup question though.
> Once i run opt on bitcode, there is not useful output/transform on
> bitcode. this rpt files are extra.
> I am hoping to do so...
2018 Mar 31
4
Writing tests with Filecheck without emitting output to stdin
...erating on bitcode file which produces more than one
equivalent representation.
opt --my-pass <%s | Filecheck %s
--my-pass generates files a.rpt b.rpt c.rpt . How do i write test without
writing all 3 files to stdin.
I have considered CHECK-LABEL for each. it creates bulky checks.
Thanks
Mahesh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180331/284e9e19/attachment.html>
2010 Oct 08
3
How to use Atxfer in AMI
Hi,
I'm trying to make a attended transfer through AMI. I though i could use
Atxfer, and it seems ok, but nothing happens.
And I can't find any how-to or description on how to do this. What more
do I have to do to make this work?
In Asterisk Call Manager:
Action: Atxfer
Channel: SIP/36-xxxxxx
Exten: 33
Priority: 1
Context: Phone
Response: Success
Message: Atxfer successfully queued
2017 Oct 03
2
About LLVM Pass dependency
...While running it through opt tool it, I had to specify this D1,D2,D3 pass
names
to get this pass executed before my pass.
Is there way, to let llvm pass manager to know execute all dependencies
without
having to specify explicitly.?
I suspect i am doing something wrong in my code, May be.
Thanks
Mahesh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20171003/31ddc6f5/attachment.html>
2010 Nov 16
1
DAHDI / dial in / overlap digits / timeout
Hi,
our Asterisk is connected to an E1 port. So we are using the
DAHDI-Driver. Please , how do I tell the driver/Asterisk to wait for
overlap digits for in-calls? I found the option "overlapdial=yes" but I
did not try yet. Is that "my" option? Is there any option for setting an
timeout?
Thorsten
2007 Jan 11
2
Account is not authorized to log in from this station
...access it, but nopt with netbios name.
This is my smb.conf file,
[global]
workgroup = BSIL
netbios name = MDT506
security = share
server string = samba testing........
[data]
read only = No
guest ok = yes
path = /export
force user = mahesh.pawar
force group = users
comment = for everyone...
with this configuration I am able to access the share on samba If a
windows machine is logged in as a administrator.
If I log in with a user account (which is also stored in smbpasswd) I am
unable to access the samba share.
also...
2006 Sep 04
3
Subsetting vectors based on condition
...like to subset vect.2 so that it has the same length as vect.1,
and its numbers are the first corresponging higher value compared to
vect.1.
The output should be:
final.output = (95, 215, 299, NA)
What is the fastest/most eficient way to accompllish this in R?
Thanks for the help in advance,
Mahesh Krishnan
2017 Dec 11
2
target porting : objdump is not giving proper registers.
..., r0, 15 28: f8000020 swi r0, r0, 32 2c:
10000000 addk r0, r0, r0 30: e8000000 lwi r0, r0,
0 34: b60f0008 rtsd r15, 8 38: 30000034 addik r0,
r0, 52*
I am not able to find where it went wrong.could you help me with some notes.
Thanks,
Mahesh B
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20171211/ebd506cd/attachment.html>
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Hi Mahesh,
On 31 March 2018 at 11:45, Mahesh Attarde via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> opt --my-pass <%s | Filecheck %s
>
> --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without
> writing all 3 files to stdin.
You can run FileCheck over them on se...
2010 Nov 08
15
Can I use shorewell stuff for my problem
...r interface that is connected to
different network.
One of my requirement is that I should not use any external hardware or
should not have switch support. Can you please guide me whether I can use
shorewell for my situation..
Please help me it is very urgent to be solved.
Thanks and Regards
Mahesh Gupta.B
L&T EmSyS Proprietary
L&T EmSyS Confidential
L&T EmSyS Internal Use
L&T EmSyS General Business
------------------------------------------------------------------------------
The Next 800 Companies to Lead America''s Growth: New Video Whitepaper
David G. Thomso...
2011 May 17
0
3. Re: ITSP Multi IPs (Alex Balashov) Asterisk-users Digest, Vol 82, Issue 33
...1.8 and prematuremedia problem (d tbsky)
5. Re: 1.8 and prematuremedia problem (Satish Patel)
6. Re: 1.8 and prematuremedia problem (d tbsky)
7. Re: Background music during a call (Rizwan Hisham)
8. Re: OT - Which Android handset with Wifi-only ? (Olivier)
9. Re: OUTBOUND CALLER ID (mahesh katta)
10. Re: OUTBOUND CALLER ID (DHAVAL INDRODIYA)
11. Re: OUTBOUND CALLER ID (mahesh katta)
12. Re: 40sec between dial execution and sending SIP request
(Pezhman Lali)
----------------------------------------------------------------------
Message: 1
Date: Mon, 9 May 2011 20:54:39...
2011 May 09
3
OUTBOUND CALLER ID
...er than its own DID number.
I have already talked with my service provider and he said that they have
activated it from their end..
Incoming DID's have been configured successfully and probelm is just for the
outgoing caller ID that it shows always is pilot number ........
--
Best Regards,
Mahesh Katta
*BUZZ**WORKS* Business Services Private Limited
BANGALORE | CHENNAI | HYDERABAD | MUMBAI| DELHI
201, Crystal Tower, 75 Gundavali Cross Lane, Andheri Kurla Road, Andheri (E)
Mumbai 400069
GSM +91.97029.70779 | Phone +91.22.4229.2634 | Fax +91.22.4229.2634
Web http://www.buzzworks.com
---------...
2018 Apr 01
0
Writing tests with Filecheck without emitting output to stdin
...are appropriate to each run of FileCheck.
I am sure you can find some existing tests with examples of these patterns to give you ideas how to write your test. If you still have questions please feel free to ask them.
--paulr
From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Mahesh Attarde via llvm-dev
Sent: Saturday, March 31, 2018 6:45 AM
To: llvm-dev
Subject: [llvm-dev] Writing tests with Filecheck without emitting output to stdin
Hello
I have pass operating on bitcode file which produces more than one equivalent representation.
opt --my-pass <%s | Filecheck %s
--my...
2018 Apr 23
0
llc tool followed by g++ : Abnormal behavior while compiling assembly to object file
Hi Mahesh,
On 23 April 2018 at 10:51, Mahesh Attarde via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> movq .str at GOTPCREL(%rip),%rdi
> movq .str.1 at GOTPCREL(%rip),%rsi
That's quite strange. You wouldn't normally expect to access a
constant string via the GOT. It looks like LLVM ha...
2008 Aug 07
3
problem running R
Dear all,
I am new to R and very basic idea about it.
While running some codes i am getting following error:
"Error in m[indexMax] : invalid subscript type 'list' "
I am not sure about this error. Any way to correct it.
mahesh
[[alternative HTML version deleted]]
2009 Oct 04
2
Urgently needed Exercise solutions related to Practical Data Analysis Using R Statisctial Software
...hen it should be noticed that mention at
this email kindly
your paypal email account where one can transfer money in all cases.
But please respect the deadline in al cases.. *Dealine for this assignment
is 07.10.09.*
*If it is paid based then kindly let me know a decent price for this ..*
Regard,
Mahesh
2011 Jun 07
3
Different callerid for different extensions
...tension callerid will show 044578900 right, and i have 200 extension also
when i dial from this callerid will show 044578900 right. but i need to
difine every extension should be show different callerid . and same as
INbound also.
Please anybody give me short dialplan for this .
--
Best Regards,
Mahesh Katta
*BUZZ**WORKS* Business Services Private Limited
BANGALORE | CHENNAI | HYDERABAD | MUMBAI| DELHI
201, Crystal Tower, 75 Gundavali Cross Lane, Andheri Kurla Road, Andheri (E)
Mumbai 400069
GSM +91.97029.70779 | Phone +91.22.4229.2634 | Fax +91.22.4229.2634
Web http://www.buzzworks.com
---------...