Mali Offline Compiler User Guide

Size: px
Start display at page:

Download "Mali Offline Compiler User Guide"

Transcription

1 Mali Offline Compiler User Guide ARM Limited 2017

2 Introduction 2

3 Contents 3 Contents Chapter 1: Introduction... 5 Overview... 6 Installation Package... 6 This Release...6 Chapter 2: Installation... 7 Supported Platforms...8 Linux and OSX... 8 Windows... 8 Chapter 3: Usage...9 Using the Mali Offline Compiler Sample Shaders Testing a Shader...10 Prerotate OpenCL...11 Vulkan Chapter 4: Known Issues Compilation of a vertex shader may fail with the error "Register allocation failed for vertex shader"...14 Offline compiler libraries crash when using unsupported extensions Mali Offline Compiler does not support SPIR-V entry point names Chapter 5: Maintenance...15 Supported Driver Versions Support Chapter 6: Legal...19 Proprietary Notice...20

4 Contents 4

5 Chapter 1 Introduction Topics: Overview Installation Package This Release

6 Introduction 6 Overview The Mali Offline Compiler is a command line tool that compiles vertex, fragment, compute, geometry, tessellation control, and tessellation evaluation shaders written in the OpenGL ES Shading Language (ESSL), or kernels written in OpenCL C, or Vulkan SPIR-V binary modules and prints information about the compiled code. Shaders can be used in the OpenGL ES 2.0, 3.0, 3.1, and 3.2 APIs, and kernels can be used in the OpenCL 1.1, and 1.2 APIs. SPIR-V modules can be used in the Vulkan 1.0 API. Vertex, fragment, compute, geometry, tessellation control, and tessellation evaluation shaders can be compiled into binary shaders that you can link and run on a Mali GPU. The resulting binary file must be moved to the target platform, read in by the application, and given as parameter in a call to the appropriate OpenGL ES function. You can use the Mali Offline Compiler to: Pre-compile shaders into binary code that you can distribute with your application. The binary code is then passed to the OpenGL ES API as an alternative to shader source code. Binary shaders reduce the time it takes to load a shader load time. Assist software development, by checking that shaders compile properly without having to pass them through an OpenGL ES application. Optimize your shaders by collecting feedback about the number of cycles each execution of the shader takes when you run it on the GPU. Ship your application with pre-compiled binary shaders instead of the OpenGL ESSL source code that is required if you use the on-target compiler. Note: Using the Mali Offline Compiler is optional. Because a particular binary shader can only be used on one type of GPU, using compiled shaders reduces portability. If you require portability, you can use the on-target Compiler which enables the OpenGL ES drivers to compile OpenGL ESSL shader code or Vulkan SPIR-V binary code dynamically when application runs on a target platform. Binary output is currently not available for OpenCL kernels. For OpenCL, the Mali Offline Compiler can only be used to test the validity of OpenCL kernels and to view information about the compiled code. Installation Package The installation package for the Mali Offline Compiler contains everything you need to start compiling OpenGL ES shader code and OpenCL kernels on a desktop computer. You should have downloaded the installation package appropriate to your platform. The Mali Offline Compiler is available for Windows, Linux, and Mac OS X. On Linux and Windows it comes in both 32- bit and 64-bit variants. On Mac OS X only a 64-bit version is available. Typically, you should download the package that most closely resembles your host environment. If you aren't sure which package to choose, the 32-bit version will work across the widest variety of platforms. This Release This release adds the Mali-Gxx r6p0 and Mali-T600 r18p0 driver. Mali-G51 / r0p0, r0p1, r1p0 support has been added. Support for Vulkan SPIR-V has been added.

7 Chapter 2 Installation Topics: Supported Platforms Linux and OSX Windows

8 Installation 8 Supported Platforms The Mali Offline Compiler has been tested on the following platforms: Microsoft Windows 7 x86 Microsoft Windows 7 x64 Ubuntu Linux x86 Ubuntu Linux x64 Mac OSX 10.9 x64 Linux and OSX On Linux and OSX, the Mali Offline Compiler is provided as a tgz package that can be extracted to any location on disk. This package can be extracted using any modern version (i.e. > 1.13) of GNU tar: tar xvzf Mali_Offline_Compiler_v d74_<platform>_<arch>.tgz Windows On Windows, the Mali Offline Compiler is provided as both a zip package that can be extracted to any location on disk, and as an executable installer package. To install the software, run the installer and follow the instructions on screen. A link to the installed Mali Offline Compiler directory will be added to the Start menu. By default, the malisc executable file will be located in: C:\Program Files\ARM\Mali Development Tools\Mali Offline Compiler v6.0.0 The installer will add the install location to your PATH environment variable so you can access malisc from any location.

9 Chapter 3 Usage Topics: Using the Mali Offline Compiler Sample Shaders Testing a Shader Prerotate OpenCL Vulkan

