Announcement

Collapse
No announcement yet.

AMD Radeon HD 7970 On Linux

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • FireBurn
    replied
    Originally posted by madbiologist View Post
    Unfortunately this might me too late for the 3.3 kernel merge window, unless Dave and/or Alex can talk Linus into having an extended merge window. The last extended merge window was a bit worrying though.
    Linus has always stated that post RC merges are allowed for bug fixes and support for bringing up new hardware - which this would qualify as

    Leave a comment:


  • Kjella
    replied
    Originally posted by liam View Post
    Lastly regarding drm I was attempting to give the impression that since hybrid mode will do most of the work through the CUs we could ignore the small bit that the uvd handles and thus not use uvd at all thus ignoring drm
    I'm guessing it's probably not that simple because the closed source driver has to protect the content all the way to the display. If you say it does UVD -> *shader functions* -> display and the open source driver does CPU -> *shader functions* -> display and they share the same shader function it'd make it a lot easier to look for that same call in the closed source driver and dump protected content. DRM is poison to openness. Anyway as I understood hybrid mode that was mostly for GPU-assisted encoding, not decoding - though I suppose it could implement some of the same functions.

    Leave a comment:


  • madbiologist
    replied
    Originally posted by zoomblab View Post
    There has to be an easy and safe way for end-users to install/update drivers without having to depend on distributions and wait for months in order for code to be merged into the latest kernel.
    There is already a way to do this on Linux. It's the same way that you do it on Windows.

    If you switched to Linux because you want a pure open source platform, then yes, you will have to wait for a PPA of a future kernel RC (if you use Ubuntu) or compile a kernel RC or compile a release kernel+drm next (if you use another distro). This is due to the DRM component of the open-source drivers residing in the kernel.

    I predict that patches providing open-source support for the Radeon HD7xxx series will appear in 4 to 6 weeks time, given the following:
    • Support for the Radeon HD5xxx series took about 4.5 months
    • Support for the Radeon HD6xxx series took about 2.5 months
    • AMD has publicly stated that they are aiming for launch-day open-source support for the upcoming Radeon HD8xxx series


    Unfortunately this might me too late for the 3.3 kernel merge window, unless Dave and/or Alex can talk Linus into having an extended merge window. The last extended merge window was a bit worrying though.

    Leave a comment:


  • wizard69
    replied
    Southern Islands compute technologies.

    Would it be possible to work something out with Phoronix to write and article focused onthe new compute capabilities of Southern Islands under Linux. One thing I'm interested in is how compute loads impact graphics usage, are we to the point where long running compute jobs do not impact graphics significantly. I guess that is a question about support for threads. However any info that you are free to spill that gives us a better mental image of improvements to Southern Islands compute performance would be welcomed.

    This question you probably can't answer but when will we see a Fusion processor using Southern Islands technology?

    Originally posted by bridgman View Post
    I haven't looked much at UVD in the latest GPUs but I thought they were still UVD 3. Can't really talk much about UVD at this point because I don't know what we are going to be able to release, although we are going to take another look in the new year.

    I don't think we have looked at PowerTune specifically; my guess is that the first chance to do that will be a few months from now. There are some more fundamental power management improvements I would like to get out first, and they will probably be a pre-requisite for PowerTune anyways.

    Leave a comment:


  • wizard69
    replied
    AMD recently had a developers conference that covered the technology. I believe Phoronix covered it. However I'm not sure if any of that was for open source development. The architecture is such a massive change that I suspect it could be a year or more before we see optimized code for GCN.

    Originally posted by rinthos View Post
    @Bridgman and others looking for the 6 month cycle reference...I believe it's here:



    "As a result both NVIDIA and AMD have begun revealing their architectures to developers roughly six months before the first products launch. This is very similar to how CPU launches are handled, where the basic principles of an architecture are publically disclosed months in advance".

    (the second page of the Anandtech review)
    ---
    I'm not sure why so much attention is paid to Anandtechs site. Sometimes I think the site is owned by Intel.

    Leave a comment:


  • zoomblab
    replied
    The open-source driver support is not yet available. No patches have magically landed this morning and they haven't released any support work in advance of the hardware's availability.
    This is one of the biggest problems in Linux for both developers and users IMHO. There has to be an easy and safe way for end-users to install/update drivers without having to depend on distributions and wait for months in order for code to be merged into the latest kernel.
    Last edited by zoomblab; 23 December 2011, 06:31 AM.

    Leave a comment:


  • smitty3268
    replied
    Originally posted by liam View Post
    Again, what surprises me is that the same compiler code used to generate VLIW is also being used to generate the new SIMD code.
    That's not really the case. The "GLSL compiler" is what generates that TGSI output that is currently used by the gallium drivers and will be converted into llvm ir in the new one. However, this is only about 1/3rd of the "complete" compiler.

    It doesn't know anything about the underlying architecture of the code, it's just a front-end to the GLSL language. Much like a GCC frontend for C or C++ would be shared across multiple architectures, and there is a separate backend portion that takes care of all the hardware details.

    The new LLVM IR code drop from AMD is that part, and it will completely replace the hardware dependent portion of the compiler in Mesa.


    Compilers tend to have 3 parts - the frontend reads the source code and stores an intermediate reprentation of it (IR), and only depends on the language being parsed.

    The back end is responsible for converting that IR into something the hardware can understand (typically binary instructions, but you can also have backends that output other languages, such as the emscripten project).

    The middle is where optimizations take place, and is typically split between the front and back end. Generic optimizations for the language go in the shared front-end, while hardware specific optimizations go in the backend.

    In mesa, the GLSL compiler is the front end. TGSI and LLVM IR are both forms of IR used internally (so is the GLSL IR). The old 600g driver contains one backend, and the new code based on LLVM contains a new backend to be used for new hardware.

    Leave a comment:


  • liam
    replied
    Much clearer to me now.

    Originally posted by bridgman View Post
    It's confusing because we used to only talk about graphics workloads (with the assumption that compute could flow through the same path) but now we're talking about different paths for graphics and compute, at least in some cases.

    Current thinking (if I remember it correctly ) is to tweak the pipe driver API to accept different IR formats (ie other than TGSI) then :

    For 6xx-NI graphics the Gallium3D pipe driver will receive TGSI shader programs from Mesa then use the existing code which converts vector TGSI operations directly into VLIW GPU operations

    For 6xx-NI compute the Gallium3D pipe driver will receive LLVM IR kernel programs from clover (or other compute front ends), then use "part 2" of the newly released code to generate VLIW GPU instructions from the LLVM IR (may not make great use of the VLIW at first)

    For GCN graphics the Gallium3D pipe driver will receive TGSI shader programs from Mesa, use "part 1" of the newly released code to convert TGSI to LLVM IR, then use "part 2" to generate GCN GPU instructions from the LLVM IR

    For GCN compute the Gallium3D pipe driver will receive LLVM IR kernel programs from clover (or other compute front ends) then use "part 2" of the newly released code to generate GCN GPU instructions from the LLVM IR
    Obviously you would know better than the guys at Anandtech, but I got a different impression as to the amount of difference in the compute bitstream from VLIW->non-VLIW SIMD. They seemed to say that the compiler was the ALL IMPORTANT COMPONENT in order to get decent utilization (meaning it was neccessary to keep vast amounts of the program branches in memory and be REALLY good at best guesses for dependencies). Though they didn't say this part I assume that since the compiler was so important for <=NI it becomes less so with >=SI, and should even need to be rewritten for the new architecture.
    What you seem to be saying is that <=NI will make good use of the IR->VLIW, which makes sense (also, graphics stays the same).
    For >=SI EVERYTHING goes through the new code (which I didn't know, but I also didn't know there were 2 code drops). Again, what surprises me is that the same compiler code used to generate VLIW is also being used to generate the new SIMD code.
    Again, if what Anandtech says is accurate it seems like the old compiler was so hideously complex thay you'd want to jettison it as soon as possible instead of making it able to output to yet another kind of architecture (so presumable it now addresses VLIW4/5/SIMD).


    Originally posted by bridgman View Post
    I drew a picture on a whiteboard at work of all this yesterday showing Catalyst OpenCL, clover OpenCL and Mesa with all the different code paths and scenarios. Should have taken a picture of it before erasing, sorry.
    Well, it's is the holidays after all, so just this once

    Originally posted by bridgman View Post
    That is definitely doable, and we'll probably do more work in that direction if it turns out we can't open UVD etc.., but the "small bit" handled by the fixed function hardware is the entropy encode/decode (CABAC, CAVLC etc..) which is still stubbornly expensive to implement on CPU or GPU. Motion estimation, motion comp and filtering are inherently parallel and a decent fit for shaders, but I don't think anyone has come up with a sufficiently parallel algorithm for entropy encode/decode yet.
    Yikes! I didn't realise that was being run by the UVD but cavlc shouldn't be that big of a deal to hand off to the cpu so even if nothing comes of uvd (though we still hope, obviously) it's still good to know that there is some light emerging from the tunnel.

    Best/Liam

    Leave a comment:


  • bridgman
    replied
    Originally posted by liam View Post
    I'm not sure I follow you. It SEEMS as though you are saying you will use the open sourced compiler for the old r600 while the new diver will switch to the new one. I apologize if I've misunderstood.
    It's confusing because we used to only talk about graphics workloads (with the assumption that compute could flow through the same path) but now we're talking about different paths for graphics and compute, at least in some cases.

    Current thinking (if I remember it correctly ) is to tweak the pipe driver API to accept different IR formats (ie other than TGSI) then :

    For 6xx-NI graphics the Gallium3D pipe driver will receive TGSI shader programs from Mesa then use the existing code which converts vector TGSI operations directly into VLIW GPU operations

    For 6xx-NI compute the Gallium3D pipe driver will receive LLVM IR kernel programs from clover (or other compute front ends), then use "part 2" of the newly released code to generate VLIW GPU instructions from the LLVM IR (may not make great use of the VLIW at first)

    For GCN graphics the Gallium3D pipe driver will receive TGSI shader programs from Mesa, use "part 1" of the newly released code to convert TGSI to LLVM IR, then use "part 2" to generate GCN GPU instructions from the LLVM IR

    For GCN compute the Gallium3D pipe driver will receive LLVM IR kernel programs from clover (or other compute front ends) then use "part 2" of the newly released code to generate GCN GPU instructions from the LLVM IR

    I drew a picture on a whiteboard at work of all this yesterday showing Catalyst OpenCL, clover OpenCL and Mesa with all the different code paths and scenarios. Should have taken a picture of it before erasing, sorry.

    Originally posted by liam View Post
    Lastly regarding drm I was attempting to give the impression that since hybrid mode will do most of the work through the CUs we could ignore the small bit that the uvd handles and thus not use uvd at all thus ignoring drm
    That is definitely doable, and we'll probably do more work in that direction if it turns out we can't open UVD etc.., but the "small bit" handled by the fixed function hardware is the entropy encode/decode (CABAC, CAVLC etc..) which is still stubbornly expensive to implement on CPU or GPU. Motion estimation, motion comp and filtering are inherently parallel and a decent fit for shaders, but I don't think anyone has come up with a sufficiently parallel algorithm for entropy encode/decode yet.
    Last edited by bridgman; 22 December 2011, 11:18 PM.

    Leave a comment:


  • liam
    replied
    Originally posted by bridgman View Post
    Actually quite the opposite.. the plan is for the new compiler code to go into the Gallium3D driver and process GCN graphics shaders (after adding GCN instruction generation, of course) along with compute for all architectures, while pre-GCN graphics shaders will go through the existing r600g compiler/translator.



    Agree 100%. The problem is that you can't ignore the DRM/UVD issues.

    Thanks for responding.
    I'm not sure I follow you. It SEEMS as though you are saying you will use the open sourced compiler for the old r600 while the new diver will switch to the new one. I apologize if I've misunderstood.
    Lastly regarding drm I was attempting to give the impression that since hybrid mode will do most of the work through the CUs we could ignore the small bit that the uvd handles and thus not use uvd at all thus ignoring drm

    Happy holidays!

    Liam

    Leave a comment:

Working...
X