similar to: high CPU usage with TAR files

Displaying 20 results from an estimated 40000 matches similar to: "high CPU usage with TAR files"

2007 Oct 02
1
[LLVMdev] Modifying Instruction Class
I'm attempting to add a new member variable to the Instruction class but I get assertion errors when I run lli. All I add is the following line to the private portion of the Instruction class definition. bool b; The error usually is: lli: /development/Contracts/DOVE/src/c/llvm/include/llvm/Type.h:329: void llvm::Type::dropRef() const: Assertion `isAbstract() && "Cannot drop a
2009 Sep 23
0
High CPU usage
Mark Schilling a ?crit : > I recompiled with FIXED_POINT and CPU utilization stays below 4%. This is a great improvement. > So how can I fix this to work with floating point ? OK, so it looks a lot like a denorm problem. The issue is basically that there are filters that decay exponentially, so when the input suddenly goes to zero, then the filter's output value becomes smaller and
2025 Jan 02
1
Possible issue in stats/arima.R package
On 2025-01-02 9:04 a.m., Norbert Kuder wrote: > Hello all, > > I am running R version 4.4.2 (2024-10-31 ucrt) on Windows 10 x64, and > noticed something that might be a minor bug (or at least inconsistent code) > in the stats/arima.R package. > I have found: > 1. A missing stop() call at line 69: > if (length(order) == 3) seasonal <- list(order = seasonal) else
2025 Jan 02
1
Possible issue in stats/arima.R package
On 2025-01-02 11:20 a.m., Duncan Murdoch wrote: > On 2025-01-02 9:04 a.m., Norbert Kuder wrote: >> Hello all, >> >> I am running R version 4.4.2 (2024-10-31 ucrt) on Windows 10 x64, and >> noticed something that might be a minor bug (or at least inconsistent code) >> in the stats/arima.R package. >> I have found: >> 1. A missing stop() call at line 69:
2009 Sep 23
1
High CPU usage
Hi Jeff, Hi Jean-Marc, I first modified the FPU control word to raise an exception whenever a denormal is used. Then I used the debugger to locate the exceptions and added VERY_SMALLs where they seem to fit well. Although I got CPU usage as low as 10%, I seriously lack knowledge of how things work inside speex. So just changing some code is not the best idea for me. My second attempt was to
2008 Oct 08
1
High CPU usage on 3.2.3
I just noticed I'm getting some pretty extreme CPU usage on my Samba server when transferring files. The Samba server has a quad core 2.0gHz Core2. During transfers, CPU use spikes to 100-200% with a throughput around 30MB/s. I'm using the registry config backend. [global] use kerberos keytab = True server string = X dns proxy = yes log file =
2025 Jan 02
1
Possible issue in stats/arima.R package
Hello all, I am running R version 4.4.2 (2024-10-31 ucrt) on Windows 10 x64, and noticed something that might be a minor bug (or at least inconsistent code) in the stats/arima.R package. I have found: 1. A missing stop() call at line 69: if (length(order) == 3) seasonal <- list(order = seasonal) else ("\'seasonal\' is of the wrong length") it should be rather: if
2007 Aug 31
4
Super HIGH CPU usage
I am using puppet 0.23.0-1 from Fedora Core 7 for a while and just realized that puppet use over 90% CPU every 30 minutes for about 10minutes. Anyone has the same issue? Barrow _______________________________________________ Puppet-users mailing list Puppet-users@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-users
2010 Apr 23
2
Ogg Index A-mod
I've been looking over Benjamin Schwartz's Skeleton A-mod proposal. I've been pretty busy with other projects over the past few months, so haven't had a chance to look at Ogg indexing until now... In general, I think Benjamin's ideas are sound, they're improvements, and I'm open to being convinced to take them in the next index version. We may as well get the index
2009 Sep 23
2
High CPU usage
Hi Jean-Marc, I recompiled with FIXED_POINT and CPU utilization stays below 4%. This is a great improvement. So how can I fix this to work with floating point ? Thanks. Mark -----Urspr?ngliche Nachricht----- Von: Jean-Marc Valin [mailto:jean-marc.valin at usherbrooke.ca] Betreff: Re: [Speex-dev] High CPU usage Hi, Sound like it could be the good old denormalised float problem on the Intel
2008 Aug 22
5
[LLVMdev] Dependence Analysis [was: Flow-Sensitive AA]
>However, there is one issue I have ignored - possibility of overflow in >the index expression. Suppose, we have such a loop: > for (i8 i = 0; i != 200; ++i) { > A[2 * i + 5] = ... > ... = A[2 * i + 3] > } >If both index expressions are evaluated in 8-bit arithmetic, >then the dependence equation should be solved in modular arithmetic: > 2 * i + 5 == 2 * (i +
2008 Aug 22
0
[LLVMdev] Dependence Analysis [was: Flow-Sensitive AA]
In the general case, I think you have to be conservative about this because programmers may deliberately want this kind of "wraparound" behavior, e.g., with periodic boundary conditions. But 99.9% of programs probably don't need that so it would be bad to penalize them for this corner case. In such a situation, I think you just have to support both choices, but choose the
2025 Jan 02
2
Possible issue in stats/arima.R package
>>>>> Duncan Murdoch >>>>> on Thu, 2 Jan 2025 11:28:45 -0500 writes: > On 2025-01-02 11:20 a.m., Duncan Murdoch wrote: >> On 2025-01-02 9:04 a.m., Norbert Kuder wrote: >>> Hello all, >>> >>> I am running R version 4.4.2 (2024-10-31 ucrt) on Windows 10 x64, and >>> noticed something that might
2013 Sep 02
2
como hacer grafico de un modelo setar
Hola, Estoy intentando realizar un ajuste a un modelo setar con R y me surgen problemas a la hora de representar el modelo setar sin la constante. El código es el siguiente: # Estimacion TAR(2;2,2) con delta 1: mod.setar <- setar(x, m = 2, mL = 2, mH = 2, thDelay = 1) mod.setar summary(mod.setar) mod.setarc<-setar(x, m=2, mL=2, mH=2, thDelay=1, include=c("none")) ##eliminamos
2012 Jan 17
1
MuMIn package, problem using model selection table from manually created list of models
The subject says it all really. Question 1. Here is some code created to illustrate my problem, can anyone spot where I'm going wrong? Question 2. The reason I'm following a manual specification of models relates to the fact that in reality I am using mgcv::gam, and I'm not aware that dredge is able to separate individual smooth terms out of say s(a,b). Hence an additional request,
2013 Mar 22
1
Trouble embedding functions (e.g., deltaMethod) in other functions
Dear R community, I've been writing simple functions for the past year and half and have come across a similar problem several times. The execution of a function within my own function produces NaN's or fails to execute as intended. My conundrum is that I can execute the function outside of my function without error, so it's difficult for me, as a novice functioneer, to figure out
2007 Jul 24
2
High CPU usage
The below seems to give me several minutes of 15-60% cpu usage. As far as I can tell there doesn''t seem to be anything really wrong with my configuration. Anyone have any idea why this might be the case? I also get about 6% memory usage. This is a 3.0 ghz Xeon with 2 gigs of memory. class apache2 { file { "/etc/apache2": recurse =>
2009 Dec 01
3
qemu-dm high cpu usage
Hi all, I''m not sure what qemu-dm does or how to debug its high CPU usage. Any one mind giving me a clue? - Brian _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2013 Feb 22
2
High CPU Usage with 2.2
I am seeing a rather high CPU usage with 2.2 now: last pid: 30725; load averages: 4.58, 27.36, 25.49 up 0+15:36:12 16:02:53 103 processes: 4 running, 98 sleeping, 1 zombie CPU: 34.5% user, 0.0% nice, 65.4% system, 0.2% interrupt, 0.0% idle Mem: 602M Active, 1767M Inact, 254M Wired, 6116K Cache, 112M Buf, 490M Free Swap: 5900M Total, 5900M Free PID USERNAME THR PRI NICE SIZE
2008 Sep 16
1
HVM guest high CPU usage
I have couple of HVM guests on xen 3.2. When guests boot, qemu-dm uses alot of cpu for approx 20 minutes post boot then load drops to average 0.50. I did some debugging and see this is going on, I suspect display output is using the CPU. Disabling VNC and SDL didn''t help with the CPU usage. any ideas how to reduce the cpu or stop it all together? My setup is as following: Xen