10 Usage 10 Using the Mali Offline Compiler On Windows, if you used the installer, the Mali Offline Compiler installation folder will be automatically added to the PATH environment variable, allowing you to run the malisc executable from the command line in any working directory. Otherwise, if you used the Windows zip or the Linux or OSX tgz archives, you will either need to run malisc from the folder you extracted the archives to, or to manually add this folder to the PATH environment variable. To see the full list of available options and further help information, on Windows run: malisc --help or on Linux and Mac OS X, run:./malisc --help Sample Shaders Some sample shaders are provided in the 'samples' folder in the Mali Offline Compiler installation directory. Testing a Shader After compiling a shader, it can be tested as follows: 1. Load the compiled shader into an OpenGL ES application using a call to glshaderbinary. 2. Draw geometry using the shader. 3. Examine the visual output. If unsatisfactory, alter the uniforms used to control the shader, or use a different shader. Note: If a shader pair, consisting of a vertex shader and a fragment shader, is successfully compiled using the Offline Compiler, the linking stage cannot fail because of resource constraints. Linking only fails if the uniform or varying variables of the shaders are incompatible. Prerotate Device manufacturers integrating certain ARM Mali devices can choose to enable or disable a 'prerotate' option. If prerotate is enabled on your device it will not be able to load non-prerotate binary shaders. If you select an offline compiler driver which supports prerotate ('supports prerotate will be shown when the --list option is passed in) two binaries will be produced by the offline compiler: 1. Prerotate binaries (output-filename.prerotate) can be loaded on all devices but performance is expected be lower. 2. Non-prerotate binaries (output-filename.non-prerotate) will only work on non-prerotate drivers but performance is expected to be better. For best compatibility, we suggest that developers use the prerotate binary. For best performance, you can try to load the non-prerotate shader, and, if an error is returned, then load the prerotate shader instead. Code for this might look like: #include <GLES2/gl2.h> #include <GLES2/gl2ext.h>...

11 Usage 11 vertex_shader = glcreateshader(gl_vertex_shader); glshaderbinary(1, &vertex_shader, GL_MALI_SHADER_BINARY_ARM, non_prerotate_binary, length); error = glgeterror(); if(error == GL_INVALID_VALUE) { int errorlog_length; glgetshaderiv(vs, GL_INFO_LOG_LENGTH, &errorlog_length); char* errorlog = malloc(errorlog_length * sizeof(char)); glgetshaderinfolog(vertex_shader, errorlog_length, NULL, errorlog); /* * If the non-prerotate binary is not supported then you will see the * following message in the errorlog: * ---- "The driver is too new for the shader. Try to upgrade your * compiler." * in this case you should use the prerotate binary instead, e.g. * glshaderbinary(1, &vertex_shader, GL_MALI_SHADER_BINARY_ARM, * prerotate_binary, length); */ }... OpenCL OpenCL support is currently only available on Linux and Mac OS X. The OpenCL C language allows you to use header files in your source code, with the #include preprocessor directive. The directory that the Offline Shader Compiler looks in to resolve any relative path header inclusions, such as #include header.h, is the current working directory. Absolute path header inclusions, such as #include /work/header.h, may also be used. Alternatively, multiple source files can be passed in to malisc. If multiple source files are specified, they will be concatenated together in the order that they were passed in. Vulkan The Mali Offline Compiler accepts Vulkan SPIR-V binary modules. You can create a SPIR-V binary module from a shader written in ESSL using glslang. Note that shaders written using Vulkan-specific features cannot be compiled as OpenGL ES SL shaders by the Mali Offline Compiler.

12 Usage 12

13 Chapter 4 Known Issues Topics: Compilation of a vertex shader may fail with the error "Register allocation failed for vertex shader" Offline compiler libraries crash when using unsupported extensions Mali Offline Compiler does not support SPIR-V entry point names

14 Known Issues 14 Compilation of a vertex shader may fail with the error "Register allocation failed for vertex shader" Status Affected compiler: Mali-400 series Description MaliGP2 has only limited internal bandwidth between its registers and execution units. In some rare cases, the register allocator for MaliGP2 in the shader compiler runs into a situation where there are more operations executed in one cycle than can be fed from the registers simultaneously. The compiler aborts the compilation in this case. Implications Some very big or very complex vertex shaders fail to compile. Workaround Changing the shader code slightly will often eliminate the problem. Try to rewrite some of the shader to do the calculations differently. Offline compiler libraries crash when using unsupported extensions Status Affected compiler: Mali-T600 series r3p0-00rel0 Description If the shader being compiled uses unsupported extensions, the compiler will crash. Implications It is not obvious when unsupported extensions are used. It is not possible to get shader statistics for these shaders. Workaround Check for extensions in the shader if the compiler crashes. Identify the unsupported extensions by removing them systematically and recompiling. Mali Offline Compiler does not support SPIR-V entry point names Status Affected compiler: all the compilers supporting SPIR-V modules. Description Current implementation does not allow to specify the entry point name to be used. Implications It is not possible to compile SPIR-V modules containing one or more entry points whose name is not main. Workaround Compile different stage shaders into separate SPIR-V binary modules and make sure the entry point name is main.

15 Chapter 5 Maintenance Topics: Supported Driver Versions Support

16 Maintenance 16 Supported Driver Versions Mali Offline Compiler Version Mali-400 Series Driver Mali-T600 Series Driver Mali-Gxx Series Driver 2.3 r2p r2p3-01rel r3p1-01rel1 r1p0-04rel r3p1-01rel1 r2p1-00rel0* r3p1-01rel1 r2p1-00rel0* r3p1-01rel1 r2p1-00rel0* r4p0-00rel1 r2p1-00rel0* r4p0-00rel r4p0-00rel r4p0-00rel r4p0-00rel1 r2p1-00rel0* r2p1-00rel0* r5p1-00rel0 r5p1-00rel0 r6p0-00rel0 r5p1-00rel0 r6p0-00rel r4p0-00rel1

17 Maintenance 17 Mali Offline Compiler Version Mali-400 Series Driver Mali-T600 Series Driver Mali-Gxx Series Driver r5p1-00rel0 r6p0-00rel0 r8p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel0 r11p0-00rel0 r12p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel0 r11p0-00rel0 r12p0-00rel0 r13p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel0

18 Maintenance 18 Mali Offline Compiler Version Mali-400 Series Driver Mali-T600 Series Driver Mali-Gxx Series Driver r11p0-00rel0 r12p0-00rel0 r13p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel0 r11p0-00rel0 r12p0-00rel0 r13p0-00rel0 r17p0-00rel r4p0-00rel1 r6p1-00rel0 r5p1-00rel0 r6p0-00rel0 r8p0-00rel0 r9p0-00rel0 r10p0-00rel0 r11p0-00rel0 r12p0-00rel0 r13p0-00rel0 r17p0-00rel0 r18p0-00rel0 r6p0-00rel0 * These driver versions are not available for Mac OSX. These driver versions are not available for Windows. Support For further support on this product, please visit the ARM Connected Community. It should be noted that continuing support of the product is at ARM s discretion unless explicitly included in a current contract between ARM and you.

19 Chapter 6 Legal Topics: Proprietary Notice

20 Legal 20 Proprietary Notice Words and logos marked with or TM are registered trademarks or trademarks of ARM Limited in the EU and other countries, except as otherwise stated below in this proprietary notice. Other brands and names mentioned herein may be the trademarks of their respective owners. OpenGL is a registered trademark and the OpenGL ES logo is a trademark of Silicon Graphics Inc. used by permission by Khronos. OpenCL and the OpenCL logo are trademarks of Apple Inc. used by permission by Khronos. Vulkan and the Vulkan logo are registered trademarks of the Khronos Group Inc. SPIR and the SPIR logo are trademarks of the Khronos Group Inc. Windows is a registered trademark of Microsoft Corporation in the United States and other countries. The Mali OpenCL compiler library is based on and incorporates portions of LLVM Version 3.5. The LLVM source code is available from the LLVM website. Neither the whole nor any part of the information contained in, or the product described in, this document may be adapted or reproduced in any material form except with the prior written permission of the copyright holder. The product described in this document is subject to continuous developments and improvements. All particulars of the product and its use contained in this document are given by ARM Limited in good faith. However, all warranties implied or expressed, including but not limited to implied warranties of merchantability, or fitness for purpose, are excluded. This document is intended only to assist the reader in the use of the product. ARM Limited shall not be liable for any loss for damage arising from the use of any information in this document, or any error or omission in such information, or any incorrect use of the product.

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912)

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912) Mali Offline Shader Compiler Version: 3.0 User Guide Copyright 2009-2012 ARM. All rights reserved. ARM DUI 0513B () Mali Offline Shader Compiler User Guide Copyright 2009-2012 ARM. All rights reserved.

