Professional developers do not overclock their CPUs. Data corruption and crashes are the worst thing for productivity. But Ryzen 1700 is perfect for indies with low budget. Compiles much faster than alternatives (quad core i7).I'd say actually 5+ times cheaper since 1700 can be OC to same recuency and cost 330 bucks. Also taking into account cheaper boards the price for the system drops drastically.
Really? buy they could safe a lot of money just going into the bios and change some settings its the same cpu afterall just lower quality silicon.Professional developers do not overclock their CPUs. Data corruption and crashes are the worst thing for productivity. But Ryzen 1700 is perfect for indies with low budget. Compiles much faster than alternatives (quad core i7).
That depends of many factors. If you want something that can play at 1080/60 even an 2500k can do the job or a g4560 but some games use more cores and some use less and games will use more and more cores with time so you will see the performance drops drastically with each new gen. Also you dont just game, you turn on ur pc, compress, decompress data, use several apps at the same time, etc.Sebbi (or whoever) I have a question
With games (roughly) how many cores could a game make use of
(for example if I want a piece of toast there's no point hiring 5 chefs)
AAA devs also buy Xeons instead of i7. Gives you better quality silicon + better validation and ECC.Really? buy they could safe a lot of money just going into the bios and change some settings its the same cpu afterall just lower quality silicon.
What I really mean is imagine your where coding a game and everyone has cpu's with 50,000 coresThat depends of many factors.
Maximum occupation on Fury X needs 64 CU * 40 waves/CU * 64 threads/wave = 163840 threads. Most games can fill it easily (at least some part of the frame).What I really mean is imagine your where coding a game and everyone has cpu's with 50,000 cores
how many could you make use of (yes I know all games are different)
Sebbi, Fury X is a graphics card I'm talking about cpu cores
could you of written your last game to make use of any amount of cpu cores
or is there a limit
for example Ive written small programs and even if I could of written them to use 8 cores it would of been pointless
I have been spending lots of time past year in programming a GPGPU physics simulator. If it was running on a CPU (ISPC code instead of DirectCompute), it would scale to very high core counts.Sebbi, Fury X is a graphics card I'm talking about cpu cores
could you of written your last game to make use of any amount of cpu cores
or is there a limit
for example Ive written small programs and even if I could of written them to use 8 cores it would of been pointless
In terms of PCI-E lanes able to be saturated concurrently:
Broadwell-E: 40 (some SKUs are locked down to 28 lanes)
Summit Ridge: 24
Kaby Lake: 20 (As far as I can tell)
Bristol Ridge: 16 (But it is an outdated and budget-orientated product, hopefully the upcoming Zen-based APU will have more)
All then use chipsets to multiplex 4 of those lanes into various storage, LAN, etc. connections but those will all share the 4 lane bandwidth.
Are we talking about a game that simulates a big city, with lots of people on streets, lots of cars, trucks and buses (and people inside them)? Kids playing in the fully packed park nearby (with physically simulated sand of course). It's autumn and thousands of falling tree leaves. Wind simulation carries those leaves everywhere. Birds flying with flocking AI + reacting to kids nearby. Maybe it is a rainy ray and we also need robust water simulation. Water slides down the roofs and drops to severs and the river crossing the city. Boats crossing the river, all properly simulated, etc. A big city ecosystem...Sebbi (or whoever) I have a question
With games (roughly) how many cores could a game make use of
(for example if I want a piece of toast there's no point hiring 5 chefs)
I dont know, thats why I asked, not just is it technically possible, but is it doable from a cost/time point of viewWould you believe me if I said that 4 cores is enough for all of this, now and 50 years in the future?How about eight? 16? 32?
Trials Fusion was a cross gen game (last gen + current gen). Its technology was originally designed for CPUs with 3 cores and 6 hardware threads (Xbox 360).Trials Fusion (thats your game yes) if it was ran on a cpu with thousands of cores would it use all of them or only use X amount ?
Thank you..Obviously if you program a current gen game engine from scratch, you will use a task based system that scales automatically to any amount of cores.
Sebbi (or whoever) I have a question
With games (roughly) how many cores could a game make use of
(for example if I want a piece of toast there's no point hiring 5 chefs)
I have been spending lots of time past year in programming a GPGPU physics simulator. If it was running on a CPU (ISPC code instead of DirectCompute), it would scale to very high core counts.
People tend to say that things like AI doesn't scale to multiple cores, but that's not true at all. If you need to build an AI that handles tens of thousands of units, you can definitely write it in a way that scales up to big amount of CPU cores or even run it on GPU. There's no serial dependencies between multiple humans in real life either. Everybody monitors the world state themselves and makes their own decisions. To avoid synchronization in computer implementation, everybody first monitors the world state (read only, no hazards), then everybody modifies their own state (writes to different memory locations, no hazards). Expensive serial operations can often be replaced with something better suited for parallel execution: For example path finding with A* can be replaced by vector fields that lead to all important locations. Combine that with simple local path-finding and you have O(1) solution for each unit. Obviously you need to update vector fields when the environment changes, but that operation cost doesn't scale by the unit count (and it's a highly parallel operation in itself).
Writing parallel programs just needs a mindset change. You never do operations to single object at time, always everyone in the same class. Object oriented mindset isn't well suited for programming like this. You aren't concerned about objects, you are concerned about processing steps and their memory access patterns. Which steps need which inputs and outputs and how to solve common parallel problems in the most efficient way (dependencies, reductions, compaction, prefix-sums, etc).
This isn't mainstream game development obviously. But many of the same ideas are applied in so called "data oriented design".