search for: preselection

Displaying 20 results from an estimated 68 matches for "preselection".

2002 Sep 30
2
[LLVMdev] PreSelection
Hello, My llvm tree doesn't compile; it exits after an error saying: /bin/sh: PreSelection: does not exist while in the lib/CodeGen directory. How can this error be overcome?
2006 Jun 05
0
Heads up: OpenBSM 1.0a6, per-auditpipe preselection imported to CVS (fwd)
...udit and intrusion detection on FreeBSD. Robert N M Watson ---------- Forwarded message ---------- Date: Mon, 5 Jun 2006 17:01:04 +0100 (BST) From: Robert Watson <rwatson@FreeBSD.org> To: current@FreeBSD.org Cc: trustedbsd-audit@TrustedBSD.org Subject: Heads up: OpenBSM 1.0a6, per-auditpipe preselection imported to CVS This is a heads up to current@ users regarding two moderate sized sets of changes that entered FreeBSD CVS today: (1) I imported OpenBSM 1.0 alpha 6. (2) I imported support for per-auditpipe preselection. Detailed commit messages are below. Robert N M Watson ---------- Forwar...
2002 Oct 27
0
[LLVMdev] Compile error in PreSelection.cpp
PreSelection.cpp uses the form "++(ConstantExpr*)->op_begin()" in a couple of places: gcc2 considers this to be an illegal use of a constant reference (the temporary iterator) as an lvalue. Fix is to use "(ConstantExpr*)->op_begin() + 1" instead. -- Casey Carter Casey at Carter.n...
2005 Feb 22
4
[LLVMdev] Area for improvement
...appen with any instructions (including the use of large integer (or any FP) constants on RISC machines, addressing globals with PIC code, handling extended/truncated operations (for RISC machines with a single integer size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc Preselection pass sorta-kinda work around SOME of this, but they really are just as bad as the problem: they solve some cases and make other cases worse. The only way to make preselection or lowermultidimrefs work is to duplication all of the knowledge of how the instruction selector will select the code (...
2005 Feb 22
0
[LLVMdev] Area for improvement
...s > (including the use of large integer (or any FP) constants on RISC > machines, addressing globals with PIC code, handling > extended/truncated operations (for RISC machines with a single integer > size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc > Preselection pass sorta-kinda work around SOME of this, Actually, they are capable of working around much of this, and most such optimizations are actually quite architecture-independent, e.g., LowerMultiDimRefs, which is a major optimization for array-intensive languages. I don't claim such choices ar...
2007 Apr 26
2
XVideo vs OpenGL
Hi, I have a Pentium III PC with NVIDIA GeForce 7300GT on an AGP 8x and am running NVIDIA driver 9755 on CentOS 5.0 x86. What is the most efficient playback method for the various players, XVideo or OpenGL? RealPlayer has a "Use XVideo" tick box under the "Hardware" tab preselected, while MPlayer uses xv - X11/Xv, gl - X11(OpenGL) and other Video drivers. What is the most
2009 Jun 08
2
Building a custom install CD
Greetings, I am looking for resources on how to build my own Centos install CD for a preselected package set that I want to install. I think Red Hat may have had this functionality at some point but it has been a while since I have needed to do this. I found this on how to build my own kernel - http://wiki.centos.org/HowTos/BuildingKernelModules - which I will need to exercise as well, but I
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
Hi All: I'm using an old version of Ubuntu, 14.04, and I can't figure out a keyboard sequence that "selects all" analogously to what ctrl-a does on windows ? If anyone can be bothered running below and see if they have a way to select all four fruits at once, it's appreciated. I've spent quite a bit of time searching the net, going on AskUbuntu etc but no luck. Thanks.
2002 Sep 28
2
[LLVMdev] Directory and library rename:
By request, I've renamed lib/CodeGen/PreSelection to lib/CodeGen/PreOpts (admittedly this was my choice :-), and the corresponding archive from preselect to preopt. If you see linker errors saying preselect.o is not found, this is the reason. This shouldn't happen if you update your entire tree at once. --Vikram
2011 Jun 06
2
qplot fill and colour not working as expected
I am just learning to use qplot and can't get the fill/colour to work. Below is the R code for a scatter plot and bar graph. library(ggplot2) x<-c(1,2,3,4,5,6,7) y<-c(1,2,3,2,5,6,3) qplot(x,y, main="Scatter Plot Test", xlab="X Label Test", ylab="Y Label Test", colour="blue")z<-c("van", "van", "van",
2007 May 03
7
How to create a drop-down list with Markaby?
Hi I couldn''t figure out, how to create a drop-down list with Markaby. How would I create something like this: <select name="character"> <option value="marvin">Marvin the paranoid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod
2006 Aug 16
1
Warning: MFC of security event audit support RELENG_6 in the next 2-3 weeks
...n -CURRENT for several months. Right now, I'm just waiting on a confirmation from Sun regarding formal allocation of a BSM header version number so as to avoid accidental version number conflicts in the future, which I hope to get this week, as well as a bug fix in the handling of per-pipe preselection, which Christian Peron is currently working on. The audit implementation will be considered an experimental feature in 6.2-RELEASE, but in practice runs quite well, so is ready for more wide-spread deployment. For those who are unfamiliar with it, security event auditing ("audit") is...
2006 Aug 16
1
Warning: MFC of security event audit support RELENG_6 in the next 2-3 weeks
...n -CURRENT for several months. Right now, I'm just waiting on a confirmation from Sun regarding formal allocation of a BSM header version number so as to avoid accidental version number conflicts in the future, which I hope to get this week, as well as a bug fix in the handling of per-pipe preselection, which Christian Peron is currently working on. The audit implementation will be considered an experimental feature in 6.2-RELEASE, but in practice runs quite well, so is ready for more wide-spread deployment. For those who are unfamiliar with it, security event auditing ("audit") is...
2005 Feb 22
1
[LLVMdev] Area for improvement
On Feb 22, 2005, at 9:09 AM, Vikram S. Adve wrote: >> The only way to make preselection or lowermultidimrefs work is to >> duplication all of the knowledge of how the instruction selector will >> select the code (e.g. the advice about allowing constant indices to >> be grouped together). > > This is why you need a separate, low-level optimization framework -...
2019 Jul 18
2
ubuntu equivalent of ctrl-a on windows
thanks david. that worked for me too and I like your detective approach. I'll remember that the next time I need another equivalent. On Thu, Jul 18, 2019 at 4:13 PM David Winsemius <dwinsemius at comcast.net> wrote: > > On 7/18/19 1:02 PM, Mark Leeds wrote: > > Hi All: I'm using an old version of Ubuntu, 14.04, and I can't figure > out a > > keyboard
2005 Feb 22
3
[LLVMdev] Area for improvement
Vikram S. Adve wrote: >> The only way to make preselection or lowermultidimrefs work is to >> duplication all of the knowledge of how the instruction selector will >> select the code (e.g. the advice about allowing constant indices to >> be grouped together). > > > This is why you need a separate, low-level optimization framew...
2005 Feb 22
1
[LLVMdev] Area for improvement
...ng the use of large integer >> (or any FP) constants on RISC machines, addressing globals with PIC code, >> handling extended/truncated operations (for RISC machines with a single >> integer size), etc. Note that hacks like "LowerMultiDimRefs" and the sparc >> Preselection pass sorta-kinda work around SOME of this, > > Actually, they are capable of working around much of this, and most such > optimizations are actually quite architecture-independent, e.g., > LowerMultiDimRefs, which is a major optimization for array-intensive > languages. I obvious...
2006 May 01
1
unable to set outgoing callerid
Hi *, now for a long time i am trying to set the outgoing callerid, without luck. I am here in Germany, my asterisk has a pri interface connected to a PMX installed by Telekom. All telephone calls are preselected to EcoVoice. I am using asterisk 1.2.7.1, zaptel 1.2.5 and libpri 1.2.2. A week ago we tried with a device able to simulate a telephone system so send out a callerid, and that
2005 Feb 22
0
[LLVMdev] Area for improvement
I figured getelementptr exists as it does to facilitate data flow analysis, but it does need to be broken down before instruction selection. It's not just the missed optimization opportunities. It also introduces a huge amount of complexity into instruction selection as they deal with its complexity. It would also take care of many of the FIXMEs in LoopStrengthReduce. Vikram Adve
2006 Mar 01
4
another select_list question - bad bad booleans
I have a select list for a boolean column in postgresql in the ''model'' ... YES_NO = [ [ "Yes", "1" ], [ "No", "0" ] ].freeze in the ''view code'' ... <%= options = [[''Accepted?'', '''']] + Placement::YES_NO select("placement", "accepted",