.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #11  
Old August 1st, 2003, 11:57 AM

deccan deccan is offline
Major
 
Join Date: May 2003
Location: Solomon Islands
Posts: 1,180
Thanks: 0
Thanked 0 Times in 0 Posts
deccan is on a distinguished road
Default Re: [OT] virtual memory

I run my comp with 512 mb RAM and no pagefile under Win XP fine too. I find that the only apps that need VM are resource-intensive 3-D games and graphics applications.
__________________
calltoreason.org
Reply With Quote
  #12  
Old August 1st, 2003, 10:38 PM
Thermodyne's Avatar

Thermodyne Thermodyne is offline
Lieutenant Colonel
 
Join Date: Dec 2000
Location: DC Burbs USA
Posts: 1,460
Thanks: 0
Thanked 1 Time in 1 Post
Thermodyne is on a distinguished road
Default Re: [OT] virtual memory

Quote:
Originally posted by Ruatha:
quote:
Originally posted by Thermodyne:

No page file can cause problems. Some apps are written to use the page file for some data. This was done to free up system ram back in the day, but it still populates some code. Seti is an app that pages by default. IMHO 128megs is a ball park lower limit.
Still, if you don't use proggies that needs VM it's better to have none, as it then won't access the HD all the time.

Quote:

All things ram are done in 32’s, 32-64-128-256-512-1024. Try to work the page file size in the same increments. It eases the addressing load on the CPU.
This I seriously question!
What should be the reason for the CPU to have "easier adress load" with 33554432 Bytes (32M) or 32M-some (ex 30M)?
Every adress between the 24 and the 32M range uses the same adress length (actually, above 16M it uses the same registers IIRC).
And a modern PC is made for large adress lenghts, so it should make no significant change to the internal workload for the computer what size the page file is, the only difference is in the drive handling. (And as I've stated far below in fragmantazion, aka also drive issues)
Right?
Enlighten me.

32 bit memory buss.
__________________





Think about it
Reply With Quote
  #13  
Old August 1st, 2003, 10:52 PM
Thermodyne's Avatar

Thermodyne Thermodyne is offline
Lieutenant Colonel
 
Join Date: Dec 2000
Location: DC Burbs USA
Posts: 1,460
Thanks: 0
Thanked 1 Time in 1 Post
Thermodyne is on a distinguished road
Default Re: [OT] virtual memory

Quote:
Originally posted by JoeViterbo:
The configuration of virtual memory even depends on your Version of windows. i think windows xp can even manage multiple page-files.

On rule to speed up things is: if you have two drives, put them on different controllers. Put your resource-consuming application to the drive where the page file is NOT. So using the page file and reloading software components won't interfere.

It is not a good solution to turn of the virtual memory. If you run multiple applications, your system will soon need it. Btw: Windows usually writes first the data to disk, that appears to be less important( e.g. idle apps etc )

quote:

All things ram are done in 32’s, 32-64-128-256-512-1024. Try to work the page file size in the same increments. It eases the addressing load on the CPU.
I think the cpu runs in protected mode anyways. So every address is 32-Bit. There are no more "far" and "short" jumps. the cpu accesses each (even)adress at the same speed.
XP and 2K can both manage more than one page file.

The reason for x32 page file size goes back to the original x86 code, and the function of the data buss. Take a look a the default page file size that windows sets. It will vary with the amount of ram installed, but it will always devide by 32.

A bench mark trick is to run a small page file. Just enough to meet the needs of the mark being run. Some times it will be 1meg or even 1/2 a meg. If you vary from x32, you will see it in the results.
__________________





Think about it
Reply With Quote
  #14  
Old August 2nd, 2003, 09:42 AM
Ruatha's Avatar

Ruatha Ruatha is offline
Major General
 
Join Date: May 2002
Location: Linghem, Östergötland, Sweden
Posts: 2,255
Thanks: 0
Thanked 0 Times in 0 Posts
Ruatha is on a distinguished road
Default Re: [OT] virtual memory

Ok Thermo I see your point but it's still misguided.
If you change your page file to 32 M it doesn't matter if it 's anywhere between 16M+1 byte and 32M, it still has the same adress range, so having 32M doesn't make it go any faster than having 30M!
It's not some magic number, it's simply logic.
If you change from 32M to 32M+1 byte it can have some insignificant affact, hardly noticable I'd think but I'd agree that you might see it with a benchmark, haven't tested though, bit from say 24M to 29M or 32M it wouldn't have any aeffect, i e 32M page file is not faster then 24M pagefile.

The reason windows et it to "size dividable with 32" is that it want's the maximum amount possible if it's going above "size divided by 32" +1 byte, but youas a thinking human might hav ereasons not to set it that way.
And I've seen "not even dividable by 32" sizes if the free part of the disk doesn't allow it.
See?

[ August 02, 2003, 08:45: Message edited by: Ruatha ]
Reply With Quote
  #15  
Old August 2nd, 2003, 05:17 PM
Thermodyne's Avatar

Thermodyne Thermodyne is offline
Lieutenant Colonel
 
Join Date: Dec 2000
Location: DC Burbs USA
Posts: 1,460
Thanks: 0
Thanked 1 Time in 1 Post
Thermodyne is on a distinguished road
Default Re: [OT] virtual memory

Not exactly, but also true. As systems have gotten faster, page file virtual addressing has gotten more transparent, the load is a very small percentage of CPU time now. But the system still expects to see a size based on Base2 binary, starting with a 1 and then being all zeros. It will write each page as a 4kb page or slice of data. A simple way of seeing this is to enter 1 and a 0 into your electric slide rule, then look at the result. Repeat the process adding a zero each time. The results will be well known numbers.

Here is a link to the best place I know to get plain English answers on this stuff.

http://aumha.org/win5/a/xpvm.php

If you need more details, then we suffer the Chinese horror of the 1000 white papers 
__________________





Think about it
Reply With Quote
  #16  
Old August 2nd, 2003, 05:39 PM
Ruatha's Avatar

Ruatha Ruatha is offline
Major General
 
Join Date: May 2002
Location: Linghem, Östergötland, Sweden
Posts: 2,255
Thanks: 0
Thanked 0 Times in 0 Posts
Ruatha is on a distinguished road
Default Re: [OT] virtual memory

That was a good link!
Reply With Quote
  #17  
Old August 2nd, 2003, 05:52 PM
Thermodyne's Avatar

Thermodyne Thermodyne is offline
Lieutenant Colonel
 
Join Date: Dec 2000
Location: DC Burbs USA
Posts: 1,460
Thanks: 0
Thanked 1 Time in 1 Post
Thermodyne is on a distinguished road
Default Re: [OT] virtual memory

Glad you liked it

In the long gone days of win98, this guy was the keeper of the grail for those of us who couldn’t deal with the white papers.
__________________





Think about it
Reply With Quote
Reply

Bookmarks


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 On

Forum Jump


All times are GMT -4. The time now is 03:39 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.