VOGONS


RAM prices have gone insane

Topic actions

Reply 800 of 813, by rmay635703

User metadata
Rank l33t
Rank
l33t
douglar wrote on Yesterday, 18:44:

Most companies have more diversity consultants that developers? Good grief. This thread should get renamed to “Hot takes that dont stand up to any sort of scrutiny”

Nationally there are low thousands of diversity consultants out of 160 million workers ,(less than a thousandth of a percent?)
I think we are safe.

What I find funny is the people who are supposedly against whatever it is they think an employee of that type does
seem to inject diversity into every topic accomplishing the opposite of their intent.

The anti cancel culture folks seem to support cancel culture more avidly than anyone else.

Reply 801 of 813, by badmojo

User metadata
Rank l33t
Rank
l33t
65C02 wrote on Today, 00:14:

Ffs, not again. Vogons doesn’t need this. There was recently a thread that mentioned how some long time posters don’t visit vogons anymore. I suspect one reason is that posts like this regularly appear in milliways now.

Small angry men ruin things, that's just what they do.

Life? Don't talk to me about life.

Reply 802 of 813, by myne

User metadata
Rank l33t
Rank
l33t

I think the bigger problem is that multithreaded game engines are really hard.

The painting can and has been made parallel.

The main thread is more difficult to break out into discrete chunks, and keep operating in sync.

Sure, you can break out sound, networking, and other elements, but their requirements are relatively trivial. 1 spare core from 15 years ago could do all of that.

The "best" gaming CPU is practically always in every generation the one with the most mhz.

Right now, if it was possible to build a lopsided dual core with 25ghz for one and a sidekick core of say 2ghz, it would most likely win all the gaming benchmarks.

That's the biggest problem. It is hard to break up the main thread and keep it all in lockstep.

I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic

Reply 803 of 813, by st31276a

User metadata
Rank Member
Rank
Member

The graphics card does all the painting.

Multithreading is not hard. It is basically a system of message queues and locks.

What gets challenging is the scheduling of the threads. The application is not guaranteed when which thread will be given some cpu, that is why the locking is so important to ensure nothing that shouldn’t be gets front run.

The main game loop needs to do stuff in a specific order to maintain a coherent state, and finding meaningful stuff to spin off into separate threads is rather moot.

A thread that does spatial audio and just periodically receive events and updates can work great, as it can continue and does not need to phone back with anything time critical.

Otherwise, AI threads performing an advisory role on enemy behaviour can also do heavy work in parallel and update enemy models when it phones back, which the main thread then executes at the relevant point in the gane loop.

Networking is part of the main loop. State ks transmitted at a certain point and sockets read (packets already caught by kernel) - this really does not take much time at all and the variables it touches is in the main thread anyway.

Cannot really think of anything else that can gain much from threading.

Reply 804 of 813, by Trashbytes

User metadata
Rank Oldbie
Rank
Oldbie
st31276a wrote on Today, 05:33:
The graphics card does all the painting. […]
Show full quote

The graphics card does all the painting.

Multithreading is not hard. It is basically a system of message queues and locks.

What gets challenging is the scheduling of the threads. The application is not guaranteed when which thread will be given some cpu, that is why the locking is so important to ensure nothing that shouldn’t be gets front run.

The main game loop needs to do stuff in a specific order to maintain a coherent state, and finding meaningful stuff to spin off into separate threads is rather moot.

A thread that does spatial audio and just periodically receive events and updates can work great, as it can continue and does not need to phone back with anything time critical.

Otherwise, AI threads performing an advisory role on enemy behaviour can also do heavy work in parallel and update enemy models when it phones back, which the main thread then executes at the relevant point in the gane loop.

Networking is part of the main loop. State ks transmitted at a certain point and sockets read (packets already caught by kernel) - this really does not take much time at all and the variables it touches is in the main thread anyway.

Cannot really think of anything else that can gain much from threading.

