Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Performance > Low performance - High spec

Reply
Thread Tools Display Modes

Low performance - High spec

 
 
whitik
Guest
Posts: n/a

 
      10-13-2009


Hi there, I'm looking for ideas why my computer is not fully utilizing
the resources. I have a Core i7 920 with 12GB Corsair RAM.

For example of the low resource utilization, I am currently unzipping
10 Virtual machine RARs (so several GB apiece) yet the CPU utilization
is only 15% and only 2GB RAM. It's not struggling or anything, I can do
plenty of other tasks without any problems but it doesn't seem to be
consuming the resources it should or performing as it should. The unzip
actions are going to take hours.

I'm fully defragged (reg and disk) and cleaned up. Plenty of disk
space. about 200GB left on the OS Partition and 600GB free on the
"stuff" partition

Any ideas while I'm tooling around with the vista performance monitor
tools?

Thanks,


--
whitik
 
Reply With Quote
 
 
 
 
Tae Song
Guest
Posts: n/a

 
      10-13-2009

"whitik" <> wrote in message
news:...
>
> Hi there, I'm looking for ideas why my computer is not fully utilizing
> the resources. I have a Core i7 920 with 12GB Corsair RAM.
>
> For example of the low resource utilization, I am currently unzipping
> 10 Virtual machine RARs (so several GB apiece) yet the CPU utilization
> is only 15% and only 2GB RAM. It's not struggling or anything, I can do
> plenty of other tasks without any problems but it doesn't seem to be
> consuming the resources it should or performing as it should. The unzip
> actions are going to take hours.
>
> I'm fully defragged (reg and disk) and cleaned up. Plenty of disk
> space. about 200GB left on the OS Partition and 600GB free on the
> "stuff" partition
>
> Any ideas while I'm tooling around with the vista performance monitor
> tools?
>
> Thanks,
>
>
> --
> whitik



The slowest component determines the fastest speed a system can accomplish a
task.

The slowest operation would be writing out the decompressed data on the hard
drive. You have multiple file (reading and writing) operations going on, so
that would further limit write operation and there is also latency since the
read/write head would have to move around a lot at periods in which neither
reading nor writing is done.

Check Highest Active Time for Disk operation in Performance monitor. If
it's pegged at 100% and your CPU is only using 12% that's your speed limit.


Ways to improve that maybe use another drive to write to. Read and write
operations all on one drive, you have higher operational overhead. R/W head
moving around more and operational bandwidth split to reading and writing,

Where as if you have a second drive just for writing out the decompressed
data the R/W head doesn't have to move around as much. Reading and writing
can occur be done at the same time.

RAID (striping) - alternately writes to two drives at once.

RAID (striping) + another drive. Read from the single drive and write out
to the RAID drive. Writing takes significantly longer than reading.

Maybe try SSDs (solid-state memory storage device)? I hate calling them
drives, since they don't have a motor.

RAM-Disk.

My setup:
1TB - RAID 5 (striping + error correcting) for OS and Programs
1TB - Single drive - pagefile (virtual memory) also for data storage and
backup
4GB - RAMdisk temporary files and search index


 
Reply With Quote
 
Ian D
Guest
Posts: n/a

 
      10-13-2009


"whitik" <> wrote in message
news:...
>
> Hi there, I'm looking for ideas why my computer is not fully utilizing
> the resources. I have a Core i7 920 with 12GB Corsair RAM.
>
> For example of the low resource utilization, I am currently unzipping
> 10 Virtual machine RARs (so several GB apiece) yet the CPU utilization
> is only 15% and only 2GB RAM. It's not struggling or anything, I can do
> plenty of other tasks without any problems but it doesn't seem to be
> consuming the resources it should or performing as it should. The unzip
> actions are going to take hours.
>
> I'm fully defragged (reg and disk) and cleaned up. Plenty of disk
> space. about 200GB left on the OS Partition and 600GB free on the
> "stuff" partition
>
> Any ideas while I'm tooling around with the vista performance monitor
> tools?
>
> Thanks,
>
>
> --
> whitik


The i7 has 4 cores, 0 through 3, and each core has 2 HT units,
0 & 1. HT doesn't increase the processing power of a core.
It allows for more efficient processing of HT aware processes
by better thread scheduling.

