This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Mali-764 MP GPU Technical Documentation and Programming

The question about access to technical information on the Mali product line gets more relevant with time. I am about to take delivery of a ststem with Mali T764; where can I get: - Details of the Instruction Set - Advice on how to invoke, and use, the "Compute" capabilities of the T764 -A list of the languages I can use: C? C++? NEON? VFP? Assenbler?

Parents
  • Hi Mike,

    All of the GPU functionality is accessed via a higher level API - OpenGL ES for graphics, and OpenCL or RenderScript for compute. In all cases the application provides a source "shader" program to the GPU device driver, which compiles it for the GPU on the platform. This ensures that the programs are cross-platform, as the compile step is part of the driver software for the specific platform in use.

    HTH,

    Pete

Reply
  • Hi Mike,

    All of the GPU functionality is accessed via a higher level API - OpenGL ES for graphics, and OpenCL or RenderScript for compute. In all cases the application provides a source "shader" program to the GPU device driver, which compiles it for the GPU on the platform. This ensures that the programs are cross-platform, as the compile step is part of the driver software for the specific platform in use.

    HTH,

    Pete

Children