More information

GPU Offline Shader Compiler. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. ARM DUI 0513A (ID101409)

GPU Offline Shader Compiler. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. ARM DUI 0513A (ID101409) Mali GPU Offline Shader Compiler Version: 2.2 User Guide Copyright 2009 ARM. All rights reserved. ARM DUI 0513A () Mali GPU Offline Shader Compiler User Guide Copyright 2009 ARM. All rights reserved. Release

More information

GPU Shader Library. Mali. User Guide. Version: 1.0. Copyright 2009 ARM. All rights reserved. ARM DUI 0510A (ID101409)

GPU Shader Library. Mali. User Guide. Version: 1.0. Copyright 2009 ARM. All rights reserved. ARM DUI 0510A (ID101409) Mali GPU Shader Library Version: 1.0 User Guide Copyright 2009 ARM. All rights reserved. ARM DUI 0510A () Mali GPU Shader Library User Guide Copyright 2009 ARM. All rights reserved. Release Information

More information

OpenGL ES 2.0 SDK for Android. Mali. User Guide. Version: Copyright 2011 ARM. All rights reserved. ARM DUI 0587A (ID120411)

OpenGL ES 2.0 SDK for Android. Mali. User Guide. Version: Copyright 2011 ARM. All rights reserved. ARM DUI 0587A (ID120411) Mali OpenGL ES 2.0 SDK for Android Version: 1.0.0 User Guide Copyright 2011 ARM. All rights reserved. ARM DUI 0587A () Mali OpenGL ES 2.0 SDK for Android User Guide Copyright 2011 ARM. All rights reserved.

More information

GPU Shader Development Studio. Mali. User Guide. Version: Copyright ARM. All rights reserved. DUI0504B (ID072410)

GPU Shader Development Studio. Mali. User Guide. Version: Copyright ARM. All rights reserved. DUI0504B (ID072410) Mali GPU Shader Development Studio Version: 1.2.0 User Guide Copyright 2009-2010 ARM. All rights reserved. DUI0504B () Mali GPU Shader Development Studio User Guide Copyright 2009-2010 ARM. All rights

More information

Using the NEMA SHADER-Edit

Using the NEMA SHADER-Edit Using the NEMA SHADER-Edit A Comprehensive Overview Version 1.1 February 8, 2018 History Version Date Description 1.1 07-2-2018 NemaP mode included 1.0 10-5-2017 Initial Version v1.1 External Confidential

More information

PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144)

PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144) PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144) Revision: r0p0 Technical Overview Copyright 2004 ARM Limited. All rights reserved. DTO0016A PrimeCell Infrastructure AMBA 3 AXI File Reader

More information

GPU Shader Development Studio. Mali. User Guide. Version: Beta. Copyright ARM. All rights reserved. DUI0504C (ID011412)

GPU Shader Development Studio. Mali. User Guide. Version: Beta. Copyright ARM. All rights reserved. DUI0504C (ID011412) Mali GPU Shader Development Studio Version: 1.3.0 User Guide Beta Copyright 2009-2011 ARM. All rights reserved. DUI0504C () Mali GPU Shader Development Studio User Guide Copyright 2009-2011 ARM. All rights

More information

AMBA Remap and Pause. Technical Reference Manual. Revision: r0p0. Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC

AMBA Remap and Pause. Technical Reference Manual. Revision: r0p0. Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC Revision: r0p0 Technical Reference Manual Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC Technical Reference Manual Copyright 1997 ARM Limited. All rights reserved. Release Information

More information

More performance options

More performance options More performance options OpenCL, streaming media, and native coding options with INDE April 8, 2014 2014, Intel Corporation. All rights reserved. Intel, the Intel logo, Intel Inside, Intel Xeon, and Intel

More information

ARMv8-A Synchronization primitives. primitives. Version 0.1. Version 1.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved.

ARMv8-A Synchronization primitives. primitives. Version 0.1. Version 1.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved. Connect ARMv8-A User Synchronization Guide primitives Version 0.1 Version 1.0 Page 1 of 9 Revision Information The following revisions have been made to this User Guide. Date Issue Confidentiality Change

More information

GPU Performance Analysis. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. DUI 0502A (ID101409)

GPU Performance Analysis. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. DUI 0502A (ID101409) Mali GPU Performance Analysis Tool Version: 2.2 User Guide Copyright 2009 ARM. All rights reserved. DUI 0502A () Mali GPU Performance Analysis Tool User Guide Copyright 2009 ARM. All rights reserved. Release

