Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 2 [3]

Author Topic: anyone ever survive indefinitely?  (Read 5997 times)

wierd

  • Bay Watcher
  • I like to eat small children.
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #30 on: July 03, 2013, 10:00:15 pm »

Basically, it has to do with what the CPU itself has to do in order to evaluate a statement.

If you tell the CPU to evaluate attribute gain on a dwarf, as it is currently structured, it has to first set up the check for the maximum skill threshold, which is unique for each dwarf, (each dwarf appears to get randomly placed on the slider based on the distribution percentiles for attributes defined in the raws, which then determines what its top attribute threshold is, and is unique to each dwarf) then it has to evaluate if the added skill point gain is possible or should be ignored, (is the dwarf already at max?) Or if the added amount should be truncated (applying 50 pts, but only 20pts from max? Etc.)  Those are ach and every one a logic operation, needed to process "evaluateSkillGain(DwarfVectorPtr, attrib, pts)" function.

Now, let's say toady was more clever:  instead of assigning a hard datastore for each dwarf, and then using lots and lots of operations to validate and decide how to proceed, he gives the dwarf a single precision float value for their current score position between minimum and maximum, as a value between 0 and 1.  He then also assigns an 8 bit flag array as an integer, to define what percentile the dwarf is in.  He can now evaluate the dwarf almost exclusively with pure math operators, and deal with the "over threshold" situation with a single logic check that then truncates the float with a modulo divide and a subtraction.

(Essentially, he sets binary flags in the 8 bit array by assigning it an integer value, unsigned. He then uses that value to mathematically transform the ratio position from the min-max single float value into the actual attribute score, and to determine how much to add or subtract from the ratio fr a given integer experience point calculation, say, using it as a factor for multiplication, or a divident for division.  If it exceeds the maximum, (1), then a modulus division by 1 will give the exact remainder, which you subtract from the score.  Or, you could just set it to 1. Either way.)

It serves the exact same purpose, but does so in a more clever fashion, that computers are much better at, and which could be accellerated with SSE flags on the compiler. It could easily be a 100% speedup or more.

The reason, is because math operators are more easily cached by the processor, and are exactly the kind of operation that SSE is made for, which frees the other ALUs on the chip to do logic ops, and on modern chips, the compiler will divvy up such operations with branch prediction to do both the math op and the logic op at the same time, where if they were all logic ops, it would have to wait for the general purpose ALUs to become available.

If you can abstractify the algorithm as pure math, it is *always* in your best interests to do so, if the function gets called frequently, and can pose a performance bottleneck.


Logged

wierd

  • Bay Watcher
  • I like to eat small children.
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #31 on: July 03, 2013, 10:00:45 pm »

Basically, it has to do with what the CPU itself has to do in order to evaluate a statement.

If you tell the CPU to evaluate attribute gain on a dwarf, as it is currently structured, it has to first set up the check for the maximum skill threshold, which is unique for each dwarf, (each dwarf appears to get randomly placed on the slider based on the distribution percentiles for attributes defined in the raws, which then determines what its top attribute threshold is, and is unique to each dwarf) then it has to evaluate if the added skill point gain is possible or should be ignored, (is the dwarf already at max?) Or if the added amount should be truncated (applying 50 pts, but only 20pts from max? Etc.)  Those are ach and every one a logic operation, needed to process "evaluateSkillGain(DwarfVectorPtr, attrib, pts)" function.

Now, let's say toady was more clever:  instead of assigning a hard datastore for each dwarf, and then using lots and lots of operations to validate and decide how to proceed, he gives the dwarf a single precision float value for their current score position between minimum and maximum, as a value between 0 and 1.  He then also assigns an 8 bit flag array as an integer, to define what percentile the dwarf is in.  He can now evaluate the dwarf almost exclusively with pure math operators, and deal with the "over threshold" situation with a single logic check that then truncates the float with a modulo divide and a subtraction.

(Essentially, he sets binary flags in the 8 bit array by assigning it an integer value, unsigned. He then uses that value to mathematically transform the ratio position from the min-max single float value into the actual attribute score, and to determine how much to add or subtract from the ratio fr a given integer experience point calculation, say, using it as a factor for multiplication, or a divident for division.  If it exceeds the maximum, (1), then a modulus division by 1 will give the exact remainder, which you subtract from the score.  Or, you could just set it to 1. Either way.)

It serves the exact same purpose, but does so in a more clever fashion, that computers are much better at, and which could be accellerated with SSE flags on the compiler. It could easily be a 100% speedup or more.

The reason, is because math operators are more easily cached by the processor, and are exactly the kind of operation that SSE is made for, which frees the other ALUs on the chip to do logic ops, and on modern chips, the compiler will divvy up such operations with branch prediction to do both the math op and the logic op at the same time, where if they were all logic ops, it would have to wait for the general purpose ALUs to become available.

If you can abstractify the algorithm as pure math, it is *always* in your best interests to do so, if the function gets called frequently, and can pose a performance bottleneck.


Logged

Snaake

  • Bay Watcher
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #32 on: July 04, 2013, 02:58:42 am »

Wierd: you seem to doublepost a lot.

Amd I doubt optimizing attribute gain checks would be very useful, afaik they don't happen that much, and the consensus is that pathfinding and large item registers (and flow, temperature and weather) are the main fps limiters.

Also, while Toady is a math phd, I gather his work was more abstract, and coding used to "just" be a hobby. Cut the guy some slack. Code like that can very well be elegant in it's effectiveness, but unless you're confident in and really understand what you're doing, it's easy to mess up. (spoken from my experience as a dabbling (rusty) coder)
Logged

Ragnarock

  • Bay Watcher
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #33 on: July 04, 2013, 07:06:30 am »

I usually just kill all the dorfs because I get bored, so far I never even had a forge nor made metal equipment, all my forts are full of peasants making stonecrafts and catching fish
Logged
Dabbling Overseer

callisto8413

  • Bay Watcher
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #34 on: July 04, 2013, 08:32:41 am »

After a decade, and about 200 plus Dwarfs, I start to make up stuff to do.  Bath houses, Grand Halls with many levels and a glass roof, greenhouses, underground hives.  Busy work.  After 12 or so years, if I can't find magma (because by than the trees are REALLY hurting) , I start to think if starting again.  I would love to go 200 years or so but also by than the FPS is low.  Not that low - but low.  Do tile sets mess it up?  If I went without tile sets would that speed it up?
Logged
The most EVIL creature in Dwarf Fortress!

ZzarkLinux

  • Bay Watcher
  • [IS_BUN:#1]
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #35 on: July 04, 2013, 09:11:43 am »

Caged stark raving mad vampire, where the cage is walled up somewhere, is immune to ghosts and provides literally indefinite fort life.

Can you substitute cage with minecart?
Logged

ORCACommander

  • Bay Watcher
  • [ETHIC:TORTURE_ELVES: PERSONAL_MATTER]
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #36 on: July 04, 2013, 09:13:35 am »

i suspect the double posting has to do with the constant 504 errors of this forum.
Logged

wierd

  • Bay Watcher
  • I like to eat small children.
    • View Profile
Re: anyone ever survive indefinitely?
« Reply #37 on: July 04, 2013, 09:59:02 am »

No, its because of the horrible stock browser on my obsolete android phone.
(Still on froyo, because my carrier is insane, and won't post at least an ics update!)
Logged
Pages: 1 2 [3]