Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. 830 MB for a......

830 MB for a......

Scheduled Pinned Locked Moved The Lounge
game-devquestion
20 Posts 19 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D David ONeil

    That's because they are too lazy to break each card into its own driver package. Uungh!

    The Science of King David's Court | Object Oriented Programming with C++

    R Offline
    R Offline
    Rick York
    wrote on last edited by
    #6

    I don't think it's a matter of being lazy. I can't imagine trying to support packages unique to each card and OS version and then dealing with irate customers who don't know what video card they have or what OS version they are running. I would guess a driver package for a specific card model or generation of cards and OS version would be between 10 and 20% of what they have but the support requirements would be the inverse of that - 5 to 10 times more.

    "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

    Richard DeemingR 1 Reply Last reply
    0
    • Richard Andrew x64R Richard Andrew x64

      Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

      The difficult we do right away... ...the impossible takes slightly longer.

      D Offline
      D Offline
      dandy72
      wrote on last edited by
      #7

      Richard Andrew x64 wrote:

      What on earth could it possibly include that it's that large?

      Easy: non-driver stuff.

      1 Reply Last reply
      0
      • Richard Andrew x64R Richard Andrew x64

        Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

        The difficult we do right away... ...the impossible takes slightly longer.

        P Offline
        P Offline
        Peter_in_2780
        wrote on last edited by
        #8

        All those pre-rendered bitmaps to make it look good on benchmarks?

        Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012

        1 Reply Last reply
        0
        • Richard Andrew x64R Richard Andrew x64

          Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

          The difficult we do right away... ...the impossible takes slightly longer.

          M Offline
          M Offline
          Mehdi Gholam
          wrote on last edited by
          #9

          Checkout NVCleanstall – A Better Way to Install the NVIDIA Drivers ‐ Reviews App[^]

          Exception up = new Exception("Something is really wrong."); throw up;

          1 Reply Last reply
          0
          • R Rick York

            I don't think it's a matter of being lazy. I can't imagine trying to support packages unique to each card and OS version and then dealing with irate customers who don't know what video card they have or what OS version they are running. I would guess a driver package for a specific card model or generation of cards and OS version would be between 10 and 20% of what they have but the support requirements would be the inverse of that - 5 to 10 times more.

            "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

            Richard DeemingR Offline
            Richard DeemingR Offline
            Richard Deeming
            wrote on last edited by
            #10

            Rick York wrote:

            irate customers who don't know what video card they have or what OS version they are running

            The "GeForce Experience" app, which you are required to use to install the drivers, knows which card and OS you have.


            "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

            "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

            R 1 Reply Last reply
            0
            • Richard DeemingR Richard Deeming

              Rick York wrote:

              irate customers who don't know what video card they have or what OS version they are running

              The "GeForce Experience" app, which you are required to use to install the drivers, knows which card and OS you have.


              "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

              R Offline
              R Offline
              Rick York
              wrote on last edited by
              #11

              No, that is not required. I installed the latest version just last night and it is optional. You are right though, the type of customer who doesn't know those things should and likely will install that.

              "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

              V 1 Reply Last reply
              0
              • Richard Andrew x64R Richard Andrew x64

                Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                The difficult we do right away... ...the impossible takes slightly longer.

                T Offline
                T Offline
                trønderen
                wrote on last edited by
                #12

                Did you check how large the installed binary drivers are on your specific machine? GeForce may have a record breaking InstallerSize/BinaryDriverSize ratio, but I've seen some really bad cases in other software as well. As others have pointed out, default installation options may include applications that you don't really need. You may uncheck the option, or you may delete the applications any time after installation. Usually, a plain application can be deleted with no consequences for other software, and if you find out it really was needed, most installers can do a repair / reinstall task to get it back. Note: I am talking about Windows! On a *nix system, you should be extremely careful! Never trust that because you never touch some application or tool, you can delete it. You can be 99% sure that even if you never use, say, a scripting language, so you want to free up disk space by deleting its interpreter. Half a year later, some different installer crashes badly with a cryptic error message because it "knows" (erroneously) that the interpreter is present. It probably was included in your *nix distro, and no one would be so crazy that they remove any part of the distro, would they? So, I have learned the hard way: Never ever try to "clean up" your *nix installation, especially regarding software development tools. Limit cleanups to you private data files, and leave the rest untouched!

                R 1 Reply Last reply
                0
                • T trønderen

                  Did you check how large the installed binary drivers are on your specific machine? GeForce may have a record breaking InstallerSize/BinaryDriverSize ratio, but I've seen some really bad cases in other software as well. As others have pointed out, default installation options may include applications that you don't really need. You may uncheck the option, or you may delete the applications any time after installation. Usually, a plain application can be deleted with no consequences for other software, and if you find out it really was needed, most installers can do a repair / reinstall task to get it back. Note: I am talking about Windows! On a *nix system, you should be extremely careful! Never trust that because you never touch some application or tool, you can delete it. You can be 99% sure that even if you never use, say, a scripting language, so you want to free up disk space by deleting its interpreter. Half a year later, some different installer crashes badly with a cryptic error message because it "knows" (erroneously) that the interpreter is present. It probably was included in your *nix distro, and no one would be so crazy that they remove any part of the distro, would they? So, I have learned the hard way: Never ever try to "clean up" your *nix installation, especially regarding software development tools. Limit cleanups to you private data files, and leave the rest untouched!

                  R Offline
                  R Offline
                  Rage
                  wrote on last edited by
                  #13

                  trønderen wrote:

                  eally bad cases in other software as well

                  *cough* Adobe *cough* Printer drivers *cough cough*

                  Do not escape reality : improve reality !

                  1 Reply Last reply
                  0
                  • Richard Andrew x64R Richard Andrew x64

                    Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                    The difficult we do right away... ...the impossible takes slightly longer.

                    D Offline
                    D Offline
                    den2k88
                    wrote on last edited by
                    #14

                    ATI Catalyst back in the 200x's were 130 MB so...

                    GCS d--(d-) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

                    1 Reply Last reply
                    0
                    • R Rick York

                      No, that is not required. I installed the latest version just last night and it is optional. You are right though, the type of customer who doesn't know those things should and likely will install that.

                      "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

                      V Offline
                      V Offline
                      vKaras
                      wrote on last edited by
                      #15

                      yeha.. thats good! I think the "expirience" app is total bullshit.. like messing up my carefully finetuned ingame graphic settings, because.. it knows better... and not even telling.. me about it.

                      1 Reply Last reply
                      0
                      • Richard Andrew x64R Richard Andrew x64

                        Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                        The difficult we do right away... ...the impossible takes slightly longer.

                        M Offline
                        M Offline
                        milo xml
                        wrote on last edited by
                        #16

                        They probably include optimizations for each game, well, at least the ones that pay them to do that.

                        1 Reply Last reply
                        0
                        • Richard Andrew x64R Richard Andrew x64

                          Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                          The difficult we do right away... ...the impossible takes slightly longer.

                          M Offline
                          M Offline
                          Member 9167057
                          wrote on last edited by
                          #17

                          GeForce Experience, feel free to uninstall it if you don't need it (I like it's video recording capability).

                          1 Reply Last reply
                          0
                          • Richard Andrew x64R Richard Andrew x64

                            Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                            The difficult we do right away... ...the impossible takes slightly longer.

                            S Offline
                            S Offline
                            Stuart Dootson
                            wrote on last edited by
                            #18

                            They've based it on [Electron](https://www.electronjs.org/) so it's cross-platform...

                            Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                            1 Reply Last reply
                            0
                            • Richard Andrew x64R Richard Andrew x64

                              Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                              The difficult we do right away... ...the impossible takes slightly longer.

                              E Offline
                              E Offline
                              ElectronProgrammer
                              wrote on last edited by
                              #19

                              Maybe the graphics card is a dummy and they do everything via software?!

                              1 Reply Last reply
                              0
                              • Richard Andrew x64R Richard Andrew x64

                                Display driver?!! That's the latest Game Ready GeForce driver package! What on earth could it possibly include that it's that large?

                                The difficult we do right away... ...the impossible takes slightly longer.

                                S Offline
                                S Offline
                                SeattleC
                                wrote on last edited by
                                #20

                                Plus there's the whole manycore parallel supercomputer thing. Might take a few megabytes for that.

                                1 Reply Last reply
                                0
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                • Login

                                • Don't have an account? Register

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • World
                                • Users
                                • Groups