More information

Trace Debug Tools Version 1.2 Installation Guide

Trace Debug Tools Version 1.2 Installation Guide Trace Debug Tools Version 1.2 Installation Guide Copyright 2000-2002 ARM Limited. All rights reserved. Proprietary Notice Words and logos marked with or are registered trademarks or trademarks owned by

More information

INTRODUCTION TO OPENCL TM A Beginner s Tutorial. Udeepta Bordoloi AMD

INTRODUCTION TO OPENCL TM A Beginner s Tutorial. Udeepta Bordoloi AMD INTRODUCTION TO OPENCL TM A Beginner s Tutorial Udeepta Bordoloi AMD IT S A HETEROGENEOUS WORLD Heterogeneous computing The new normal CPU Many CPU s 2, 4, 8, Very many GPU processing elements 100 s Different

More information

OPENCL TM APPLICATION ANALYSIS AND OPTIMIZATION MADE EASY WITH AMD APP PROFILER AND KERNELANALYZER

OPENCL TM APPLICATION ANALYSIS AND OPTIMIZATION MADE EASY WITH AMD APP PROFILER AND KERNELANALYZER OPENCL TM APPLICATION ANALYSIS AND OPTIMIZATION MADE EASY WITH AMD APP PROFILER AND KERNELANALYZER Budirijanto Purnomo AMD Technical Lead, GPU Compute Tools PRESENTATION OVERVIEW Motivation AMD APP Profiler

More information

Integrator /CP Board Support Package for Microsoft Windows CE.NET

Integrator /CP Board Support Package for Microsoft Windows CE.NET Integrator /CP Board Support Package for Microsoft Windows CE.NET Revision: r0p0 Application Developer s Guide Copyright 2004 ARM Limited. All rights reserved. ARM DUI 0272A Integrator/CP Board Support

More information

Copyright Khronos Group Page 1

Copyright Khronos Group Page 1 Gaming Market Briefing Overview of APIs GDC March 2016 Neil Trevett Khronos President NVIDIA Vice President Developer Ecosystem ntrevett@nvidia.com @neilt3d Copyright Khronos Group 2016 - Page 1 Copyright

More information

Dave Shreiner, ARM March 2009

Dave Shreiner, ARM March 2009 4 th Annual Dave Shreiner, ARM March 2009 Copyright Khronos Group, 2009 - Page 1 Motivation - What s OpenGL ES, and what can it do for me? Overview - Lingo decoder - Overview of the OpenGL ES Pipeline

More information

amdgpu Graphics Stack Documentation

amdgpu Graphics Stack Documentation amdgpu Graphics Stack Documentation Release unknown-build Advanced Micro Devices, Inc. Oct 25, 2018 Contents 1 Table of Contents 1 1.1 Preamble................................................. 1 1.2 Overview.................................................

More information

SIMULATOR AMD RESEARCH JUNE 14, 2015

SIMULATOR AMD RESEARCH JUNE 14, 2015 AMD'S gem5apu SIMULATOR AMD RESEARCH JUNE 14, 2015 OVERVIEW Introducing AMD s gem5 APU Simulator Extends gem5 with a GPU timing model Supports Heterogeneous System Architecture in SE mode Includes several

More information

ARM Cortex processors

ARM Cortex processors ARM Cortex processors The world s most power efficient processors Performance and scalability for enterprise, mobile and embedded solutions May 2017 ARM Cortex-A portfolio ARMv7-A Cortex-A15/A17 Infrastructure

More information

ARM. Streamline. Performance Analyzer. Using ARM Streamline. Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A (ID100210)

ARM. Streamline. Performance Analyzer. Using ARM Streamline. Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A (ID100210) ARM Streamline Performance Analyzer Using ARM Streamline Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A () ARM Streamline Performance Analyzer Using ARM Streamline Copyright 2010 ARM Limited.

More information

AMD CORPORATE TEMPLATE AMD Radeon Open Compute Platform Felix Kuehling

AMD CORPORATE TEMPLATE AMD Radeon Open Compute Platform Felix Kuehling AMD Radeon Open Compute Platform Felix Kuehling ROCM PLATFORM ON LINUX Compiler Front End AMDGPU Driver Enabled with ROCm GCN Assembly Device LLVM Compiler (GCN) LLVM Opt Passes GCN Target Host LLVM Compiler

More information

ARM. Mali GPU. OpenGL ES Application Optimization Guide. Version: 3.0. Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555C (ID102813)

ARM. Mali GPU. OpenGL ES Application Optimization Guide. Version: 3.0. Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555C (ID102813) ARM Mali GPU Version: 3.0 OpenGL ES Application Optimization Guide Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555C () ARM Mali GPU OpenGL ES Application Optimization Guide Copyright 2011,

More information

SIGGRAPH Briefing August 2014

SIGGRAPH Briefing August 2014 Copyright Khronos Group 2014 - Page 1 SIGGRAPH Briefing August 2014 Neil Trevett VP Mobile Ecosystem, NVIDIA President, Khronos Copyright Khronos Group 2014 - Page 2 Significant Khronos API Ecosystem Advances

More information

Copyright Khronos Group Page 1. Vulkan Overview. June 2015

Copyright Khronos Group Page 1. Vulkan Overview. June 2015 Copyright Khronos Group 2015 - Page 1 Vulkan Overview June 2015 Copyright Khronos Group 2015 - Page 2 Khronos Connects Software to Silicon Open Consortium creating OPEN STANDARD APIs for hardware acceleration

More information

Bifrost - The GPU architecture for next five billion

Bifrost - The GPU architecture for next five billion Bifrost - The GPU architecture for next five billion Hessed Choi Senior FAE / ARM ARM Tech Forum June 28 th, 2016 Vulkan 2 ARM 2016 What is Vulkan? A 3D graphics API for the next twenty years Logical successor

More information

Secure software guidelines for ARMv8-M. for ARMv8-M. Version 0.1. Version 2.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved.

