search for: unquestionably

Displaying 20 results from an estimated 47 matches for "unquestionably".

2016 Nov 02
3
RFC #2: Improving license & patent issues in the LLVM community
> On Nov 1, 2016, at 12:21 PM, Joerg Sonnenberger via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On Mon, Sep 12, 2016 at 09:16:47AM -0700, Chris Lattner via llvm-dev wrote: >> The goals of this effort are outlined in the previous email but, in short, we aim to: >> - encourage ongoing contributions to LLVM by preserving low barrier to entry for contributors.
2015 Feb 12
4
Thread moderation and list etiquette (Reference - Another Fedora Decision)
On Thu, Feb 12, 2015 at 10:51 AM, Brian Mathis <brian.mathis+centos at betteradmin.com> wrote: > CentOS is unquestionably one of the most used Linux distros > in the world, and yet the mailing list is relatively quiet. To me this is > a symptom of a problem, and I feel that it's partially a result of the same > regular people, I think it is generally a good thing when the bulk of the conversation here i...
2016 Jul 25
2
[RFC] Make Lanai backend non-experimental
On 26 July 2016 at 00:08, Chris Lattner via llvm-dev <llvm-dev at lists.llvm.org> wrote: > It is unquestionably easier for a contributor to land their backend in-tree > than to maintain it out-of-tree. This is because landing it in tree shifts > the maintenance burden from the *contributor* to the *community*. If there > is low value to the community, then this is a "bad deal” for the project...
2013 Jun 05
2
[PATCH RFC] virtio-pci: new config layout: using memory BAR
...ards, > >> > >> Anthony Liguori > > > > Why do you bring this up? No one advocates any ABI breakage, > > I only suggest extensions. > > It's an ABI breakage. You're claiming that the guests you tested > handle the breakage reasonably but it is unquestionably an ABI breakage. > > Regards, > > Anthony Liguori Adding BAR is not an ABI breakage, do we agree on that? Disabling IO would be but I am not proposing disabling IO. Guests might disable IO. I propose a way to make virtio still work if they do. This is *fixing* things. Not breakin...
2013 Jun 05
2
[PATCH RFC] virtio-pci: new config layout: using memory BAR
...ards, > >> > >> Anthony Liguori > > > > Why do you bring this up? No one advocates any ABI breakage, > > I only suggest extensions. > > It's an ABI breakage. You're claiming that the guests you tested > handle the breakage reasonably but it is unquestionably an ABI breakage. > > Regards, > > Anthony Liguori Adding BAR is not an ABI breakage, do we agree on that? Disabling IO would be but I am not proposing disabling IO. Guests might disable IO. I propose a way to make virtio still work if they do. This is *fixing* things. Not breakin...
2016 Sep 12
5
RFC #2: Improving license & patent issues in the LLVM community
Hello everyone, This email is a continuation of a discussion from almost a year ago, started back here: http://lists.llvm.org/pipermail/llvm-dev/2015-October/091536.html As described in that email, this is a complicated topic and deals with sensitive legal issues. I am not a lawyer, and this email is not intended to be legal advice in the formal sense. That said, I have spoken with many
2015 Feb 11
3
Thread moderation and list etiquette (Reference - Another Fedora Decision)
Hi, The thread titled "Another Fedora Decision" is rapidly turning into a political and opinion driven flame fest that is unsuited for the CentOS mailing list. This list should try and remain focused on CentOS, what we have and keep the area sane for new users as well as old hands to participate in a fair and thoughtful conversation around the CentOS Linux platform and the CentOS
2019 May 13
2
JavaFX on C7 ?
...lps, and please let us know if you find a better or workable way[6] before we do. [1] https://access.redhat.com/articles/1299013#FAQ [2] confirmed by Fred Smith, when he opened this thread. [3] https://github.com/atejeda/openjfx-el [4] https://www.openh264.org/ [5] I need it to work, but I need it unquestionably legal. I may disagree with Patents on math and logic, but they are legal in the country I work in, and thus must not be breached when working for its government. AFAIK some of the needed stuff in ffmpeg is still covered. [6] besides ditching the javafx portions of the program, which is what I am...
2010 Oct 13
3
[LLVMdev] Missed devirtualization opportunities
...n a function. A clobber outside of an invariant region would "unassign" the location and all of its may-aliases. A store would "assign" the location and all of its must-aliases and "unassign" all of its may-aliases. A load would then use the SSA assignment if one is unquestionably available, or remain in place as a load and then "assign" the load result back to the pointer. No attempt would be made to remove stores during this pass. AliasSetTracker would be helpful as soon as I could get it to optionally keep all of its sets "must alias" instead of down...
2012 Dec 06
0
[LLVMdev] Value of structure passed byval to a recurse function not initialized when accessed through GDB
On Thu, Dec 6, 2012 at 12:33 AM, Karthik Bhat <karthikthecool at gmail.com> wrote: > Hi David, > > I think it might not be exactly PR13303 which might be causing the > corruption of struct when accessed through GDB. > This seems to be an ABI problem in clang. > The problem seems to be that when we have pass by value of struct > (having indirect arguments) stack is not
2013 Jun 05
2
[PATCH RFC] virtio-pci: new config layout: using memory BAR
On Wed, Jun 05, 2013 at 07:59:33AM -0500, Anthony Liguori wrote: > "Michael S. Tsirkin" <mst at redhat.com> writes: > > > On Tue, Jun 04, 2013 at 03:01:50PM +0930, Rusty Russell wrote: > > You mean make BAR0 an MMIO BAR? > > Yes, it would break current windows guests. > > Further, as long as we use same address to notify all queues, > > we would
2013 Jun 05
2
[PATCH RFC] virtio-pci: new config layout: using memory BAR
On Wed, Jun 05, 2013 at 07:59:33AM -0500, Anthony Liguori wrote: > "Michael S. Tsirkin" <mst at redhat.com> writes: > > > On Tue, Jun 04, 2013 at 03:01:50PM +0930, Rusty Russell wrote: > > You mean make BAR0 an MMIO BAR? > > Yes, it would break current windows guests. > > Further, as long as we use same address to notify all queues, > > we would
2019 Feb 25
2
funnel shift, select, and poison
...ouble like funnel shift (two variables concatenated and shifted by some amount). Eg, if in pseudo IR we have: %funnel_shift = fshl %x, %y, %sh ; this is problematic because either x or y can be poison, but we may not touch the poison when sh==0 %rotate = fshl %x, %x, %sh ; if x is poison, the op is unquestionably producing poison; there's no sh==0 loophole here On Mon, Feb 25, 2019 at 1:12 PM Nuno Lopes <nunoplopes at sapo.pt> wrote: > Thanks Sanjay! > > I did a quick study of these funnel shifts: > The generic lowering to SDAG is correct for the optimization below. It > actually...
2016 Jul 25
3
[RFC] Make Lanai backend non-experimental
On Mon, Jul 25, 2016 at 11:46 AM, Chandler Carruth via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On Tue, Jul 19, 2016 at 9:42 AM Renato Golin via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> On 19 July 2016 at 17:04, Martin J. O'Riordan via llvm-dev >> <llvm-dev at lists.llvm.org> wrote: >> > Presumably if my out-of-tree backend
2012 Dec 06
2
[LLVMdev] Value of structure passed byval to a recurse function not initialized when accessed through GDB
Hi David, I think it might not be exactly PR13303 which might be causing the corruption of struct when accessed through GDB. This seems to be an ABI problem in clang. The problem seems to be that when we have pass by value of struct (having indirect arguments) stack is not aligned properly. I tried realigning the stack for indirect arguments in(TargetInfo.cpp) - ABIArgInfo
2005 Oct 23
1
Coloring leaves, twigs and labels in plot.dendrogram()
...plot.dendrogram() or plot.hclust()---I asked R-help about it a few weeks ago and didn't get any response---so I hacked that functionality into the plot.dendrgram code (see below for hacked function plus examples).... Is there any chance this functionality could be added to the base code? Unquestionably it can be done more elegantly than below, but surely it would be a useful feature to have.... Or is there an easier way of doing this that I have missed? Walton Green * * * my.dend.plot <- function (x, type = c("rectangle", "triangle"), center = FALSE, edge.root = is...
2019 Feb 25
3
funnel shift, select, and poison
...ariables concatenated and shifted by > some amount). > Eg, if in pseudo IR we have: > %funnel_shift = fshl %x, %y, %sh ; this is problematic because either x or > y > can be poison, but we may not touch the poison when sh==0 > %rotate = fshl %x, %x, %sh ; if x is poison, the op is unquestionably > producing poison; there's no sh==0 loophole here > > > > On Mon, Feb 25, 2019 at 1:12 PM Nuno Lopes <nunoplopes at sapo.pt> wrote: > Thanks Sanjay! > > I did a quick study of these funnel shifts: > The generic lowering to SDAG is correct for the optimization b...
2015 Feb 13
0
Thread moderation and list etiquette (Reference - Another Fedora Decision)
On 12/02/15 18:08, Les Mikesell wrote: > On Thu, Feb 12, 2015 at 10:51 AM, Brian Mathis > <brian.mathis+centos at betteradmin.com> wrote: >> CentOS is unquestionably one of the most used Linux distros >> in the world, and yet the mailing list is relatively quiet. To me this is >> a symptom of a problem, and I feel that it's partially a result of the same >> regular people, > > I think it is generally a good thing when the bulk of t...
2007 Jul 19
2
Information
I have Windows XP on my computer. I am trying to access the audio on a file that my client has sent me. The message says: Codec is missig. Speex Voice A109 is not installed on your computer. When I try to install it from the internet, it tells me it cannot be installed. Can you give me any help on installing Speex Voice A109 so I can access the audio? Ann Felkins 308-235-4416 e-mail:
2012 Apr 20
0
[Bug 1999] New: When speaking v2, send client version first to avoid long delay with some proxies
...nds -- when communicating through certain proxies which try to guess the protocol in use before punching the connection through to the requested server. Particularly stupidly configured proxies may even drop the connection if they never see the client version string from our end. Such proxies are unquestionably broken but they are also painfully common. The attached patch adds an option "SendVersionFirst" which, if we are speaking v2, inverts the old behavior and sends our client version string first, rather than waiting for the server to send its string. I have defaulted it to enabled. This...