Viewing a single comment thread. View all comments

WeirdGamerAidan OP t1_j6lb06f wrote

Yes, it's annoying when that happens, sometimes my computer will forget it has integrated graphics when I load a game then it renders with the cpu and gives me like 1 fps

12

kanavi36 t1_j6ligt3 wrote

Small correction, integrated graphics is usually the name for the CPU doing the graphics workload. The GPU would be dedicated or discrete graphics.

−12

rob_allshouse t1_j6lkimz wrote

No. There is a GPU in “integrated graphics” provided by Intel or AMD. It is comparatively weak to a discrete GPU, and often uses shared memory instead of dedicated memory, but it’s definitely a GPU.

14

Mayor__Defacto t1_j6lpxre wrote

Integrated graphics is not the CPU doing the graphics workload, it’s the name for a CPU designed with a GPU component and shared memory between the CPU and GPU. It’s a sort of SOC.

10

WeirdGamerAidan OP t1_j6ljzn3 wrote

In that case why does windows recognize them separately in task manager (with separate status windows and everything)?

5

ThatGenericName2 t1_j6lmf86 wrote

It doesn't, the person that replied to you is incorrect.

Some CPUs have a low power GPU integrated into it, hence Integrated GPU, and not all CPUs have them.

These Integrated GPUs are very weak and are meant for the bare minimum of graphics processing, enough to draw the interface of a word document or other programs and that's about it. Attempting to do anything complicated such as 3D rendering, even really simple ones will start to strain it.

Despite this these Integrated GPUs are still much better at graphics processing than software renderers that actually use the CPU.

27

salvodan t1_j6m0a82 wrote

And before integrated GPUs or even discrete low-powered GPUs the User Interface was rendered using the CPU itself (software rendering). This was a long time ago, back in the old days of text interface in CGA and simple 2D sprites. (1980s)

6

Bensemus t1_j6nrvtz wrote

This is more true of Intel iGPUs. AMD APUs were actually designed for light gaming as their integrated GPUs actually had some power.

1

AdiSoldier245 t1_j6lp924 wrote

An integrated GPU is a seperate GPU inside the processor, it's not using the CPU to compute graphics. If you look at internal layouts of a processor with an iGPU, you'll see the GPU as a seperate object. So displaying doesn't slow down the CPU part of the CPU(that much, there could be bandwith issues).

A discrete GPU is what goes into a pcie slot and is a GPU outside of the processor. This is what most games require as the iGPU is mostly only enough for displaying and maybe processing video.

Software rendering is using the CPU cores themselves to do graphics tasks.

5

kanavi36 t1_j6lnygb wrote

After posting my reply I considered I might have been incorrect in what I assumed from your comment, so I apologise. I assumed you were talking about when a game doesn't select the dedicated graphics and defaults to the integrated graphics on the CPU, which is quite common and would lead to low frame rates. I've never actually heard of a CPU skipping the integrated graphics and directly rendering a game, which sounds interesting. What does it appear as in your task manager?

2

WeirdGamerAidan OP t1_j6miuo3 wrote

When it happens, as soon as I load up the game cpu usage skyrockets to 100 and gpu stays low, and the game runs at like 1 fps. Happens the most with Roblox and Superliminal. I usually have to reload those games several times before it works properly.

1

WeirdGamerAidan OP t1_j6miy85 wrote

I don't recall if in task manager it shows it's using the gpu

1

kanavi36 t1_j6o4db3 wrote

Interesting, and also quite strange. What CPU do you have?

2

WeirdGamerAidan OP t1_j6oevbx wrote

Uuh I think it's an i7 but I'm not at home rn so I can't check. I'll try to find the laptop online and see what the cpu is. If it helps task manager displays the integrated graphics as "intel hd graphics 620"

1

WeirdGamerAidan OP t1_j6ogx1l wrote

Online search was partly successful. It is either an i7-7500U, i5-8250U, i5-7200U. Iirc I think it's the i5-8250U

1

TheSkiGeek t1_j6p31rr wrote

“Integrated graphics” or an “integrated GPU” these days almost always refers to a small(er)/weak(er) GPU that is included in the CPU itself.

From the perspective of the operating system, a ‘discrete’ GPU and the ‘integrated’ GPU are both rendering devices that it can access. In a laptop with discrete graphics, both of these are usually able to output to the built in display, so a game or other application can choose to render to either one. That’s usually where you see things getting confused, as the BIOS or OS might be configured with the integrated graphics chip as the first/default rendering device.

It’s also possible to do pure software rendering using only the CPU. Nobody actually wants to do this these days for real time applications, since it is painfully slow. But it is an option.

1