Secure software guidelines for ARMv8-M. for ARMv8-M. Version 0.1. Version 2.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved. Connect Secure software User Guide guidelines for ARMv8-M Version 0.1 Version 2.0 Page 1 of 19 Revision Information The following revisions have been made to this User Guide. Date Issue Confidentiality

More information

Versatile Express. Boot Monitor. Reference Manual. Copyright ARM. All rights reserved. ARM DUI 0465F (ID110612)

Versatile Express. Boot Monitor. Reference Manual. Copyright ARM. All rights reserved. ARM DUI 0465F (ID110612) Versatile Express Boot Monitor Reference Manual Copyright 2009-2012 ARM. All rights reserved. ARM DUI 0465F () Versatile Express Boot Monitor Reference Manual Copyright 2009-2012 ARM. All rights reserved.

More information

SOLUTION TO SHADER RECOMPILES IN RADEONSI SEPTEMBER 2015

SOLUTION TO SHADER RECOMPILES IN RADEONSI SEPTEMBER 2015 SOLUTION TO SHADER RECOMPILES IN RADEONSI SEPTEMBER 2015 PROBLEM Shaders are compiled in draw calls Emulating certain features in shaders Drivers keep shaders in some intermediate representation And insert

More information

NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X

NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v5.0 October 2012 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1 System Requirements... 1 1.2 About

More information

ARM. Mali GPU. OpenGL ES Application Optimization Guide. Version: 2.0. Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555B (ID051413)

ARM. Mali GPU. OpenGL ES Application Optimization Guide. Version: 2.0. Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555B (ID051413) ARM Mali GPU Version: 2.0 OpenGL ES Application Optimization Guide Copyright 2011, 2013 ARM. All rights reserved. ARM DUI 0555B () ARM Mali GPU OpenGL ES Application Optimization Guide Copyright 2011,

More information

AMBA Peripheral Bus Controller

AMBA Peripheral Bus Controller Data Sheet Copyright 1997 Advanced RISC Machines Ltd (ARM). All rights reserved. ARM DDI 0044C Data Sheet Copyright 1997 Advanced RISC Machines Ltd (ARM). All rights reserved. Release Information Issue

More information

User's Manual. TM / BA /EU Purinter Remote Configuration Tool. Overview. Building the Environment. Using the Tool. M Rev.B

User's Manual. TM / BA /EU Purinter Remote Configuration Tool. Overview. Building the Environment. Using the Tool. M Rev.B TM / BA /EU Purinter Remote Configuration Tool User's Manual Overview Provides an overview of Remote Configuration Tool and describes the system requirements. Building the Environment Explains the procedures

More information

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.06 AND 5.1.0 RN-07763-001 _v6.0 through 6.2 Revision 04 August 2018 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 1.1. Supported Platforms... 1 1.1.1.

More information

Cortex -A53 MPCore Processor Cryptography Extension ARM. Technical Reference Manual. Revision: r0p4

Cortex -A53 MPCore Processor Cryptography Extension ARM. Technical Reference Manual. Revision: r0p4 ARM Cortex -A53 MPCore Processor Cryptography Extension Revision: r0p4 Technical Reference Manual Copyright 2013-2014 ARM. All rights reserved. ARM DDI 0501F () ARM Cortex-A53 MPCore Processor Cryptography

More information

NVIDIA CUDA C GETTING STARTED GUIDE FOR MAC OS X

NVIDIA CUDA C GETTING STARTED GUIDE FOR MAC OS X NVIDIA CUDA C GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v02 August 2010 Installation and Verification on Mac OS X DOCUMENT CHANGE HISTORY DU-05348-001_v02 Version Date Authors Description of Change

More information

Jomar Silva Technical Evangelist

Jomar Silva Technical Evangelist Jomar Silva Technical Evangelist Agenda Introduction Intel Graphics Performance Analyzers: what is it, where do I get it, and how do I use it? Intel GPA with VR What devices can I use Intel GPA with and

More information

GETTING STARTED WITH CUDA SDK SAMPLES

GETTING STARTED WITH CUDA SDK SAMPLES GETTING STARTED WITH CUDA SDK SAMPLES DA-05723-001_v01 January 2012 Application Note TABLE OF CONTENTS Getting Started with CUDA SDK Samples... 1 Before You Begin... 2 Getting Started With SDK Samples...

More information

Using SPIR-V in practice with SPIRV-Cross

Using SPIR-V in practice with SPIRV-Cross Copyright Khronos Group 2016 - Page 60 Using SPIR-V in practice with SPIRV-Cross Hans-Kristian Arntzen Engineer, ARM Copyright Khronos Group 2016 - Page 61 Contents Moving to offline compilation of SPIR-V

More information

Vulkan 1.1 March Copyright Khronos Group Page 1

Vulkan 1.1 March Copyright Khronos Group Page 1 Vulkan 1.1 March 2018 Copyright Khronos Group 2018 - Page 1 Vulkan 1.1 Launch and Ongoing Momentum Strengthening the Ecosystem Improved developer tools (SDK, validation/debug layers) More rigorous conformance

More information

TESLA DRIVER VERSION (LINUX)/411.98(WINDOWS)

TESLA DRIVER VERSION (LINUX)/411.98(WINDOWS) TESLA DRIVER VERSION 410.79(LINUX)/411.98(WINDOWS) RN-08625-410.79_411.98 _v01 December 2018 Release Notes TABLE OF CONTENTS Chapter 1. Version Highlights...1 1.1. Fixed Issues... 1 1.2. Known Issues...1

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Installation Guide and Release Notes Document number: 321604-001US 19 October 2009 Table of Contents 1 Introduction... 1 1.1 Product Contents... 1 1.2 System Requirements... 2 1.3 Documentation... 3 1.4

More information

GRID SOFTWARE MANAGEMENT SDK

GRID SOFTWARE MANAGEMENT SDK GRID SOFTWARE MANAGEMENT SDK DU-8141-1 _v4.4 (GRID) Revision 2 October 217 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA... 1 1.1. GRID management interfaces...1 1.2. Introduction

