boot - Diagnosing Motherboard/CPU/ (most likely) GPU

07
2014-07
  • SuperCookie47

    OK, so I am trying to salvage my Mum's old PC for which she had bought a new power supply. After that it worked for a long time. After that time, it wouldn't boot (fans would come on very loud, power button LED would come on, disk drives would respond to the eject button etc. but no display, and the HDD LED wasn't flashing (wasn't booting properly).

    About a week ago I though I'd try and salvage this poor PC. I tried to turn it on and got the same thing as mentioned above. I messed around trying different RAM configurations (swapping, single stick etc.), reseating the CPU, but to no avail. Until I took off the clip-on/clamp heatsink for the onbaord NVIDIA GeForce 7050 (part of a chipset on my motherboard; nForce 610i). I then turned on the power and attempted to boot, but to no avail.

    However, the weird thing is, is that EVERY time I would do this (let the GPU overheat, though not to a dangerous level) and then reattach the heatsink to it again, this would allow me to boot, log in, transfer files, any task.

    However, when it does come on and boot, and I am in Windows (windows 7) the whole PC OS/Mouse/Keyboard etc. will freeze occasionally and at pretty arbitrary times, requiring me to hard-reset it (hold the power button until the PC powers off itself).

    To summerize my very bad question:

    • Is it my graphics card that is failing
    • Why would it work when I let it overheat (remove the heatsink and turn it on, though it won't boot during this unless I'd done prior that day for example)
    • Can I salvage this PC by purchasing a new dedicated graphics card, or since it is part of the nForce 610i chipset, does that mean that I can't

    Thank you for reading my badly put question. I am eager to hear good resposes, especially to the last point

  • Answers
    Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

    Related Question

    The difference between GPU and CPU
  • KdgDev

    I know what a CPU is(I think). It's the thing who's speed is measured in GigaHertz(these days).

    However, you hear a lot about a GPU, and letting the GPU take over, not letting the CPU but the GPU do it, GPU-based rendering, etc...

    What is this GPU anyway? How can I access it and use it to my advantage? What am I missing out on here?


  • Related Answers
  • Tom Wijsman

    The GPU is the graphical processing unit. It is the CPU of the video card.

    Traditionally the CPU did all of the graphics processing until video card manufacturers began including GPUs on the display adapters. The GPU was a dedicated piece of hardware similar to the old FPU (floating point unit that was dedicated to performing advanced math routines faster than the CPU), that could perform common graphics routines really fast. (Actually GPUs came with the move on the part of video card manufacturers to incorporate graphics acceleration into the card instead of requiring a separate board, just like the function of FPUs was eventually incorporated directly into CPUs.)

    Eventually, GPUs outpaced CPUs so that a graphics processor actually had more transistors, ran faster (and hotter), and such. Graphics card manufacturers realized that the GPU was now a really powerful piece of hardware that is often sitting idle (for example when browsing the Internet, editing documents, etc.) So, starting with the X1300, ATI’s cards included AVIVO, which would allow the user to run video conversion software on the video card’s processor instead of doing it just on the slower CPU. Nvidia responded with CUDA, the first true GPGPU which basically, is a way to use the GPU(s) on a video card as general-use supplemental processors that can be used for any purpose, not just graphics or video related purposes.

    Because a GPU is highly optimized to perform advanced calculations such as floating-point arithmetic, matrix arithmetic, and the like, they can perform functions like video conversion, post-processing, as well as tasks like BOINC or Folding@Home much better than with a CPU alone.

    A modern computer can be quite the powerhouse, with a multi-core CPU and multi-GPU video card(s) that can act as super CPUs, the processing power of today’s computers is truly quite incredible. Even better, manufacturers are making the chips more power efficient, so that they are really powerful, but can also draw as little power and generate as little heat as possible when they are not necessary, thus giving us the best of both worlds!

  • phoebus

    The GPU is the Graphics Processing Unit. It is essentially the CPU of your video card (CPU is Central Processing Unit, the "brain", or processor, of a computer). Video cards these days are so complex that they are basically computers in themselves, with their own memory, buses, and processors.

    GPUs historically have been relatively special-purpose, designed for maximum power when performing a discrete set of graphics operations on particular types of data primitives (vertices, pixels, etc). However, companies like Intel, nVidia, and ATI are starting to push the envelope with more general-purpose GPU components, making it easier than ever before for software developers to utilize extra processing power available on the video card to perform non-graphics operations. Combined with things like CUDA and other specialized GPU languages, these new chips open up a lot of possibilities.

    GPGPU is sort of the headquarters for general purpose GPU computing. As a user, rather than a programmer, the whole "offload to the GPU" thing doesn't really concern you at this point, outside from a situation in which you would use software designed in that manner (not very many pieces of end user software exist at the current time).

  • knitatoms

    The CPU is the Central Processing Unit (probably your Intel or AMD processor).

    The GPU is the Graphics Processing Unit on your graphics card. See:

    http://en.wikipedia.org/wiki/Graphics_processing_unit

    They are hard to program but have the benefit of being massively parallel so can crunch some tasks much faster than the CPU.

    New initiatives such as CUDA from Nvidia hope to unleash this potential by making programming for it easier. See:

    http://en.wikipedia.org/wiki/CUDA

  • Phoshi

    A GPU is just a CPU dedicated to graphics processing. A CPU can process just about anything, but a GPU is tailored to calculating 3D images - people are starting to harness your GPU because it's very, very good at parallel processing, meaning that software that does a lot of things that don't depend on each other can run it through the graphics card for much better preformance.

    Plus, it's never normally used, so harnessing it's power can't really hurt.