search for: threre

Displaying 17 results from an estimated 17 matches for "threre".

Did you mean: there
2005 Mar 10
2
Newbie question - form validation
Hi, I am sorry for maybe stupid question. I am new in rails. I am trying to create very simple weblog systeme. I know threre are plenty of them, but It''s good to study. I create following rule in models/post.rb validates_length_of :header, :in => 3..50, :allow_nil => false, :message => "At least 3 characters" It''s working fine with default scaffolt add form. Then I tryed to create...
2016 Jun 20
7
Suggestion / Help regarding new calling convention
...nned to set callee saved registers to none for local functions, currently I am doing it in following way: if (F->hasLocalLinkage() && !F->hasAddressTaken()) { DEBUG(dbgs() << "Function has LocalLinkage \n"); F->setCallingConv(CallingConv::GHC); } but we think threre should be clean and properway to do this perhaps like: if (F->hasLocalLinkage() && !F->hasAddressTaken()) { DEBUG(dbgs() << "Function has LocalLinkage \n"); F->setCallingConv(CallingConv::NO_Callee_Saved); } So I would like to know any better suggestions...
2004 Mar 18
1
latest openssl vulnerability
Is it true that (dynamic) binaries are vulnerable if and only if they are linked with libssl.so.3, not with libcrypt or libcrypto? Thanks for your help. Andrew.
2005 Mar 03
1
total variation penalty
...of questions in this regard: * Is it more natural to consider the total variation penalty in the context of quantile regression than in the context of OLS? * Could someone please point to a good overview paper on the subject? Ideally something that compares merits of different penalty functions. Threre seems to be an ongoing effort to generalize this approach to 2d, but at this time I am more interested in 1-d smoothing. Thanks, Vadim [[alternative HTML version deleted]]
2009 Jan 06
2
[LLVMdev] LLVM Optmizer
...ESTE: ; 20 : { ; 21 : varx = varx + parami + 1 ; ; 22 : vary = varx + nI; ; 23 : } ; 24 : ; 25 : return varx ; ; 26 : } ret 0 _TESTE ENDP _TEXT ENDS Running the same code, the objetc generated with MSVC is 600 times faster than that generate with the LLVM compiler Is threre any way to get the same optimzation with the LLVM? Manoel Teixeira
2017 Jan 06
2
LLVMTargetMachine with optimization level passed from clang.
getOptLevel() gets the level from TargetMachine which is created by the Backendutil in clang with either "Default", "None" or "Aggressive". Threre is no correspondence for "Less". This boils down to , if I pass "-O1", the Target Machine is created with CodeGenOpt::Default. I am available on IRC @ sgundapa. -----Original Message----- From: jpaquette at apple.com [mailto:jpaquette at apple.com] Sent: Thursday, January 5...
2017 Jan 06
3
LLVMTargetMachine with optimization level passed from clang.
...g. > On Jan 6, 2017, at 7:59 AM, Sumanth Gundapaneni via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > getOptLevel() gets the level from TargetMachine which is created by > the Backendutil in clang with either "Default", "None" or "Aggressive". Threre is no correspondence for "Less". > This boils down to , if I pass "-O1", the Target Machine is created with CodeGenOpt::Default. I don’t see why is it a problem? That’s why I asked earlier if you want it on for O1 *and above* or only O1. You just have to enable it when CodeG...
2016 Jun 24
2
Suggestion / Help regarding new calling convention
...none for local functions, > currently I am doing it in following way: > > if (F->hasLocalLinkage() && !F->hasAddressTaken()) { > DEBUG(dbgs() << "Function has LocalLinkage \n"); > F->setCallingConv(CallingConv::GHC); > } > > but we think threre should be clean and properway to do this perhaps like: > > if (F->hasLocalLinkage() && !F->hasAddressTaken()) { > DEBUG(dbgs() << "Function has LocalLinkage \n"); > F->setCallingConv(CallingConv::NO_Callee_Saved); > } > > So I would li...
2010 Jul 13
1
[Vulgarly-Selfish-Commercial] Project: Private Super computer (HPC) in a Private cloud
Greetings, I am atempting to build the above captioned environment. I will contribute to this list my learnings. I need income as I need to fund this project. Threre are various revenue sharing models I have in mind. One size just cant fit all after all. (angel investors or whatever, anybody)? My offer: "Every reply for this thread will get INR 11/- from me iff only I could remit my money in a single click to the thread posters and me." Learners sh...
2008 Jan 17
1
What are the theora installation files
...doc/libtheora so when i check the /usr/local/lib there were following files there libtheora.a libtheora.la libtheora.so libtheora.so.0 libtheora.so.0.2.0 libtheora.so.0.3.2 After uninstall theora still there was a remaining file " libtheora.so.0.2.0". so why it was not removed...? And threre were some libtheora files in the /usr/lib directory also. libtheora.so.0 libtheora.so.0.2.0 after uninstall theora any of these were not removed so what are them..? are they the libraries which was added with players...? Because I have installed several players.( VLC, MPlayer) Buddhika Priyadar...
2007 Nov 21
3
Mongrel Timeout?
Hi, I am using a railsapp to call an external app and print some barcode-labels. My problem is, after a while there seems to be a timeout. Then I need to stop the Mongrel-Server and restart it. Below you can see the error message, when i stop the server. Has somebody seen this before? Greetings, Oli C:\etikett>mongrel_rails start -d -e production ** WARNING: Win32 does not support daemon
2012 Nov 30
6
Illegal Opcode,the 2.
Hi to all, from syslinux 4.06 and 5.00 pre 12 came the same dump. Background: While trying to install syslinux on small (700 MB) FAT16 Partition on HP Server got Red Screen of Death with a register dump. Illegal OpCode EAX=00001F01 EBX=000001A4 ECX=00000000 EDX=00000019F EBP=0000FBFA ESI=000007BE EDI=00000800 DS=0000 ES=0000 FS=0000 GS=0000 CS:EIP=0000:000083A6 SS:ESP=1000:0000AFF6
2017 Jan 06
2
LLVMTargetMachine with optimization level passed from clang.
..., Sumanth Gundapaneni via llvm-dev <llvm- > dev at lists.llvm.org> wrote: > >> > >> getOptLevel() gets the level from TargetMachine which is created by > >> the Backendutil in clang with either "Default", "None" or "Aggressive". > Threre is no correspondence for "Less". > >> This boils down to , if I pass "-O1", the Target Machine is created > with CodeGenOpt::Default. > > > > I don’t see why is it a problem? That’s why I asked earlier if you want > it on for O1 *and above* or only O1....
2016 Jun 21
2
Suggestion / Help regarding new calling convention
...ect calls that cast the function pointer. I believe SAFECode has some code somewhere that does this if you need it. > > >> DEBUG(dbgs() << "Function has LocalLinkage \n"); >> F->setCallingConv(CallingConv::GHC); >> } >> >> but we think threre should be clean and properway to do this perhaps like: >> >> if (F->hasLocalLinkage() && !F->hasAddressTaken()) { >> DEBUG(dbgs() << "Function has LocalLinkage \n"); >> F->setCallingConv(CallingConv::NO_Callee_Saved); >> } &g...
2017 Jan 05
3
LLVMTargetMachine with optimization level passed from clang.
I want the optimization to be turned on at -O1 and above. In my case, it is a target independent back-end pass. (Eg: MachinePipeliner) On 2017-01-04 18:10, Mehdi Amini wrote: >> On Jan 4, 2017, at 4:03 PM, Sumanth Gundapaneni via llvm-dev >> <llvm-dev at lists.llvm.org> wrote: >> >> I see the BackendUtil.cpp of Clang creates the TargetMachine with >> the
2004 Aug 18
4
Gamest and QoS
Hi I share my bandwith (adsl 512/128) between 12 users. I set up simple qos script for incoming (IMQ) and outgoing traffic using htb in root, 4 classess and esfq qdisc at leafs. Interactive traffic goeas to class1 , http,mail etc. to class2, p2p, ftp to class3, and rest to class4. Classess divide link in proportion 20% (prio 1), 40% (prio 2), 20% (prio 3) ,20% (prio 4) This works
2009 Apr 18
111
[Bug 21273] New: Driver can't detect video output and xserver doesn't start
http://bugs.freedesktop.org/show_bug.cgi?id=21273 Summary: Driver can't detect video output and xserver doesn't start Product: xorg Version: git Platform: PowerPC OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: