search for: sundeep

Displaying 20 results from an estimated 21 matches for "sundeep".

Did you mean: sudeep
2011 Jul 28
0
[LLVMdev] LLVM / CLANG Test Infrastructure Question
On Jul 28, 2011, at 8:18 AM, Sundeep wrote: >>> 1. I checked out and built llvm, clang, and test-suite from svn tip. >> When I >>> run llvm/test *without* my changes on x86, I see 3 failures. Is it >> expected? >>> I was expecting svn tip on x86 to be clean. Is there a nightly >> regressio...
2011 Jul 28
2
[LLVMdev] LLVM / CLANG Test Infrastructure Question
...needs updating. I see. Do you run projects/test-suite with clang? > > 4. I see many compile errors when running projects/test-suite. Is it > > expected? > > No. I will try to debug. Do you have a log file from your previous runs that I can use? Thanks Chad. I appreciate it. -Sundeep
2015 Jul 21
2
[LLVMdev] Loop localize global variables
Hi Sundeep, I am also interested in the load-store lifting transformation. For static globals as-in your example, the transformation in general would rely on a better static global aliasing information that is currently in review http://reviews.llvm.org/D10059 For non-static globals, one problem with loop-...
2015 Jul 21
2
[LLVMdev] Loop localize global variables
..._var = gbl_var; for () { ...access clc_var... } gbl_var = lcl_var; } This transformation helps a couple of EEMBC benchmarks on both Aarch64 and Hexagon backends. I was wondering if there is interest to get this optimization upstreamed or if there is a better way of doing this. Thanks, Sundeep Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
2011 Nov 07
1
[LLVMdev] Post increment and register pressure
...s resulting in poor code due to increased register pressure. I was wondering if there is a way to estimate register pressure during DAG Combiner. I am trying to come up with some heuristic based on # of DAG nodes, # of live ins and live outs, # of machine registers etc. Any suggestions? Thanks. -Sundeep
2011 Jul 27
2
[LLVMdev] LLVM / CLANG Test Infrastructure Question
.../failing test cases similar to llvm/test runs. Is there a make target to do so? I apologies for asking so many questions. I followed directions from the "LLVM Testing Infrastructure Guide" but it doesn't address all these issues. I will appreciate your help to resolve these. Thanks, Sundeep
2015 Jun 27
4
Driver macosx-ups failing on Yosemite
On Jun 27, 2015, at 9:17 AM, Charles Lepple <clepple at gmail.com> wrote: > On Jun 26, 2015, at 11:07 PM, Sundeep Mediratta <smedius at gmail.com> wrote: > >> 0.000233 upsdrv_initups(): Power Sources blob: >> <CFArray 0x7ffd18605480 [0x7fff7443bed0]>{type = immutable, count = 1, values = ( >> 0 : <CFBasicHash 0x7ffd18605360 [0x7fff7443bed0]>{type = immutable dict, coun...
2011 Jul 28
0
[LLVMdev] LLVM / CLANG Test Infrastructure Question
On Jul 27, 2011, at 3:00 PM, Sundeep wrote: > Hi All, > > I am working on a bug in clang. I already have a fix for it and I am going > through the "LLVM Testing Infrastructure Guide" to make sure I haven't > broken anything else. I have few questions regarding the test suite > infrastructure that I ho...
2015 Jun 27
2
Driver macosx-ups failing on Yosemite
> On Jun 26, 2015, at 9:25 PM, Charles Lepple <clepple at gmail.com> wrote: > > On Jun 26, 2015, at 8:35 AM, Sundeep Mediratta <smedius at gmail.com> wrote: > >> OSX Yosemite 10.10.3 >> Nut version 2.6.5 >> Installed via Macports >> Device is Cyberpower CP1000AVRLCD >> Device is visible and is monitored in the OSX control panel >> >> Error- >> >> m...
2012 Mar 29
0
[LLVMdev] VLIWPacketizerList: failing to schedule terminators
...oundary to return false for terminators; 4. The region formation algorithm will select the entire basic block (if there are no labels) for scheduling including terminators. 5. Control edge will make sure that terminator instruction is not reordered. Please let me know what you guys think. Thanks, Sundeep > -----Original Message----- > From: Das Gupta, Anshu > Sent: Thursday, March 29, 2012 1:46 PM > To: sundeepk at codeauroraforum.org; Kushwaha, Sundeep > Subject: FW: [LLVMdev] VLIWPacketizerList: failing to schedule terminators > > > > -----Original Message----- >...
2013 Jul 09
2
[LLVMdev] Floating point ordered and unordered comparisons
...arges support unordered comparisons. I would prefer target independent part not to transform ordered ops into unordered. Is it a good idea? How do other targets support this feature? I don't have a lot of experience dealing with floating points. I will really appreciate any help here. Thanks, Sundeep
2015 Aug 24
2
samba shares does not exist or permission denied when connecting
On 24/08/15 10:49, Sundeep Singh Nanuwa wrote: > Hi, > > Is there any issues using spaces in directories paths? > > On 21/08/15 11:06, Sunny wrote: >> Hi, >> >> We have the following shares listed in smb.conf >> >> users cannot access the samba share directly i.e. >> >&gt...
2015 Jun 28
1
Driver macosx-ups failing on Yosemite
On Jun 28, 2015, at 10:49 AM, Sundeep Mediratta <smedius at gmail.com> wrote: > I think the high CPU usage was caused by the native OS X driver crashing and not working properly. The native driver was not sensing the UPS going on battery or any change in battery percentage. As you can imagine, if the native driver does not s...
2015 Jun 26
2
Driver macosx-ups failing on Yosemite
OSX Yosemite 10.10.3 Nut version 2.6.5 Installed via Macports Device is Cyberpower CP1000AVRLCD Device is visible and is monitored in the OSX control panel Error- macosx-ups -DD -a cyberpower Network UPS Tools - Mac OS X UPS meta-driver 1.0 (2.6.5-Unversioned directory) Warning: This is an experimental driver. Some features may not function correctly. 0.000000 debug level is '2'
2013 Jul 09
0
[LLVMdev] Floating point ordered and unordered comparisons
On Tue, Jul 9, 2013 at 3:00 PM, <sundeepk at codeaurora.org> wrote: > Hi All, > > I noticed LLVM target independent side is converting an ordered less than > "setolt" into unordered greater than "setuge" operation. There are no > target hooks to control going from the ordered mode into unordered. &gt...
2013 Jul 10
1
[LLVMdev] Floating point ordered and unordered comparisons
...use it to transform an unordered operation into an > ordered operation. Thanks for your reply Eli. I will check how to convert unordered operations back to ordered one. I have another related question - is it possible for frontend (clang) to generate unordered operation from the source code? -Sundeep
2015 Jun 27
0
Driver macosx-ups failing on Yosemite
On Jun 26, 2015, at 8:35 AM, Sundeep Mediratta <smedius at gmail.com> wrote: > OSX Yosemite 10.10.3 > Nut version 2.6.5 > Installed via Macports > Device is Cyberpower CP1000AVRLCD > Device is visible and is monitored in the OSX control panel > > Error- > > macosx-ups -DD -a cyberpower Can you plea...
2015 Jun 27
0
Driver macosx-ups failing on Yosemite
On Jun 26, 2015, at 11:07 PM, Sundeep Mediratta <smedius at gmail.com> wrote: > 0.000233 upsdrv_initups(): Power Sources blob: > <CFArray 0x7ffd18605480 [0x7fff7443bed0]>{type = immutable, count = 1, values = ( > 0 : <CFBasicHash 0x7ffd18605360 [0x7fff7443bed0]>{type = immutable dict, count = 10, > ent...
2015 Jun 28
0
Driver macosx-ups failing on Yosemite
...to use the mac with the native control panel if the native driver works OK. > On Jun 27, 2015, at 4:37 PM, Charles Lepple <clepple at gmail.com> wrote: > > On Jun 27, 2015, at 9:17 AM, Charles Lepple <clepple at gmail.com> wrote: > >> On Jun 26, 2015, at 11:07 PM, Sundeep Mediratta <smedius at gmail.com> wrote: >> >>> 0.000233 upsdrv_initups(): Power Sources blob: >>> <CFArray 0x7ffd18605480 [0x7fff7443bed0]>{type = immutable, count = 1, values = ( >>> 0 : <CFBasicHash 0x7ffd18605360 [0x7fff7443bed0]>{type = immut...
2015 Aug 24
0
samba shares does not exist or permission denied when connecting
...e/RIXILE" all the users needs to do is go to \\sambaserver\rixilr but get's the following error message does not exist or permission denied when connecting to [rixilr] Error was Permission denied Is this correct syntax? On 24/08/15 11:18, Rowland Penny wrote: > On 24/08/15 10:49, Sundeep Singh Nanuwa wrote: >> Hi, >> >> Is there any issues using spaces in directories paths? >> >> On 21/08/15 11:06, Sunny wrote: >>> Hi, >>> >>> We have the following shares listed in smb.conf >>> >>> users cannot access the sa...