Announcement

Collapse
No announcement yet.

Intel Pushes Their Linux-Friendly Xeon Phi

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

  • Intel Pushes Their Linux-Friendly Xeon Phi

    Phoronix: Intel Pushes Their Linux-Friendly Xeon Phi

    In addition to NVIDIA and AMD announcing new high-end server/workstation GPUs to coincide with this week's SuperComputing SC12 conference in Salt Lake City, Intel has announced new details and release information on their Xeon Phi co-processors...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    Hmm, with over 1 TFLOP double-precision performance they seem to be quite competitive. I wish they would get their crap together and produce a decent GPU.

    Comment


    • #3
      They have probably (and intelligently) decided that it would be easier to start with a HPC part, since the margins in this market allow for a very big and expensive die, and evolve it to eventually serve the graphics industry also. This may also be good for linux, since HPC requires good linux support.

      I remember that some years ago intel was touting ray-traycing as the future of graphics, this card should probably be very good a it. Is there any open source ray-traycing engine?

      Looking forward, this part should be fairly interesting, as it will surelly shake things up a bit due to the ease of programability and linux friendliness.

      Comment


      • #4
        I wounder how the Xeon Phi compares to Adapteva's 64-core Parallella processor.

        Comment


        • #5
          Originally posted by Figueiredo View Post
          They have probably (and intelligently) decided that it would be easier to start with a HPC part, since the margins in this market allow for a very big and expensive die, and evolve it to eventually serve the graphics industry also. This may also be good for linux, since HPC requires good linux support.

          I remember that some years ago intel was touting ray-traycing as the future of graphics, this card should probably be very good a it. Is there any open source ray-traycing engine?

          Looking forward, this part should be fairly interesting, as it will surelly shake things up a bit due to the ease of programability and linux friendliness.
          Lightsmark adopts global illumination algorithm, but I don't know it's ray-tracing or not.
          Maybe the simplest way is; wait patiently for another 10-15 years till id tech 6 becomes open-source.

          Comment


          • #6
            Originally posted by Figueiredo View Post
            Is there any open source ray-traycing engine?
            IDK, but here to hoping the Atomontage Engine gets adapted to this (and ported to Linux?). Voxels, in theory, are more suited to ray-tracing than polygonal objects.

            Comment


            • #7
              gcc doesn't really have support for Xeon Phi since it doesn't support their new SIMD extension. Intel just needed to be able to compile the kernel. If you want a compiler, you'll have to use icc.

              Comment


              • #8
                Originally posted by F i L View Post
                I wounder how the Xeon Phi compares to Adapteva's 64-core Parallella processor.
                Parallella's a lot cheaper, and probably also slower due to simpler die. Also Parallella is MIMD whereas the Phi (according to WP) and GPUs are SIMD, so Parallella is more general (surprisingly).

                Comment


                • #9
                  Originally posted by ldesnogu View Post
                  gcc doesn't really have support for Xeon Phi since it doesn't support their new SIMD extension. Intel just needed to be able to compile the kernel. If you want a compiler, you'll have to use icc.

                  The vector units in the Xeon Phi are using the same instruction format as the AVX instructions found in Sandy Bridge/Ivy Bridge chips that are already on the market. The Xeon Phi's extend the SIMD instruction length to 512 bits, but otherwise it is the same format (this was done intentionally, and AVX actually scales all the way up to 1024 bit SIMD instructions).

                  The bigger isssue with Xeon Phi is actually that the cores are simplified x86 meaning they drop some legacy instructions. That's not the end of the world but it does mean that GCC and the kernel need some tweaking so that they are only issuing valid instructions. To get the best performance out of these chips, your workload should be dominated by the SIMD instructions, which is what compute bound tasks are all about.

                  Comment


                  • #10
                    Originally posted by chuckula View Post
                    The vector units in the Xeon Phi are using the same instruction format as the AVX instructions found in Sandy Bridge/Ivy Bridge chips that are already on the market. The Xeon Phi's extend the SIMD instruction length to 512 bits, but otherwise it is the same format (this was done intentionally, and AVX actually scales all the way up to 1024 bit SIMD instructions).
                    I think you are wrong: on top of being wider there are now 32 registers instead of 16. Instruction encoding also is different and there are new instructions. So definitely something completely new

                    Comment

                    Working...
                    X