Your unzipping application is probably not designed for multicore,
or HT processing, so it's using a single HT unit at 100%, resulting in
a total CPU utilization of about 15%. I don't see much benefit from
HT, so I have it disabled in BIOS. Try disabling HT in BIOS. That
may allow you to use 100% of a full core, resulting in 25% CPU
utilization.

Re your memory usage, 32 bit Windows memory mapping allows
2GB of virtual memory space for apps, and 2GB for the OS. As
a result, most 32 bit apps can only utilize 2GB of memory. The
32 bit apps that can utilize 3 or 4GB of memory are large address
aware, and have a header to that effect in the program code,
which will flag 64 bit Windows to allocate more memory to the
application.


 
Reply With Quote
 
JayD
Guest
Posts: n/a

 
      10-13-2009

There are some limitations that may be found at the Bios level, reboo
you machine and hit F2 and enter the BIOS, see if there is a memor
count limit on your motherboard

Other than that You *are* running your system at its full potential.
You just don't have anything that will use *all of your computer
resources at once*. Short of running several Graphics programs(Maya
Photoshop, and 3d Studio Max), while having Media Player(fully loade
with media) in background, and a game playing all at the same time (al
if which I have done), you are not going to fully use all 12 GB of ra
at one time. I've barely been able to max out just 2 GB. The onl
reason your system is even using 15% of ram is because of Vista'
SuperFetch feature caching your pagefile and frequently used programs i
ram, which is very good at memory management

--
Jay


 
Reply With Quote
 
lemur
Guest
Posts: n/a

 
      10-13-2009

Out of curiosity, why are you running 10 virtual machines

--
lemu

::If *ANYONE* in this forum helps you, please click o
their *REP* icon. Thanks! (the middle scale icon in the upper righ
corner)::
 
Reply With Quote
 
whitik
Guest
Posts: n/a

 
      10-13-2009

Thanks for the reply JayD

How about the low CPU utilization? Compressing and Uncompressing file
is a CPU intensive task. why is my CPU so low when I am uncompressin
about 10 large RARs at the same time it was still less than 15%

Also, yes I am aware of Vistas Superfetch and Readyboost and such (
also have a 4GB 33mb/s Readyboost device). Which is also why I a
disappointed I gave it so much memory so it could use all it needs bu
unless I run 4 or 5 Virtual Machines it hardly uses any of it :

--
whitik
 
Reply With Quote
 
whitik
Guest
Posts: n/a

 
      10-13-2009

lemur;1159197 Wrote:
> Out of curiosity, why are you running 10 virtual machines


Not running, I was -unzipping- 10 VM RARs. I was just using them as a
example because the RARs are huge and the uncompression should eat u
CPU cycles easy so I can't figure out why the CPU is barely working a
all

--
whitik
 
Reply With Quote
 
lemur
Guest
Posts: n/a

 
      10-13-2009

Prime95 will fully test your CP

--
lemu

::If *ANYONE* in this forum helps you, please click o
their *REP* icon. Thanks! (the middle scale icon in the upper righ
corner)::
 
Reply With Quote
 
whitik
Guest
Posts: n/a

 
      10-13-2009

lemur;1159211 Wrote:
> Prime95 will fully test your CP


Cool. I'll try it out. Thanks

--
whitik
 
Reply With Quote
 
JayD
Guest
Posts: n/a

 
      10-13-2009


lemur;1159211 Wrote:
> Prime95 will fully test your CPU


well i tried this on my machine and i think this is the only thing
that's ever got my CPU to 100% and my ram to 95% :shock:


--
JayD


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
HOWTO: install and get up to speed with Microsoft's Windows Performance Toolkit Stephane Barizien Windows Vista Performance 0 09-21-2009 01:45 PM
Re: Server Performance Report - Memory in use - showing 'No data' Crina Li Windows Small Business Server 0 06-27-2006 09:38 AM
Re: Server Performance Report - Memory in use - showing 'No data' Crina Li Windows Small Business Server 0 06-26-2006 09:01 AM
Re: Server Performance Report - Memory in use - showing 'No data' Crina Li Windows Small Business Server 0 06-21-2006 10:03 AM
RE: Performance Counter Errors Jenny wu [MSFT] Windows Small Business Server 0 11-24-2005 07:42 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59