search for: verma

Displaying 20 results from an estimated 115 matches for "verma".

Did you mean: vera
2012 Aug 28
4
[LLVMdev] TableGen backend support to express relations between instruction
...to a single table and will include APIs (one per relation) to query from this table. Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Jyotsna Verma Sent: Tuesday, August 21, 2012 12:42 PM To: 'Jakob Stoklund Olesen' Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] TableGen related question for the Hexagon backend Sounds good. I've started adding TableGen backend support to emit relationship table into a .inc file. Hoping to finis...
2017 Dec 22
0
DBG_VALUE insertion for spills breaks bundles
Hi again, Here is a small patch to fix this issue. Please note that since the problem results in broken bundles, it can result in invalid schedules for any VLIW back-ends using bundling to group instructions. Best regards Saurabh Verma From: Verma, Saurabh Sent: Tuesday, December 19, 2017 4:14 PM To: llvm-dev at lists.llvm.org Subject: DBG_VALUE insertion for spills breaks bundles Hi, The insertion of DBG_VALUE instructions for spills does not seem to be handling insert locations inside bundles well. If the spill instruction i...
2017 Dec 19
3
DBG_VALUE insertion for spills breaks bundles
...undledSucc=false, BundledPred=false] MI2 [BundledSucc=false, BundledPred=true] Since this happens after the final instruction scheduling, it results in broken schedules. I believe setting the bundling flags before invoking MBB->insertAfter in ExtendRanges should fix this. Best regards Saurabh Verma -------------------------------------------------------------- Intel Research and Development Ireland Limited Registered in Ireland Registered Office: Collinstown Industrial Park, Leixlip, County Kildare Registered Number: 308263 This e-mail and any attachments may contain confidential material f...
2017 Mar 08
2
Vector trunc code generation difference between llvm-3.9 and 4.0
...ific case (a too fat splat) in > IR in instcombine, and it will resolve this exact example. This will take a > couple of patches to restore your example. Here's a proposal for the first > one: > https://reviews.llvm.org/D30123 > > > On Sat, Feb 18, 2017 at 12:33 AM, Saurabh Verma < > saurabh.verma at movidius.com> wrote: > >> Thanks Sanjay. Interestingly for me, disable-llvm-optmzns did not make a >> difference in the way the shift was handled. Does the initial IR generated >> for you show this difference when the option is passed? >> &gt...
2017 Feb 18
2
Vector trunc code generation difference between llvm-3.9 and 4.0
...%ymm1, %ymm0, %ymm0 > vpshufb %ymm2, %ymm0, %ymm0 > vpermq $232, %ymm0, %ymm0 > vzeroupper > > > So this example may have won the bug lottery by exposing all of front-, > middle-, back-end bugs. :) > > > > On Fri, Feb 17, 2017 at 9:38 AM, Saurabh Verma via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Correction in the C snippet: >> >> typedef signed short v8i16_t __attribute__((ext_vector_type(8))); >> >> v8i16_t foo (v8i16_t a, int n) >> { >> return a >> n; >> } >&...
2017 Feb 17
2
Vector trunc code generation difference between llvm-3.9 and 4.0
Correction in the C snippet: typedef signed short v8i16_t __attribute__((ext_vector_type(8))); v8i16_t foo (v8i16_t a, int n) { return a >> n; } Best regards Saurabh On 17 February 2017 at 16:21, Saurabh Verma <saurabh.verma at movidius.com> wrote: > Hello, > > We are investigating a difference in code generation for vector splat > instructions between llvm-3.9 and llvm-4.0, which could lead to a > performance regression for our target. Here is the C snippet > > typedef signed...
2012 Aug 31
0
[LLVMdev] TableGen backend support to express relations between instruction
Hi Jakob, Did you get a chance to look at the patch? Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Jyotsna Verma Sent: Tuesday, August 28, 2012 1:01 PM To: 'Jakob Stoklund Olesen' Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] TableGen backend support to express relations between instruction Hi Jakob, Here is the first draft of the patch to add TableGen backend support for the instruction mapping...
2015 Jun 23
3
[LLVMdev] Enabling the gold linker on freebsd
the symlink ld is already pointing to /usr/bin/ld. Also -fuse-ld=gold does not works on clang in freebsd. I am not sure where is the problem?should I remove /usr/bin/ld and create a new symlink to /usr/local/bin/ld.gold? Regards Aditya Verma Junior Undergraduate IDD Computer Sc & Engg IIT(BHU), Varanasi(UP) On Mon, Jun 22, 2015 at 5:25 AM, Rafael EspĂ­ndola < rafael.espindola at gmail.com> wrote: > Two options: > > * Try passing -fuse-ld=gold to clang. > * have 'ld' be a symlink to ld.gold. > > Chee...
2012 Aug 28
1
[LLVMdev] TableGen backend support to express relations between instruction
...de][1] } Let me know if something is not clear and I will try to explain it further. Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. -----Original Message----- From: Hal Finkel [mailto:hfinkel at anl.gov] Sent: Tuesday, August 28, 2012 1:27 PM To: Jyotsna Verma Cc: 'Jakob Stoklund Olesen'; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] TableGen backend support to express relations between instruction Jyotsna, I hadn't been following this, so I apologize if this has already been provided, but can you give a quick example of how this functional...
2012 Aug 28
0
[LLVMdev] TableGen backend support to express relations between instruction
Jyotsna, I hadn't been following this, so I apologize if this has already been provided, but can you give a quick example of how this functionality is used? Thanks in advance, Hal On Tue, 28 Aug 2012 13:01:17 -0500 "Jyotsna Verma" <jverma at codeaurora.org> wrote: > Hi Jakob, > > Here is the first draft of the patch to add TableGen backend support > for the instruction mapping tables. Please take a look and let me > know your suggestions. As of now, I create one mapping table per > relation wh...
2006 Apr 05
1
(Fwd) Re: Reading xyz data from a file and plotting a cont
BTW. I checked help page of contour and maybe it could mention a note about akima package or interp function. Petr ------- Forwarded message follows ------- From: Petr Pikal <petr.pikal at precheza.cz> To: "Abhinav Verma" <abhinav1205 at gmail.com>, r-help at stat.math.ethz.ch Subject: Re: [R] Reading xyz data from a file and plotting a contour plot Date sent: Wed, 05 Apr 2006 13:39:38 +0200 Hi On 5 Apr 2006 at 10:44, Abhinav Verma wrote: Date sent: Wed, 5 Apr 2006 10:44:41 +0200 F...
2012 Aug 20
2
[LLVMdev] TableGen related question for the Hexagon backend
You're right. I can have use RowFields for that purpose. Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. -----Original Message----- From: Jakob Stoklund Olesen [mailto:stoklund at 2pi.dk] Sent: Monday, August 20, 2012 3:42 PM To: Jyotsna Verma Cc: 'Tony Linthicum'; llvmdev at cs.uiuc.edu Subject: Re: TableGen related question for the Hexagon backend On Aug 20, 2012, at 1:32 PM, "Jyotsna Verma" <jverma at codeaurora.org> wrote: > In the Hexagon backend, a predicated instruction can translate into > anothe...
2015 May 31
2
[LLVMdev] Error in building Gold on FreeBSD
...attachment > instead of taking a graphic screenshot. The error is sufficiently small to > attach as plain text, and some developers don't like following links to web > sites that they don't recognize. > > Regards, > > John Criswell > > On 5/29/15 7:26 PM, Aditya Verma wrote: > > Hi > > > I followed the steps on > http://llvm.org/docs/GoldPlugin.html#lto-how-to-build > <https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_docs_GoldPlugin.html-23lto-2Dhow-2Dto-2Dbuild&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=Mfk2qtn1LTDThVkh...
2001 Apr 26
3
vorbis plugin
Is there a vorbis plug-in for Real Player or the Windows Media Player? Sameer -- Sameer Verma Asst. Professor of Information Systems San Francisco State University San Francisco CA 94132 USA http://verma.sfsu.edu/ --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@x...
2019 Aug 14
2
Libvirt API for attaching volume to domain
Hi, I wanted to know if there is any Python API exposed for libvirt using which I can attach a libvirt volume to a libvirt domain/VM. I intend to do something similar to the `attach-disk` command of virsh using python. -- *Regards,* *Varsha Verma* *Final Year Undergraduate* *Department of Electrical Engineering* *IIT-BHU, Varanasi*
2019 Aug 14
2
Re: Libvirt API for attaching volume to domain
Thanks, this is exactly what I needed. Is there some documentation where I can get how to exactly call this function along with the arguments? On Wed, Aug 14, 2019 at 6:48 PM Peter Krempa <pkrempa@redhat.com> wrote: > On Wed, Aug 14, 2019 at 18:23:30 +0530, Varsha Verma wrote: > > Hi, > > > > I wanted to know if there is any Python API exposed for libvirt using > which > > I can attach a libvirt volume to a libvirt domain/VM. > > > > I intend to do something similar to the `attach-disk` command of virsh > > using python...
2013 Jan 21
0
[LLVMdev] [llvm-commits] [llvm] r172534 - /llvm/trunk/test/Transforms/LoopStrengthReduce/post-inc-icmpzero.ll
Moving to llvm-dev... On Jan 21, 2013, at 9:07 AM, Manish Verma <manish.verma at arm.com> wrote: > Hi Andy, > > I have been able track down the reason for the difference in output > generated by > opt. The difference is caused when the target triple specified in the > test-case > is not a supported target for opt/clang/llvm. In this...
2012 Aug 21
0
[LLVMdev] TableGen related question for the Hexagon backend
...en know how to extract it? It appears to me that we may have to add support for that. Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Jyotsna Verma Sent: Monday, August 20, 2012 3:59 PM To: 'Jakob Stoklund Olesen' Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] TableGen related question for the Hexagon backend You're right. I can have use RowFields for that purpose. Thanks, Jyotsna -- Qualcomm Innovation Center, Inc. is a memb...
2015 May 30
3
[LLVMdev] Error in building Gold on FreeBSD
Hi I followed the steps on http://llvm.org/docs/GoldPlugin.html#lto-how-to-build to build the gold plugin on FreeBSD but ! Heres a link to the screenshot of the error: http://postimg.org/image/anlpuufbl/ This is the error message that it shows and so I am also unable to get ld-new. I checked and no CFLAGS were set in etc/make.conf. How to proceed with the installation? I am using the deault
2013 May 16
2
Does Set Block IO tune take effect in the same session.
Hello All, I am using virDomainSetBlockIoTune() API to set the IO tune parameter for a running guest VM. I observed that after setting the value succesfully i ned to Shutdown and start the VM inorder to take the set value in effect. Is there any way with which these values come in effect in the same session of the VM without Shutting down and starting the VM. Please help regards, Vikrant