One of the biggest hurdles for efficient and timely multithreading is windows itself, AMD had to fix it themselves via their chipset drivers and IIRC Intel did the same thing as the standard Windows scheduler is fucking terrible at handling chiplet CPUs with non heterogeneous designs like the Intel 14th/15th gen or Ryzen multi CCD CPUs like the 9950 X3D with one CCD having no X3D cache. (I know 14th gen isn't chiplet .. but its has the same problem with big little design)

Reply 805 of 813, by xcomcmdr

User metadata
Rank Oldbie
Rank
Oldbie
douglar wrote on Yesterday, 18:44:

Most companies have more diversity consultants that developers? Good grief. This thread should get renamed to “Hot takes that dont stand up to any sort of scrutiny”

Yes, especially when talking about software engineering, RAM usage, lazy devs and such.

It is ridiculous and absurd.

Reply 806 of 813, by Trashbytes

User metadata
Rank Oldbie
Rank
Oldbie
xcomcmdr wrote on Today, 07:17:
douglar wrote on Yesterday, 18:44:

Most companies have more diversity consultants that developers? Good grief. This thread should get renamed to “Hot takes that dont stand up to any sort of scrutiny”

Yes, especially when talking about software engineering, RAM usage, lazy devs and such.

It is ridiculous and absurd.

Unless we want this thread gutted or binned I feel we should just move on, nothing useful will be gained by dwelling on it.

Reply 807 of 813, by myne

User metadata
Rank l33t
Rank
l33t
st31276a wrote on Today, 05:33:
The graphics card does all the painting. […]
Show full quote

The graphics card does all the painting.

Multithreading is not hard. It is basically a system of message queues and locks.

What gets challenging is the scheduling of the threads. The application is not guaranteed when which thread will be given some cpu, that is why the locking is so important to ensure nothing that shouldn’t be gets front run.

The main game loop needs to do stuff in a specific order to maintain a coherent state, and finding meaningful stuff to spin off into separate threads is rather moot.

A thread that does spatial audio and just periodically receive events and updates can work great, as it can continue and does not need to phone back with anything time critical.

Otherwise, AI threads performing an advisory role on enemy behaviour can also do heavy work in parallel and update enemy models when it phones back, which the main thread then executes at the relevant point in the gane loop.

Networking is part of the main loop. State ks transmitted at a certain point and sockets read (packets already caught by kernel) - this really does not take much time at all and the variables it touches is in the main thread anyway.

Cannot really think of anything else that can gain much from threading.

"multithreading isn't hard"

*Lists all the things that make it hard.*
*Repeats what I said in different ways.*

🤣?

I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic

Reply 808 of 813, by UCyborg

User metadata
Rank Oldbie
Rank
Oldbie
Trashbytes wrote on Yesterday, 16:22:

Edit - Not looking to hurt anyone's feelings with words on the internet. Also not a part of whatever thread occurred recently ...that caused people to get hurt feelings.

But clowns would make better software at this point. I saw what you wrote there originally.
---
I occasionally look at new computers. I noticed one model with Intel Core Ultra 7 265KF, 64 GB of RAM, NVIDIA GeForce RTX 5070 Ti and 2 TB SSD, it costs about 3250 €. Any guesses how much it would cost before the price explosion in recent years?

This is actually still in the relatively lower range, I noticed one model that costs over 11500 €.

Arthur Schopenhauer wrote:

A man can be himself only so long as he is alone; and if he does not love solitude, he will not love freedom; for it is only when he is alone that he is really free.

Reply 809 of 813, by st31276a

User metadata
Rank Member
Rank
Member
myne wrote on Today, 07:54:
"multithreading isn't hard" […]
Show full quote

"multithreading isn't hard"

*Lists all the things that make it hard.*
*Repeats what I said in different ways.*

🤣?

😮 ?

Nothing about it is hard.

The problem does not scale.

Reply 810 of 813, by Trashbytes

User metadata
Rank Oldbie
Rank
Oldbie
UCyborg wrote on Today, 09:40:
But clowns would make better software at this point. I saw what you wrote there originally. --- I occasionally look at new compu […]
Show full quote
Trashbytes wrote on Yesterday, 16:22:

Edit - Not looking to hurt anyone's feelings with words on the internet. Also not a part of whatever thread occurred recently ...that caused people to get hurt feelings.

But clowns would make better software at this point. I saw what you wrote there originally.
---
I occasionally look at new computers. I noticed one model with Intel Core Ultra 7 265KF, 64 GB of RAM, NVIDIA GeForce RTX 5070 Ti and 2 TB SSD, it costs about 3250 €. Any guesses how much it would cost before the price explosion in recent years?

This is actually still in the relatively lower range, I noticed one model that costs over 11500 €.

I find self censoring to be a disgusting trend I now need to follow on the internet as there are far too many thin skinned individuals that get hurt the moment someone even looks at them, using words though is akin to attacking them physically, words are violence now apparently.

I wish I didn't need to but I have no desire to drive people away from Vogons so Ill bite my typing fingers and let them have their space. (Im sure someone will be offended by this, there always is.)

As for that PC ..the Ram, Storage and GPU are the offending parts there, 64Gb of memory here is about 1500 dollars, the SSD is about 550 Dollars and the GPU is 1800 dollars ...3250 Eu is about 5240 dollars here . .so that's not an unreasonable price for PC with current shortages and pricing in mind .. I can tell you that the 5070Ti was 1200 Dollars in December, SSD was 240 and the 64Gb of ram was about 500 dollars and the average pre built with the specs you listed would have been about 2500 - 3000 dollars depending on Motherboard, CPU and Case + extras.

Reply 811 of 813, by myne

User metadata
Rank l33t
Rank
l33t
st31276a wrote on Today, 09:51:
o.O ? […]
Show full quote
myne wrote on Today, 07:54:
"multithreading isn't hard" […]
Show full quote

"multithreading isn't hard"

*Lists all the things that make it hard.*
*Repeats what I said in different ways.*

🤣?

😮 ?

Nothing about it is hard.

The problem does not scale.

Are you just going to keep repeating what I said in a different way?

Clearly there's a language barrier here.

I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic

Reply 812 of 813, by UCyborg

User metadata
Rank Oldbie
Rank
Oldbie
Trashbytes wrote on Today, 10:50:

I find self censoring to be a disgusting trend I now need to follow on the internet as there are far too many thin skinned individuals that get hurt the moment someone even looks at them, using words though is akin to attacking them physically, words are violence now apparently.

I wish I didn't need to but I have no desire to drive people away from Vogons so Ill bite my typing fingers and let them have their space. (Im sure someone will be offended by this, there always is.)

The world is upside-down. I seem to remember suggesting something violent in frustration when it comes to software development at some point and that must have spooked at least one member here. I'm one of the calmest individuals on this planet, but when people in serious positions act irresponsibly, that pisses me off.

Oh, have you heard this one, Tom & Jerry's a bad influence on children due to violence.

I agree it's a thin line and cracking jokes when it comes to certain atrocities is in bad taste, but still, what happened to the "sticks and stones may break my bones, but words will never hurt me"? Especially, your remark for instance was on rather light side.

Trashbytes wrote on Today, 10:50:

As for that PC ..the Ram, Storage and GPU are the offending parts there, 64Gb of memory here is about 1500 dollars, the SSD is about 550 Dollars and the GPU is 1800 dollars ...3250 Eu is about 5240 dollars here . .so that's not an unreasonable price for PC with current shortages and pricing in mind .. I can tell you that the 5070Ti was 1200 Dollars in December, SSD was 240 and the 64Gb of ram was about 500 dollars and the average pre built with the specs you listed would have been about 2500 - 3000 dollars depending on Motherboard, CPU and Case + extras.

RTX 5070 Ti is apparently what runs demanding heavy games at frame rates around 120 FPS at 1080p resolution these days. I like my old computer, but I also like the idea of treating myself something nice. Not planning to buy a new computer at this time, but perhaps some day. I haven't bought a serious computer in 17 years!

Arthur Schopenhauer wrote:

A man can be himself only so long as he is alone; and if he does not love solitude, he will not love freedom; for it is only when he is alone that he is really free.

Reply 813 of 813, by Trashbytes

User metadata
Rank Oldbie
Rank
Oldbie
UCyborg wrote on 29 minutes ago:
The world is upside-down. I seem to remember suggesting something violent in frustration when it comes to software development a […]
Show full quote
Trashbytes wrote on Today, 10:50:

I find self censoring to be a disgusting trend I now need to follow on the internet as there are far too many thin skinned individuals that get hurt the moment someone even looks at them, using words though is akin to attacking them physically, words are violence now apparently.

I wish I didn't need to but I have no desire to drive people away from Vogons so Ill bite my typing fingers and let them have their space. (Im sure someone will be offended by this, there always is.)

The world is upside-down. I seem to remember suggesting something violent in frustration when it comes to software development at some point and that must have spooked at least one member here. I'm one of the calmest individuals on this planet, but when people in serious positions act irresponsibly, that pisses me off.

Oh, have you heard this one, Tom & Jerry's a bad influence on children due to violence.

I agree it's a thin line and cracking jokes when it comes to certain atrocities is in bad taste, but still, what happened to the "sticks and stones may break my bones, but words will never hurt me"? Especially, your remark for instance was on rather light side.

Trashbytes wrote on Today, 10:50:

As for that PC ..the Ram, Storage and GPU are the offending parts there, 64Gb of memory here is about 1500 dollars, the SSD is about 550 Dollars and the GPU is 1800 dollars ...3250 Eu is about 5240 dollars here . .so that's not an unreasonable price for PC with current shortages and pricing in mind .. I can tell you that the 5070Ti was 1200 Dollars in December, SSD was 240 and the 64Gb of ram was about 500 dollars and the average pre built with the specs you listed would have been about 2500 - 3000 dollars depending on Motherboard, CPU and Case + extras.

RTX 5070 Ti is apparently what runs demanding heavy games at frame rates around 120 FPS at 1080p resolution these days. I like my old computer, but I also like the idea of treating myself something nice. Not planning to buy a new computer at this time, but perhaps some day. I haven't bought a serious computer in 17 years!

Ive been watching the markets here more out of curiosity than wanting to buy anything but I have watched the 5070Ti which is a 1440p GPU go from its 1200 dollar release price here to the 1800 they want for it now at the same time the 5080 has well ..gone nowhere it started at 1800 and is now 2000 dollars ...I have no idea why exactly the 5070Ti has risen by such a large amount. I do look at the 5090 pricing and it was a 4500 dollar GPU at release its now 8000 dollars here for one, nearly a 100% increase in its price.

I can understand the 5090 pricing since its the true AI workhorse but the 5070Ti ...its a mid range GPU and why is the 5080 so stable in its pricing? I don't fully understand exactly how the market works these things out, at these prices there is zero reason to buy a 5070Ti over the 5080 and I'm guessing that's exactly what nVidia wants. They raised the 5060Ti 16Gb to 5070Ti release prices here making it the mid range GPU along with the anemic 5070 and have pushed the 5070Ti out of the market entirely by pricing it the same as the 5080.

And yea the pricing here in Australia is Absurd.