search for: unders

Displaying 20 results from an estimated 6865 matches for "unders".

Did you mean: under
2013 Mar 14
2
[LLVMdev] Get underlying object for Machine level memory operation
Hi, I am writing a pass that works at machine level and runs as last pass in llc (just before converting llvm specific machine instructions into target specific instructions) In this pass I am trying to get underlying object for memory operations. It turns out that due to various optimizations on machine instructions, the memory operand in the operation is not always getelementptr (for e.g., it
2009 Mar 25
2
[brussels-dev] displaying promiscuous state for a data link
On 03/25/09 12:30, James Carlson wrote: > Girish Moodalbail writes: > >> bash-3.2# dladm show-link >> LINK CLASS MTU STATE PROMISC OVER >> e1000g0 phys 1501 up off -- >> e1000g1 phys 1502 up on -- >> > > That (plus or minus some column alignment) seems
2015 Nov 18
4
Permission Issues with GPO
On 18/11/15 10:24, mourik jan c heupink wrote: > > > On 18-11-2015 10:59, Rowland Penny wrote: >> OK, I am trying to understand this as well, I take it that the uidNumber >> you add is a unique number that is inside the range you have set in >> smb.conf, but what about the gidNumber? do you set it to '515' and is >> this also inside the range? > Yep. gidNumber 515, both inside the range yes....
2013 Mar 14
0
[LLVMdev] Get underlying object for Machine level memory operation
You can use the GetUnderlyingObjects function (notice the S at the end of the name) to collect zero or more underlying objects. This method is similar to GetUnderlyingObject except that it can look through phi and select instructions and return multiple objects. On Mar 14, 2013, at 4:15 AM, rahul <rahul3527 at gmail.com> wrote: > Hi, > > I am writing a pass that works at
2013 Apr 13
0
help on smoothing volatility surface..
This script below pulls yahoo data via a function in quantmod, then massages the data around to forumalate a 3D graph with RGL library, attached is a ggplot to show the data i'm trying to create a surface with in separate line geoms . the issue is that the 3D graph looks very ugly and cut up because of the limited quantities of points on the front month expirations.. can anyone tell me whats
2015 Jan 30
2
[LLVMdev] [PATCH] Bugfix for missed dependency from store to load in buildSchedGraph().
...When not using AA, by the time we get to MIsNeedChainEdge, we're already destined to return true from MIsNeedChainEdge (except for load/load edges). When using AA, we might not return true (depending on what AA returns), but the AA check is specific to the two instructions being queried, and AA understands how to handle selects/phis/etc. in a reasonable way. Nevertheless, I'm somewhat worried about a subtlety here: I believe that we cannot fail to addChainDependency on the AliasChain because AA is smarter about underlying objects because the AliasChain actually can represent many other depe...
2012 Jun 21
1
Distribution and location scale family
Hi, For some dataset I have made a histogram, boxplot en qqplot. http://r.789695.n4.nabble.com/file/n4634093/Naamloos.jpg Investigate the data with the given functions for making QQ-plots and find an appropriate location-scale family for the underlying distribution of this sample. Apart from giving a proper location-scale family, also specify the member of the location-scale family that is
2013 May 09
5
[LLVMdev] [PATCH] Minor fix to StackColoring to avoid needlessly clearing mem operands.
...ourceValue and PseudoSourceValue::isConstant returns true. This enables MachineLICM to hoist loads from GOT out of a loop (see test case in stackcoloring-test.patch). Please review. Question: Why does it need to clear a mem operand if the underlying object is not an AllocaInst? I am not sure if I understand the reason for this. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130508/1321c612/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: stackcoloring.p...
2013 Feb 27
4
[LLVMdev] Question about intrinsic function llvm.objectsize
On Feb 27, 2013, at 4:05 AM, Nuno Lopes <nunoplopes at sapo.pt> wrote: > Hi, > > Regarding the definition of object for @llvm.objectsize, it is identical to gcc's __builtin_object_size(). So it's not wrong; it's just the way it was defined to be. > > Regarding the BasicAA's usage of these functions, I'm unsure. It seems to me that isObjectSmallerThan()
2012 Apr 12
3
Reading SPSS: underlying numerical codes
Dear people, I have got a question concerning the underlying numerical codes when reading an SPSS file into R. I used the package foreign and when I look at a variable I get the verbal codes. I would like to know how it is possible to get the underlying numerical codes as output, which are the same as in my SPSS file. Thank you very much in advance for your help! Marion [[alternative HTML
2010 Jul 06
2
accessing underlying code
Dear R Developers: Is there a way to look at the underlying code from such items as R_setup_starma, please? Thanks, Erin Erin M. Hodgess, PhD Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: hodgesse@uhd.edu [[alternative HTML version deleted]]
2013 Feb 04
1
Does btrfs adapt to size changes of underlying block device(s)?
Hello, I''ve got a quick question: Does btrfs adapt to size changes of the underlying block device(s)? My specific situation is as follows: I''ve got a luks-volume on which I want to put btrfs. If this luks-volume grows in the future (i.e. by ''cryptsetup resize''), will btrfs automatically (and reliably) "see" this and be able to use the additional
2013 Feb 27
2
[LLVMdev] Question about intrinsic function llvm.objectsize
On Feb 27, 2013, at 12:37 PM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: > Hi, Nuno and Arnold: > > Thank you all for the input. > > Let me coin a term, say "clique" for this discussion to avoid unnecessary confusion. > A clique is statically or dynamically allocated type-free stretch of memory. A "clique" > 1) is maximal in the sense
2020 Mar 18
2
[GSOC] "Project: Improve inter-procedural analyses and optimisations"
On 03/16, Fahad Nayyar wrote: > I can see that Johanned have put up some issues for GSOC aspirants. I think > that [2] <https://github.com/llvm/llvm-project/issues/179> ([Attributor] > Cleanup and upstream `Attribute::MaxObjectSize`) will be a very good issue > for me, It seems doable and I can get familiar with the whole process of > writing a patch for an issue. How should I
2015 Feb 10
2
[LLVMdev] [PATCH] Bugfix for missed dependency from store to load in buildSchedGraph().
...228686). Regarding the commenting you requested, I attach a patch. Feel free to make changes. I found it difficult to explain what the code does in isolated places, and thus kept my commenting quite short. This makes me feel like the code needs a bit of refactorization to make it more simple and understandable. Looking at the possibility of refactorization / redesign, I wonder what are the main strong points of this implementation right now, in your opinion? The mapping to underlying objects looks nice to me, but I am not sure I understand why to go through the trouble of clearing lists and usin...
2004 Aug 06
1
Re: DarkIce 0.6 and Lame 3.89: underlying sink error
Samuel, I had the same problem. I think it's because the port in darkice does not match the port icecast or shoutcast is listening on. I thought it was 8000 but it was actually 8001. Check that. Matt -----Original Message----- From: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org]On Behalf Of Samuel Hathaway Sent: Friday, October 05, 2001 2:43 PM To: icecast@xiph.org Cc:
2011 May 01
2
The SR operation cannot be performed because a device underlying the SR is in use by the host.
My attempt to add local Storage hard drive........ [root@iDEAL0510XEN1 ~]# xe host-list uuid ( RO) : 516c8c44-5f93-4177-9ee0-02f0a6efe976 name-label ( RW): iDEAL0510XEN1 name-description ( RW): Default install of XenServer [root@iDEAL0510XEN1 ~]# xe sr-create host-uuid=516c8c44-5f93-4177-9ee0-02f0a6efe976 content-type=user type=lvm device-config:device=/dev/sdc
2001 Oct 05
2
DarkIce 0.6 and Lame 3.89: underlying sink error
Hey, I've compiled DarkIce 0.6 dynamically linked to LAME 3.89. I'm running Slackware 8 and using gcc 2.95.3. Running DarkIce yields the following output: DarkIce 0.5 live audio streamer, http://darkice.sourceforge.net Copyright (c) 2000-2001, Tyrell Hungary, http://tyrell.hu Using config file: darkice.cfg Using POSIX real-time scheduling, priority 98 LAME version 3.89 (beta
2017 May 24
3
How to show underlying QEMU command line using virsh
Hello, everybody I use virt to run my VM's and QEMU as a hypervisor. There is a file describing my virtual machine: /etc/libvirt/qemu/centos7.0.xml As you know it contains xml representation of my VM. Is there any way to show underlying qemu command that virsh runs using that file? For example: qemu-system-x86-64 -m 1024 -smp 2 -... If no, is there any way to figure it out during VM run ?
2009 Jun 08
2
libogg++ release 1.1.0
...ibogg++ to do the Ogg > > stuff > > That sounds fine - as long as your files have a Skeleton track, you > can put whatever you want into Ogg. Have you specified your special > skeleton track and the data that you're putting into Ogg somewhere in > more details? What do you understand by a Manifold? I'm curious about > more documentation. > http://www.ihear.com/FreeCLAS/wiki/ALingA has most of the important bits. The skeleton track specifies the counts of the number of interleaved LingA and signal streams (which may or may not be interleaved), the underlying manif...