Vulkan Info is a program provided in the SDK which outputs various types of Vulkan information such as:
- device properties of identified GPUs
- Vulkan extensions supported by each GPU
- recognized layers
- supported image formats and format properties.
After downloading and installing the SDK and setting up the runtime environment (see the Getting Started documentation) you will be able to run the Vulkan Info program from a command prompt.
vulkaninfo
Executing vulkaninfo
without specifying the type of output will default to human-readable output to the console.
Note: The Vulkan Info binary found in the Windows Vulkan SDK is named vulkaninfoSDK.exe
. This is so it doesn't get confused with the Vulkan Info distributed by an IVH, as it is installed with the Vulkan Runtime Package. Since the SDK does not install Vulkan Info to the path, the Windows command line version used will be from the IHV distribution. To run the SDK version, either use the start menu shortcuts or navigate to the VulkanSDK/Bin
directory and run vulkaninfoSDK.exe
directly.
vulkaninfo --html
To organize output in a convenient HTML format use the --html
option. Executing vulkaninfo
with the --html
option produces a file called vulkaninfo.html
and can be found in your build directory.
vulkaninfo --json
Produce a json version of vulkaninfo output conforming to the Vulkan Profiles schema, saved as "VP_VULKANINFO_[DEVICE_NAME]_[DRIVER_VERSION].json", of the first gpu in the system.
JSON output can be specified with the -j
option and for multi-GPU systems, a single GPU can be targeted using the --json=
GPU-number
option where the GPU-number
indicates the GPU of interest (e.g., --json=0
). To determine the GPU number corresponding to a particular GPU, execute vulkaninfo --summary
option (or none at all) first; doing so will summarize all GPUs in the system.
Use the --help
or -h
option to produce a list of all available Vulkan Info options.
vulkaninfo - Summarize Vulkan information in relation to the current environment.
USAGE:
vulkaninfo --summary
vulkaninfo -o <filename> | --output <filename>
vulkaninfo -j | -j=<gpu-number> | --json | --json=<gpu-number>
vulkaninfo --text
vulkaninfo --html
vulkaninfo --show-formats
vulkaninfo --show-tool-props
OPTIONS:
[-h, --help] Print this help.
[--summary] Show a summary of the instance and GPU's on a system.
[-o <filename>, --output <filename>]
Print output to a new file whose name is specified by filename.
File will be written to the current working directory.
[--text] Produce a text version of vulkaninfo output to stdout. This is
the default output.
[--html] Produce an html version of vulkaninfo output, saved as
\"vulkaninfo.html\" in the directory in which the command
is run.
[-j, --json] Produce a json version of vulkaninfo output conforming to the Vulkan
Profiles schema, saved as
\"VP_VULKANINFO_[DEVICE_NAME]_[DRIVER_VERSION].json\"
of the first gpu in the system.
[-j=<gpu-number>, --json=<gpu-number>]
For a multi-gpu system, a single gpu can be targetted by
specifying the gpu-number associated with the gpu of
interest. This number can be determined by running
vulkaninfo without any options specified.
[--show-tool-props] Show the active VkPhysicalDeviceToolPropertiesEXT that vulkaninfo finds.
[--show-formats] Display the format properties of each physical device.
Note: This only affects text output.
Vulkan Info can also be found as a shortcut under the Start Menu.
Start Menu -> Vulkan SDK
version
-> vulkaninfo
Note: In order to review and/or save the output produced when using Visual Studio execute vulkaninfo
with the JSON option, you will have to redirect output to a file by modifying the command line arguments in the debug options.
Note: The Vulkan Info binary found in the Vulkan SDK is renamed to vulkaninfoSDK.exe
. This was done to demark any Vulkan Info version installed by the Vulkan Runtime Package, which is from an IHV distribution. When using command line on Windows, the Vulkan info version used will be from the IHV distribution, not the SDK. To run the SDK version, either use the start menu shortcuts or navigate to the VulkanSDK/Bin
directory and run vulkaninfoSDK.exe
directly.
Vulkan Info is now avaialble for iOS devices, but must be built manually.
The Vulkan Info project contains a folder at vulkaninfo/ios that contains an XCode project that will build Vulkan Info for iOS devices. In order to deploy to an iOS device, the developer must be a member of the Apple Developer Program. In addition, Vulkan Info makes use of the MoltenVK libraries, which is a seperate project from Vulkan-Tools and you will need to add the MoltenVK libraries to your XCode project manually. See the LunarG Getting Started with the macOS SDK guide for more information about using MoltenVK in the Vulkan SDK.
When Vulkan Info is run on an iOS device, it will create the standard vulkaninfo.json file and also a portability.json file. An HTML file is also created, and is displayed in a webview on the iOS device when the application is run. These files are located on the iOS device, and are available via the iOS application file sharing mechanism via iTunes for Windows or macOS. You can also access these files using the macOS Finder or Windows Explorer when the device is attached to the host computer via a USB cable. Select the device, and navigate to the "vulkaninfo" folder to access these files. There is currently no supported means to access these files on an iOS device from a Linux host computer.