Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to configure for Vulkan?
Forum Updated to NodeBB v4.3 + New Features

How to configure for Vulkan?

Scheduled Pinned Locked Moved Solved General and Desktop
22 Posts 6 Posters 13.1k Views 4 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nikitablack
    wrote on last edited by
    #9

    You need to tell configure where the sdk is. Please read the comment from SGaist.

    J 1 Reply Last reply
    0
    • N nikitablack

      You need to tell configure where the sdk is. Please read the comment from SGaist.

      J Offline
      J Offline
      JoseLMO
      wrote on last edited by
      #10

      @nikitablack How? I don't use QT before.

      1 Reply Last reply
      0
      • N Offline
        N Offline
        nikitablack
        wrote on last edited by
        #11

        You need to run configure and pass arguments, for example:

        configure -I $VULKAN_SDK/include -L $VULKAN_SDK/lib -v -feature-vulkan
        
        1 Reply Last reply
        1
        • J Offline
          J Offline
          JoseLMO
          wrote on last edited by
          #12

          The bash said:

          ERROR: Feature 'vulkan' was enabled, but the pre-condition 'libs.vulkan' failed.

          And $VULKAN_SDK is correct folder.

          1 Reply Last reply
          0
          • T Offline
            T Offline
            Tadinu
            wrote on last edited by Tadinu
            #13

            @SGaist Since I tried to run the example project Hello Vulkan Cubes but it just signaled this error:

            Failed to load vulkan: Cannot load library vulkan: (vulkan: cannot open shared object file: No such file or directory)
            initInstance: No Vulkan library available
            Failed to create platform Vulkan instance
            Failed to create Vulkan instance: 0
            

            Regarding the latest status of Vulkan feature supporting in the prebuilt version for Linux, do we have it already enabled for Qt 5.15?

            Thank you.

            Pablo J. RoginaP 1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #14

              From your error message do you have the Vulcan dependencies installed on your system ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • T Offline
                T Offline
                Tadinu
                wrote on last edited by Tadinu
                #15

                Yeap, this is my vulkaninfo command output and I also have VULKAN_SDK set in QtCreator environment variables, thus I could build the example fine, but it just failed at runtime:
                https://drive.google.com/file/d/1pd9AGdC88KiN03e7bZzonkifd2jsRlZx/view?usp=sharing
                This is my graphics card info:

                +-----------------------------------------------------------------------------+
                | NVIDIA-SMI 455.26.02    Driver Version: 455.26.02    CUDA Version: 11.1     |
                |-------------------------------+----------------------+----------------------+
                | GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
                | Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
                |                               |                      |               MIG M. |
                |===============================+======================+======================|
                |   0  GeForce RTX 208...  Off  | 00000000:01:00.0  On |                  N/A |
                | 35%   32C    P8    24W / 260W |   1209MiB / 11016MiB |      6%      Default |
                |                               |                      |                  N/A |
                +-------------------------------+----------------------+----------------------+
                                                                                               
                +-----------------------------------------------------------------------------+
                | Processes:                                                                  |
                |  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
                |        ID   ID                                                   Usage      |
                |=============================================================================|
                |    0   N/A  N/A      2256      G   /usr/lib/xorg/Xorg                568MiB |
                |    0   N/A  N/A      2579      G   /usr/bin/gnome-shell              155MiB |
                |    0   N/A  N/A      3404      G   ...AAAAAAAAA= --shared-files       88MiB |
                |    0   N/A  N/A      3553      G   ...AAAAAAAAA= --shared-files      390MiB |
                |    0   N/A  N/A      5623      G   ...s/QtCreator/bin/qtcreator        3MiB |
                +-----------------------------------------------------------------------------+
                
                1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #16

                  What did you install on your system for the Vulkan part ?

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • T Offline
                    T Offline
                    Tadinu
                    wrote on last edited by
                    #17

                    I just have the Vulkan SDK in a local folder and install this NVIDIA driver Linux 455.26.02, which supports VK_KHR_ray_tracing extension from this link:
                    https://developer.nvidia.com/vulkan-driver

                    1 Reply Last reply
                    0
                    • SGaistS Offline
                      SGaistS Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on last edited by
                      #18

                      It would be nice to have more details about the SDK like the version you have, the way you got it and installed it, etc.

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      0
                      • T Offline
                        T Offline
                        Tadinu
                        wrote on last edited by
                        #19

                        Yeah, so my Vulkan SDK version is 1.2.154.0 from their official page:
                        https://vulkan.lunarg.com/sdk/home#linux

                        I just extracted to a folder then set VULKAN_SDK to its path.
                        I actually tried with two of my latest current Linux NVIDIA driver as the proprietary 455 and the Beta one 455.26.2.

                        So I doubt that in order to run Vulkan examples by Qt, should I install the Vulkan using sudo apt install vulkan-sdk, which I might dread will conflict with the NVIDIA driver. I remember having some bad experience with it.

                        1 Reply Last reply
                        0
                        • T Tadinu

                          @SGaist Since I tried to run the example project Hello Vulkan Cubes but it just signaled this error:

                          Failed to load vulkan: Cannot load library vulkan: (vulkan: cannot open shared object file: No such file or directory)
                          initInstance: No Vulkan library available
                          Failed to create platform Vulkan instance
                          Failed to create Vulkan instance: 0
                          

                          Regarding the latest status of Vulkan feature supporting in the prebuilt version for Linux, do we have it already enabled for Qt 5.15?

                          Thank you.

                          Pablo J. RoginaP Offline
                          Pablo J. RoginaP Offline
                          Pablo J. Rogina
                          wrote on last edited by
                          #20

                          @Tadinu said in How to configure for Vulkan?:

                          Failed to load vulkan: Cannot load library vulkan: (vulkan: cannot open shared object file: No such file or directory)

                          Have you try setting updating LD_LIBRARY_PATH variable to reflect the proper location of the Vulkan library(ies)?

                          Upvote the answer(s) that helped you solve the issue
                          Use "Topic Tools" button to mark your post as Solved
                          Add screenshots via postimage.org
                          Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                          1 Reply Last reply
                          0
                          • T Offline
                            T Offline
                            Tadinu
                            wrote on last edited by Tadinu
                            #21

                            Yeah, I would normally avoid updating LD_LIBRARY_PATH. So I added this to ~/QT/Examples/Qt-5.15.1/vulkan/hellovulkancubes/hellovulkancubes.pro file:

                            LIBS += -lvulkan -L<PATH_TO_VULKAN_SDK>/1.2.154.0/x86_64/lib
                            

                            And it works!

                            Thanks for your advice!

                            1 Reply Last reply
                            0
                            • J Offline
                              J Offline
                              JackLiu
                              wrote on last edited by
                              #22

                              I found an interesting piece of information that

                              -recheck-all
                              

                              is needed if it has been configured before.

                              1 Reply Last reply
                              0

                              • Login

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Categories
                              • Recent
                              • Tags
                              • Popular
                              • Users
                              • Groups
                              • Search
                              • Get Qt Extensions
                              • Unsolved