More information

Texture Compression Tool. Mali. User Guide. Version: Copyright 2009, ARM. All rights reserved. DUI 0503E (ID092912)

Texture Compression Tool. Mali. User Guide. Version: Copyright 2009, ARM. All rights reserved. DUI 0503E (ID092912) Mali Texture Compression Tool Version: 4.0.1 User Guide Copyright 2009, 2011-2012 ARM. All rights reserved. DUI 0503E () Mali Texture Compression Tool User Guide Copyright 2009, 2011-2012 ARM. All rights

More information

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. SNMP Working Guide. Hynix Semiconductor Inc. Version 0.1

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. SNMP Working Guide. Hynix Semiconductor Inc. Version 0.1 Multipurpose Network Processor uclinux Developer Guide SNMP Working Guide Version 0.1 Hynix Semiconductor Inc. - ii - Copyright. 2002 Hynix Semiconductor Inc. ALL RIGHTS RESERVED. No part of this publication

More information

Prospects for a more robust, simpler and more efficient shader cross-compilation pipeline in Unity with SPIR-V

Prospects for a more robust, simpler and more efficient shader cross-compilation pipeline in Unity with SPIR-V Prospects for a more robust, simpler and more efficient shader cross-compilation pipeline in Unity with SPIR-V 2015/04/14 - Christophe Riccio, OpenGL Democratizing games development Monument Valley by

More information

DS-5 ARM. Using Eclipse. Version Copyright ARM. All rights reserved. ARM DUI 0480L (ID100912)

DS-5 ARM. Using Eclipse. Version Copyright ARM. All rights reserved. ARM DUI 0480L (ID100912) ARM DS-5 Version 5.12 Using Eclipse Copyright 2010-2012 ARM. All rights reserved. ARM DUI 0480L () ARM DS-5 Using Eclipse Copyright 2010-2012 ARM. All rights reserved. Release Information The following

More information

Shoviv MBOX Converter

Shoviv MBOX Converter - Convert in PST, Live Exchange, Office 365, MSG, EML Copyright 2018 Shoviv Software Private Limited Table of Contents 1. About 1.1 Introduction 1.2 Key Features 1.3 Supported Email Client 1.4 System Requirements

More information

DK2. Handel-C code optimization

DK2. Handel-C code optimization DK2 Handel-C code optimization Celoxica, the Celoxica logo and Handel-C are trademarks of Celoxica Limited. All other products or services mentioned herein may be trademarks of their respective owners.

More information

GRID SOFTWARE FOR MICROSOFT WINDOWS SERVER VERSION /370.12

GRID SOFTWARE FOR MICROSOFT WINDOWS SERVER VERSION /370.12 GRID SOFTWARE FOR MICROSOFT WINDOWS SERVER VERSION RN-08686-001 _v4.4 (GRID) Revision 02 October 2017 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2 2.1.

More information

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3)

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Overview Changes History Installation Package Contents Known Limitations Attributions Legal Information Overview The

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

CC Software version 1.5.0

CC Software version 1.5.0 CC Software version 1.5.0 Software release notes D14797.05 May 2012 Contents Contents Contents... 2 Document revision history... 3 Introduction... 4 Changes in CC1.5.0... 5 New feature descriptions...

More information

OpenCL ICD Installation Guidelines. Khronos OpenCL Working Group. Version 2.2-7, Sat, 12 May :21:

OpenCL ICD Installation Guidelines. Khronos OpenCL Working Group. Version 2.2-7, Sat, 12 May :21: OpenCL ICD Installation Guidelines Khronos OpenCL Working Group Version 2.2-7, Sat, 12 May 2018 13:21:25 +0000 Table of Contents 1. Introduction..............................................................................

More information

Intel Integrated Native Developer Experience 2015 (OS X* host)

Intel Integrated Native Developer Experience 2015 (OS X* host) Intel Integrated Native Developer Experience 2015 (OS X* host) Release Notes and Installation Guide 24 September 2014 Intended Audience Software developers interested in a cross-platform productivity suite

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

Khronos Group Conformance Process

Khronos Group Conformance Process Khronos Group Conformance Process 1. Change History February 2007 Generic process document with Specification specifics contained in Attachments July 2007 Added OpenKODE Attachment D, Adoption is made

More information

VIRTUAL GPU SOFTWARE MANAGEMENT SDK

VIRTUAL GPU SOFTWARE MANAGEMENT SDK VIRTUAL GPU SOFTWARE MANAGEMENT SDK DU-8141-1 _v5. through 5.2 January 218 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA...1 1.1. NVIDIA Virtual GPU Software Management Interfaces...

More information

D3D12 & Vulkan: Lessons learned. Dr. Matthäus G. Chajdas Developer Technology Engineer, AMD

D3D12 & Vulkan: Lessons learned. Dr. Matthäus G. Chajdas Developer Technology Engineer, AMD D3D12 & Vulkan: Lessons learned Dr. Matthäus G. Chajdas Developer Technology Engineer, AMD D3D12 What s new? DXIL DXGI & UWP updates Root Signature 1.1 Shader cache GPU validation PIX D3D12 / DXIL DXBC

More information

Achieving High-performance Graphics on Mobile With the Vulkan API

Achieving High-performance Graphics on Mobile With the Vulkan API Achieving High-performance Graphics on Mobile With the Vulkan API Marius Bjørge Graphics Research Engineer GDC 2016 Agenda Overview Command Buffers Synchronization Memory Shaders and Pipelines Descriptor

More information

NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X

NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v7.0 March 2015 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1. System Requirements... 1 1.2. About

More information

ROCm: An open platform for GPU computing exploration

ROCm: An open platform for GPU computing exploration UCX-ROCm: ROCm Integration into UCX {Khaled Hamidouche, Brad Benton}@AMD Research ROCm: An open platform for GPU computing exploration 1 JUNE, 2018 ISC ROCm Software Platform An Open Source foundation

