Predict: The Next Generation Console Tech

Discussion in 'Console Technology' started by Acert93, Jun 12, 2006.

Thread Status:
Not open for further replies.
  1. Proelite

    Veteran Subscriber

    Joined:
    Jul 3, 2006
    Messages:
    1,620
    Likes Received:
    1,107
    Location:
    Redmond
    I am thinking that the rumor is just about the dev kit.

    It might be a pc setup with 2 gig of system ram and a 6990 with own vram, which is the fastest AMD solution that they can get right now for development purposes.

    This doesn't tell us anything about the final box, so I guess it might be why pretty soon every shitty gaming website is going to have their own version of their next xbox.
     
  2. Sonic

    Sonic Senior Member
    Veteran

    Joined:
    Feb 6, 2002
    Messages:
    1,926
    Likes Received:
    130
    Location:
    San Francisco, CA
    A GPU having its own separate memory would allow it to fully utilize the bandwidth of its own memory pool without having to share it with multiple CPU cores. If MS can afford it and pull it off, it isn't a bad idea.
     
  3. hoho

    Veteran

    Joined:
    Aug 21, 2007
    Messages:
    1,218
    Likes Received:
    0
    Location:
    Estonia
    Split memory pool isn't all that bad. It was bad in PS3 simply because the 256M in each pool was extremely little. 2G in each should be mostly good enough if you don't go over 1080p, especially if the connection between the two is fast enough.
     
  4. Rangers

    Legend

    Joined:
    Aug 4, 2006
    Messages:
    12,791
    Likes Received:
    1,596
    I just realized that we should perhaps here some real details soon on next box.

    Based on the timeline of 360, where first concrete specs leaked in very early 04, and even the Wii U which will have about two years between first concrete leaks and final release.

    So if Xbox next=late 2014, we should hear something early 2013.

    If it's late 2013, we should hear stuff early 012, in other words, soon!
     
  5. Dominik D

    Regular

    Joined:
    Mar 23, 2007
    Messages:
    782
    Likes Received:
    22
    Location:
    Wroclaw, Poland
    Even 2GiB each will feel very little at some point. Probably sooner than later even.
     
  6. Rangers

    Legend

    Joined:
    Aug 4, 2006
    Messages:
    12,791
    Likes Received:
    1,596
    So true.
     
  7. hoho

    Veteran

    Joined:
    Aug 21, 2007
    Messages:
    1,218
    Likes Received:
    0
    Location:
    Estonia
    I have a stupid question vaguely related to the memory stuff:
    do PC games generally doublebuffer all the data in vram also in system memory?

    I've yet to see a game that would get >2GB without heavy modding and even then they rarely get >3GB. If from that 30-50% is just a "backup" of the stuff already in vram then the 2+2 won't probably get too tight that soon.
     
  8. Prophecy2k

    Veteran

    Joined:
    Dec 17, 2007
    Messages:
    2,468
    Likes Received:
    379
    Location:
    The land that time forgot
    If both ram pools aren't shared, then i would assume that for a games console you would want 3GB Vram and 1GB system ram over what is suggested in the rumour. But then i guess GDDR5 chip density isn't high enough yet to have >2GB without things becoming too complex and prohibitively expensive.

    If they're gunning for 2012 with the nextbox then i guess XDR2 is out of the question? Perhaps Sony could look at a similar or more exotic RAM for their next console.
     
  9. ERP

    ERP
    Veteran

    Joined:
    Feb 11, 2002
    Messages:
    3,669
    Likes Received:
    49
    Location:
    Redmond, WA
    Some certainly do, on windows under DX you can get a device reset going from fullscreen to minimized or fullscreen to windows and all the textures/vertex buffers etc. have to be recreated.
    If they're not available in memory they have to come off disk, which can be a substantial amount of time.
    In DX9 there was a concept of a managed resource pool, where DirectX did basically this for you, but I believe it's gone in DX11. In practice all the managed pool did was guarantee that there would be 3 copies of at least some of the resources.
     
  10. ERP

    ERP
    Veteran

    Joined:
    Feb 11, 2002
    Messages:
    3,669
    Likes Received:
    49
    Location:
    Redmond, WA
    I'd be surprised if this happened, CES is just not a big gaming event anymore, and hasn't been for over 15 years.
     
  11. deathkiller

    Newcomer

    Joined:
    Jul 24, 2005
    Messages:
    186
    Likes Received:
    4
    It is a reasonable thing to do in a normal OS. On Android you have to manage yourself the recovery of the OpenGL resources if the context is lost on an interruption (a phone call for example), not very fun (the solution being having a copy on ram or reloading from the memory card making the user wait).
     
  12. hoho

    Veteran

    Joined:
    Aug 21, 2007
    Messages:
    1,218
    Likes Received:
    0
    Location:
    Estonia
    So basically one could say that currently even the highest-end games are using far less than 2GB of unique data between video + system memory? If that's so then I'd dare to say that shared 2+2G (or 3+1 as was suggested) on consoles will work for quite a lot longer time than 256+256 did in this generation.
     
  13. TheAlSpark

    TheAlSpark Moderator
    Moderator Legend

    Joined:
    Feb 29, 2004
    Messages:
    22,146
    Likes Received:
    8,533
    Location:
    ಠ_ಠ
    You'd be looking at something similar to how PS3 is currently setup except for the part about Cell having crap capability of reading GDDR3. In this scenario you need to have the memory I/O for each type on both chips.

    Or you could have the memory controllers on just the GPU and have the CPU access either memory via the GPU ala Xenos. In which case, you don't have all sorts of crazy wiring from the RAM chips to two different processors on the mobo, just the one. But at that point, you might as well just have a single memory type and equivalent bus width.

    It's an interesting thought, much like the early PS3 dev kits with dual 6800s. The system is going to be at least two years away, so nothing will be in concrete (or silicon :p) for quite a while.
     
  14. sebbbi

    Veteran

    Joined:
    Nov 14, 2007
    Messages:
    2,924
    Likes Received:
    5,296
    Location:
    Helsinki, Finland
    Old PC games did this, because in DX9 (and before that) you could lose the ownership of DirectX device (for example user pressing ALT+TAB), and when that happened, all the GPU resources (default pool) had to be recreated. It also supported managed resources, and those did hold a copy of every texture in system memory.

    For example in our old DX9 game "Trials 2 Second Edition" we actually reloaded all textures from the HDD whenever the DirectX device was lost. We didn't use managed resources at all, because we wanted the game to run properly on those ATOM netbooks that only had 512 megabytes of RAM (but of course with lowest graphics quality settings).
     
  15. archangelmorph

    Veteran

    Joined:
    Jun 19, 2006
    Messages:
    1,551
    Likes Received:
    12
    Location:
    London
    Why not a single unified pool of GDDR5?

    Also using DDR for system memory almost renders the idea of shared access to it somewhat useless as your going to be slowing down the GPU like crazy every time it has to hit it...

    You'll end up using it for direct GPU access to infrequently read textures/shaders/vertex-data or as a cache for loading data in/out of VRAM for the GPU to crunch...

    I reckon if the hardware manufacturers were to go this route (i.e. split, shared-access mem pools) then the 3GB VRAM to 1-2 GB Main memory idea sounds better IMO, provided the CPU-to-VRAM bus provides enough bandwidth to make it usable...
     
  16. patsu

    Legend

    Joined:
    Jun 25, 2005
    Messages:
    27,709
    Likes Received:
    145
    IMHO, if they (the platform owners) do it right, the nextgen won't be about # of cores, GPU and memory types anymore. ^_^
     
  17. liolio

    liolio Aquoiboniste
    Legend

    Joined:
    Jun 28, 2005
    Messages:
    5,724
    Likes Received:
    195
    Location:
    Stateless
    X=10 so
    O=1
    B=14

    going further:
    XBOX=10x14x1x10=1400

    Numerology teaches us that 1400=5

    Five in numerology:
    So now clear the 360 was already about live, project ten is named ten because it's 5x2 to maximize to power of the five number. Ten will be a really a social thing, fresh but cool as hell.
    That's how I get it.

    :lol: Sorry for the wtf moment

    EDIT
    I built a stronger convinction as the XBOX 360 is also 5:
    5(from xbox)+3+6=14=5
    Xbox ten is twice a 360, it's clear now.
     
  18. TheAlSpark

    TheAlSpark Moderator
    Moderator Legend

    Joined:
    Feb 29, 2004
    Messages:
    22,146
    Likes Received:
    8,533
    Location:
    ಠ_ಠ
  19. Rodéric

    Rodéric a.k.a. Ingenu
    Moderator Veteran

    Joined:
    Feb 6, 2002
    Messages:
    4,080
    Likes Received:
    997
    Location:
    Planet Earth.
  20. Prophecy2k

    Veteran

    Joined:
    Dec 17, 2007
    Messages:
    2,468
    Likes Received:
    379
    Location:
    The land that time forgot
    Mind is now blown :shock::eek:
     
Loading...
Thread Status:
Not open for further replies.

Share This Page

  • About Us

    Beyond3D has been around for over a decade and prides itself on being the best place on the web for in-depth, technically-driven discussion and analysis of 3D graphics hardware. If you love pixels and transistors, you've come to the right place!

    Beyond3D is proudly published by GPU Tools Ltd.
Loading...