Displaying 2 results from an estimated 2 matches for "8588k".
Did you mean:
8588
2005 Apr 08
1
Smbd hangs for users...
...3.0.12 and now lots of my users have
problems accesing their home folder on that server. If I look at the
users procceses they are running more than one smbd and they are on
verry high load, in top:
PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND
12045 user1 132 0 8588K 4900K CPU1 0 5:02 72.31% 72.31% smbd
11577 user1 132 0 8604K 4680K CPU3 0 20:19 72.17% 72.17% smbd
12101 user1 132 0 8884K 5156K RUN 0 0:51 69.58% 69.58% smbd
In windows the explorer hangs if the access their home folder...
--
==========================================...
2008 Apr 04
1
Resampler experimental speedups
...improvement (5% or so). Note that no loop unrolling has been done; for
the direct case unrolling 4 times will reduce instruction count noticeably.
Using '-ftree-vectorize -ffast-math -O3' and a profile run:
Original: Direct 3419k, Interpolate 9255k
This version: Direct 1629k, Interpolate 8588k
My loop transformations allow GCC to recognize it as vectorizable for
the direct case, giving a very nice speedup. For interpolate, we're
again hurt by the loop doing too much work. Note though that GCC
currently does not vectorize the inner loop for interpolate as it's
unable to recog...