More information

Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem. Copyright Khronos Group Page 1

Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem. Copyright Khronos Group Page 1 Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem Copyright Khronos Group 2015 - Page 1 Khronos Connects Software to Silicon Open Consortium creating ROYALTY-FREE,

More information

Next Generation OpenGL Neil Trevett Khronos President NVIDIA VP Mobile Copyright Khronos Group Page 1

Next Generation OpenGL Neil Trevett Khronos President NVIDIA VP Mobile Copyright Khronos Group Page 1 Next Generation OpenGL Neil Trevett Khronos President NVIDIA VP Mobile Ecosystem @neilt3d Copyright Khronos Group 2015 - Page 1 Copyright Khronos Group 2015 - Page 2 Khronos Connects Software to Silicon

More information

NVIDIA Tesla Compute Cluster Driver for Windows

NVIDIA Tesla Compute Cluster Driver for Windows NVIDIA Tesla Compute Cluster Driver for Windows RN-05404-198_v198-17 July 2010 Release Notes 01 NVIDIA TESLA COMPUTE CLUSTER DRIVER FOR WINDOWS This edition of Release 198 Notes describes the Release 198

More information

Versity Software Update Overview

Versity Software Update Overview This technical bulletin explains the requirements for the software update server for the Spectralink Versity. Details about how the phone performs a software update, file selection criteria and software

More information

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS DATA SOURCES... 3 1. When I try to execute a custom report, throws an error: Report cannot be opened; report an incident, See

More information

TESLA DRIVER VERSION (LINUX)/411.82(WINDOWS)

TESLA DRIVER VERSION (LINUX)/411.82(WINDOWS) TESLA DRIVER VERSION 410.72(LINUX)/411.82(WINDOWS) RN-08625-410.72_411.82 _v01 October 2018 Release Notes TABLE OF CONTENTS Chapter 1. Version Highlights...1 1.1. New Features...1 1.2. Improvements...

More information

GRID SOFTWARE FOR HUAWEI UVP VERSION /370.28

GRID SOFTWARE FOR HUAWEI UVP VERSION /370.28 GRID SOFTWARE FOR HUAWEI UVP VERSION 367.128/370.28 RN-07939-001 _v4.7 Revision 03 February 2019 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2 2.1. Supported

More information

GRID SOFTWARE FOR RED HAT ENTERPRISE LINUX WITH KVM VERSION /370.28

GRID SOFTWARE FOR RED HAT ENTERPRISE LINUX WITH KVM VERSION /370.28 GRID SOFTWARE FOR RED HAT ENTERPRISE LINUX WITH KVM VERSION 367.128/370.28 RN-08687-001 _v4.7 July 2018 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2

More information

DesktopPlayer for Mac

DesktopPlayer for Mac DesktopPlayer for Mac Getting Started Version 2.6.0 November 2017 Table of Contents About this release... 3 About the Citrix DesktopPlayer for Mac solution... 3 About system memory usage... 3 DesktopPlayer

More information

Cg Toolkit. Cg 2.0 May 2008 Release Notes

Cg Toolkit. Cg 2.0 May 2008 Release Notes Cg Toolkit Cg 2.0 May 2008 Release Notes Cg Toolkit Release Notes The Cg Toolkit allows developers to write and run Cg programs using a wide variety of hardware and OS platforms and graphics APIs. Originally

More information

CUDNN. DU _v07 December Installation Guide

CUDNN. DU _v07 December Installation Guide CUDNN DU-08670-001_v07 December 2017 Installation Guide TABLE OF CONTENTS Chapter Overview... 1 Chapter Installing on Linux... 2 Prerequisites... 2 Installing NVIDIA Graphics Drivers... 2 Installing CUDA...

More information

Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem. Copyright Khronos Group Page 1

Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem. Copyright Khronos Group Page 1 Press Briefing SIGGRAPH 2015 Neil Trevett Khronos President NVIDIA Vice President Mobile Ecosystem Copyright Khronos Group 2015 - Page 1 Khronos Connects Software to Silicon Open Consortium creating ROYALTY-FREE,

More information

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing User s Guide Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2013 Intel Corporation All Rights Reserved Document

More information

ARM Firmware Suite v1.4 Installation Guide

ARM Firmware Suite v1.4 Installation Guide ARM Firmware Suite v1.4 Installation Guide Copyright 2000-2002 ARM Limited. All rights reserved. Release Information Date Issue Change 16 February 2000 A First Release 1 June 2000 B P720 Release 1 October

More information

Getting Started. NVIDIA CUDA C Installation and Verification on Mac OS X

Getting Started. NVIDIA CUDA C Installation and Verification on Mac OS X Getting Started NVIDIA CUDA C Installation and Verification on Mac OS X November 2009 Getting Started with CUDA ii November 2009 Table of Contents Chapter 1. Introduction... 1 CUDA Supercomputing on Desktop

More information

GRID SOFTWARE FOR HUAWEI UVP VERSION /370.12

GRID SOFTWARE FOR HUAWEI UVP VERSION /370.12 GRID SOFTWARE FOR HUAWEI UVP VERSION 367.122/370.12 RN-07939-001 _v4.4 (GRID) Revision 02 October 2017 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2 2.1.

More information

Qualcomm Snapdragon Profiler

Qualcomm Snapdragon Profiler Qualcomm Technologies, Inc. Qualcomm Snapdragon Profiler User Guide September 21, 2018 Qualcomm Snapdragon is a product of Qualcomm Technologies, Inc. Other Qualcomm products referenced herein are products

More information

Stonesoft User Agent. Release Notes for Version 1.1.3

Stonesoft User Agent. Release Notes for Version 1.1.3 Stonesoft User Agent Release Notes for Version 1.1.3 Created: November 26, 2012 Table of Contents What s New... 3 Features... 3 Enhancements... 3 Fixes... 3 Changes... 4 System Requirements... 4 General

More information

Cg Toolkit. Cg 2.0 January 2008 Release Notes

