search for: intolerable

Displaying 20 results from an estimated 159 matches for "intolerable".

2020 Feb 13
3
setOperands(int, Value*)
Hello, I am trying to reset the operands of instructions. What I am doing is, I am finding all Uses of a specific operand in an Instruction and resetting it with a new value using "setOperands(int, Value*)". I am doing as: for (auto vmitr=vm.begin(), vsitr=vs.begin(); vmitr!=vm.end() && vsitr!=vs.end(); vmitr++, vsitr++){ // I have two *Value ( operands) for ( auto myitr
2020 Jan 29
2
Value &operator=(const Value &) = delete;
Does it mean we can not dereference the Value variables? Value *val = some operand of an instruction; Value *val2= some operand of another instruction; I am trying to rewire the operand values of an instruction using: *val = *val2; It seems that this is not allowed. Thanks, -- Abid M. Malik ****************************************************** "I have learned silence from the
2013 Nov 21
3
Google Chrome
...Fedora GNOME 3 debacle. But I'm starting to miss Google Chrome pretty seriously. Firefox is just not what it once was. It's slow. Spell check is weak. Sometimes it straight up fails to display pages after going "back". There are numerous details like this that just make FF almost intolerable. And based on current browser usage statistics I don't think I'm the only one who sees the difference which means the problem is only going to get worse. Unfortunately Chrome is not available for CentOS 6.4: Error: Package: google-chrome-stable-31.0.1650.57-1.x86_64 (google-chrome)...
2020 Jan 19
3
Instruction arguments
Hello, I am loop over the arguments of a call instruction : ----> for (Value *arg: c->args()){ errs() << *arg << "\n"; arg->print(llvm::errs(), false); errs()<<"\n"; } -----> How can I convert the arg for binary comparison(== etc.)? If I am correct, it is not a string. If the argument is "i32 1",
2012 Sep 13
1
[LLVMdev] Clang support for CUDA
Hi: Does Clang support CUDA? I am looking for a front end for my compiler that can take CUDA programming framework. Thanks, -- *Abid ****************************************************** "I have learned silence from the talkative, toleration from the intolerant, and kindness from the unkind"---Gibran "Success is not for the chosen few, but for the few who choose" --- John
2017 Dec 06
0
FW: Help for setting up windows unattended installation
On Wed, Dec 6, 2017 at 2:58 PM, Kenneth Vandb?k <valnurat at gmail.com> wrote: > I have changed my setup.menu file as mentioned, but I get this error now: > > command line: "BOOT_IMAGE= wimboot > initrd=Windows7SP2/boot/bcd,Windows7SP2/boot/boot.sdi,Windows7SP2/sources/boot.wim" > Unrecognised argument >
2016 Mar 18
1
Where are People Storing CTDB's Accounting Files?
Hi All, We're using CTDB to cluster protocols over a large SAN and have had some pain related to a bit of a design flaw: we store CTDB and protocol-specific accounting files (recovery locks, state files, etc) on the same filesystem that we're offering through CTDB itself. This makes our front-end services pretty intolerant of flapping in the back-end filesystem, which is obviously not
2005 Oct 04
1
LVM & Knoppix
...ion and CentOS4 sorts it out just fine. [root at mavis ~]# mount /dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw) <snip> /dev/hdb1 on /boot type ext3 (rw) However, if I boot e.g. KNOPPIX, I'm unable to mount anything except the /boot partition on hdb1. Is there any way out of this intolerable situation other than doing a full backup, repartitioning the hard drive without that damnable LVM and restoring the whole thing from the backup?
2006 Jan 13
1
TDMoE - best signalling method?
I'm just experimenting with dynamic spans using TDMoE, which looks ideal for clustering Asterisk boxes with low latency (i.e. 1ms for TDMoE compared with 20ms for IAX). When using normal E1s and T1s, I've always used ISDN signalling: either EuroISDN or NI2. So naturally I tried that over the TDMoE. I've found that I get a lot of HDLC errors and the D-channel is up and down like a
2015 Feb 28
1
[LLVMdev] LLVM short comings regarding polyhedral and vectorization optimizations
Dear All; Is there any work that discusses ​LLVM framework's short comings regarding auto vectorization and polyhedral optimizations? Regards, > -- Abid M. Malik ****************************************************** "I have learned silence from the talkative, toleration from the intolerant, and kindness from the unkind"---Gibran "Success is not for the chosen few, but
2020 Jan 23
2
Replacing operands in a call instruction
Hello, I am trying to replace a pointer argument of a call instruction with another pointer argument( new argument value for the call instruction). What is the best way to do it? I could not find any hint/guidance on the web or LLVM manual. Thanks, -- Abid M. Malik ****************************************************** "I have learned silence from the talkative, toleration from the
2006 May 27
36
Might be buying a Mac
I might be buying a Mac tomorrow. I checked out the new 13.3in MacBook at the new Apple Store on 5th ave in NYC. I''m torn between the smaller MacBook and the MacBook Pro. We have a pro at work and I''m not that thrilled with the way it feels. I like the keyboard much better on the 13inch. However, I think doing development on that small of a screen could get frustrating. Any
2011 Oct 25
2
Thunderbird slow in talking with dovecot IMAP AND to sendmail
I'm trying to find out what's causing this slowdown -- it's INTOLERABLE.... over 1 minute and less than 1% done. (400MB file)... After trying 3 times, I gave up and logged in using X to the server and ran Tbird from there.... Mail sent out in < 1 minute, though the copy to dovecot took about 50% longer. So... I looked at the network trace. and everyfrackin...
2006 May 04
4
why a perfectly fine iax2 host becomes UNREA CHABLE?
> Is anybody on this list actually using iax2 for > anything mission-critical? Yes. 2K inbound / outbound calls a day to 30 remote locations, aggregated to 2 PRI's tied together with IAX2. All with IP address specified rather than hostname. All with Asterisk 1.0.9. All with 99.9% completion rate, and it would be 99.999% if we weren't using consumer grade DOCSIS cable modems in the
2019 Aug 20
3
Floating point operations with specific rounding and exception properties
...or even shorter). Rounding control in this case is much more important than for big cores; using proper rounding in different parts of algorithm can gain precision. Constrained intrinsics is the only way to enforce particular rounding mode. However using them results in poor optimization, which is intolerable. In such cores rounding mode may be encoded in instructions, so code movements cannot break semantics. Representation of fp operations could be more flexible, so that a user would not pay for rounding/exception control by performance degradation. For that we need to be able to mix constrained intr...
2012 Sep 01
1
Vectorial analogue of all.equal()?
Greetings All. Once again, I am probably missing something fairly accessible, but since I can't find it I'd welcome advice! I have a dataframe derived from a text file of data in tabular format. For one of the variables, say X, I want to select the subsets which in which X equals a particular value. Such values are given in the text file like: 2.3978953, and each such value will occurr
2019 Apr 10
1
Parsing code with newlines
On Wed, Apr 10, 2019 at 5:06 AM, Tomas Kalibera <tomas.kalibera at gmail.com> wrote: >> This is my first post here. I came across the very same problem. >> It can be reproduced within modified tests/Embedding/RParseEval.c > > Please check https://www.r-project.org/posting-guide.html and update > your post if you still need to get help here - from your current post >
2004 Sep 10
2
Serious bug in FLAC
As far as I can tell I've found a serious bug in the command line flac encoder :( I have created many hundreds of flac files and I was very annoyed to discover that the XMMS flac plug-in had intolerably long seek times, but since that had been mentioned on this list a bunch of times without anyone actually investigating, I thought I had better actually find the BUG which causes this. 1. I
2013 Feb 14
2
i386: vm.pmap kernel local race condition
Hi! I've got FreeBSD 8.3-STABLE/i386 server that can be reliably panicked using just 'squid -k rotatelog' command. It seems the system suffers from the problem described here: http://cxsecurity.com/issue/WLB-2010090156 I could not find any FreeBSD Security Advisory containing a fix. My server has 4G physical RAM (about 3.2G available) and runs squid (about 110M VSS) with 500
2004 Apr 26
0
[LLVMdev] Testing LLVM on OS X
On Fri, 23 Apr 2004, Patrick Flanagan wrote: > I'm interested in getting LLVM running on OS X so I can play around > with it and check it out. I downloaded the LLVM 1.2 package and > compiled and installed with no errors (used config options > --with-llvmgccidr and --enable-spec2000 pointing to the relevant > directories). I want to look at performance of SPEC CPU2000 with LLVM