Cg Toolkit. Cg 2.0 January 2008 Release Notes Cg Toolkit Cg 2.0 January 2008 Release Notes Cg Toolkit Release Notes The Cg Toolkit allows developers to write and run Cg programs using a wide variety of hardware and OS platforms and graphics APIs.

More information

IBM Rational Rhapsody TestConductor Add On. Testing on a Linux Target

IBM Rational Rhapsody TestConductor Add On. Testing on a Linux Target IBM Rational Rhapsody TestConductor Add On Testing on a Linux Target 1 Rhapsody IBM Rational Rhapsody TestConductor Add On Testing on a Linux Target Release 2.6.1 2 License Agreement No part of this publication

More information

embos Real-Time Operating System embos plug-in for IAR C-Spy Debugger Document: UM01025 Software Version: 3.1 Revision: 0 Date: May 3, 2018

embos Real-Time Operating System embos plug-in for IAR C-Spy Debugger Document: UM01025 Software Version: 3.1 Revision: 0 Date: May 3, 2018 embos Real-Time Operating System Document: UM01025 Software Version: 3.1 Revision: 0 Date: May 3, 2018 A product of SEGGER Microcontroller GmbH www.segger.com 2 Disclaimer Specifications written in this

More information

ARM. Compiler toolchain v4.1 for. Creating Static Software Libraries with armar. Copyright 2011 ARM. All rights reserved. ARM DUI 0590A (ID061811)

ARM. Compiler toolchain v4.1 for. Creating Static Software Libraries with armar. Copyright 2011 ARM. All rights reserved. ARM DUI 0590A (ID061811) ARM Compiler toolchain v4.1 for µvision Creating Static Software Libraries with armar Copyright 2011 ARM. All rights reserved. ARM DUI 0590A () ARM Compiler toolchain v4.1 for µvision Creating Static Software

More information

VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM

VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM VIRTUAL GPU SOFTWARE R384 FOR RED HAT ENTERPRISE LINUX WITH KVM RN-08687-001 _v5.0 through 5.1 November 2017 Release Notes TABLE OF CONTENTS Chapter 1. Release Notes... 1 Chapter 2. Validated Platforms...2

More information

NVIDIA VOLTA DEEP LEARNING AMI

NVIDIA VOLTA DEEP LEARNING AMI NVIDIA VOLTA DEEP LEARNING AMI RN-08791-18.09.1 _v01 September 2018 Release Notes TABLE OF CONTENTS 1. Overview... 1 2. Version 18.09.1... 2 3. Version 18.08.0... 3 4. Version 18.07.0... 4 5. Version 18.06.0...

More information

ServerStatus Installation and Operation Manual

ServerStatus Installation and Operation Manual ServerStatus Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com ServerStatus Installation

More information

CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE

CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE MICROSOFT AZURE MARKETPLACE DU-09260-001_v01 November 2018 Quick Start Guide DOCUMENT CHANGE HISTORY DU-09260-001_v01 Version Date Authors Description

More information

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. Interrupt Controller Guide. MagnaChip Semiconductor Ltd. Version 0.

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. Interrupt Controller Guide. MagnaChip Semiconductor Ltd. Version 0. Multipurpose Network Processor uclinux Developer Guide Interrupt Controller Guide Version 0.1 MagnaChip Semiconductor Ltd. Copyright. 2004 MagnaChip Semiconductor Ltd. - ii - ALL RIGHTS RESERVED. No part

More information

Veritas System Recovery 18 Linux Edition: Quick Installation Guide

Veritas System Recovery 18 Linux Edition: Quick Installation Guide Veritas System Recovery 18 Linux Edition: Quick Installation Guide Documentation version: 18 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are

More information

Blackbox ProTM User Guide

Blackbox ProTM User Guide Blackbox ProTM User Guide Rugged External Desktop USB C (3.1 Gen2) enclosure Proprietary Notice and Disclaimer Unless noted otherwise, this document and the information herein disclosed are proprietary

More information

Mali Developer Resources. Kevin Ho ARM Taiwan FAE

Mali Developer Resources. Kevin Ho ARM Taiwan FAE Mali Developer Resources Kevin Ho ARM Taiwan FAE ARM Mali Developer Tools Software Development SDKs for OpenGL ES & OpenCL OpenGL ES Emulators Shader Development Studio Shader Library Asset Creation Texture

More information

Cisco UCS Performance Manager Release Notes

Cisco UCS Performance Manager Release Notes Release Notes First Published: June 2015 Release 1.1.1 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Cg Toolkit. Cg 1.4 rc 1 Release Notes

Cg Toolkit. Cg 1.4 rc 1 Release Notes Cg Toolkit Cg 1.4 rc 1 Release Notes Cg Toolkit Release Notes The Cg Toolkit allows developers to write and run Cg programs using a wide variety of hardware platforms and graphics APIs. Originally released

More information

NVIDIA CUDA INSTALLATION GUIDE FOR MAC OS X

NVIDIA CUDA INSTALLATION GUIDE FOR MAC OS X NVIDIA CUDA INSTALLATION GUIDE FOR MAC OS X DU-05348-001_v9.1 January 2018 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1. System Requirements... 1 1.2. About

More information

PMC-BiSerial-III SDLC 8-Channel SDLC Interface

PMC-BiSerial-III SDLC 8-Channel SDLC Interface DYNAMIC ENGINEERING 150 DuBois St. Suite C Santa Cruz CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 Software User s Guide (Linux) PMC-BiSerial-III SDLC 8-Channel

More information

LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model. 3GPP LTE Turbo. [optional] UG490 (v1.0) April 25, 2008 [optional]

LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model. 3GPP LTE Turbo. [optional] UG490 (v1.0) April 25, 2008 [optional] LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model LogiCORE IP 3GPP LTE Turbo Encoder v1.0 [Guide User Guide Subtitle] [optional] [optional] R R Xilinx is disclosing this user guide, manual,

More information

Avigilon Control Center 6 System Integration Guide

Avigilon Control Center 6 System Integration Guide Avigilon Control Center 6 System Integration Guide for Paxton Net2 Access Control Systems 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are

More information