Results 1 to 3 of 3

Thread: Advice on Qt Framework qualification for cutom hardware

  1. #1
    Join Date
    May 2012
    Posts
    1
    Qt products
    Qt4 Qt/Embedded
    Platforms
    Unix/X11 Windows Maemo/MeeGo

    Default Advice on Qt Framework qualification for cutom hardware

    Hi Everyone,

    I am trying to evaluate Qt6.5 Framework for a specific custom hardware using GPU to qualify.
    Anyone have any idea on what are all the components i need to verify with respect to HW.
    my main target is to check the UI responsiveness, Memory utilizations, leaks, CPU utilization etc.,

    -Vijay

  2. #2
    Join Date
    Jan 2008
    Location
    Alameda, CA, USA
    Posts
    5,266
    Thanks
    308
    Thanked 868 Times in 855 Posts
    Qt products
    Qt5
    Platforms
    Windows

    Default Re: Advice on Qt Framework qualification for cutom hardware

    Your question is so broad that it is impossible to give any kind of answer.

    Qt uses an event-driven architecture to respond to hardware and GUI inputs. If you write an application in such a way that Qt can never service its event loop (for example, a compute-intensive application that never gives execution control back to Qt), then the GUI will be frozen and the event loop cannot respond to inputs that generate events (like input ready to read on a serial port or mouse clicks).

    There are no particular problems using a GPU in a Qt application as long as you return control from the GPU side frequently enough to keep the GUI "alive". Alternatively, you could run the GPU code from a non-GUI thread and use inter-thread signals and slots to feed data back to the GUI for display.
    <=== The Great Pumpkin says ===>
    Please use CODE tags when posting source code so it is more readable. Click "Go Advanced" and then the "#" icon to insert the tags. Paste your code between them.

  3. #3
    Join Date
    Nov 2024
    Posts
    5
    Qt products
    Qt3
    Platforms
    MacOS X

    Default Re: Advice on Qt Framework qualification for cutom hardware

    Quote Originally Posted by uvijay View Post
    Hi Everyone,

    I am trying to evaluate Qt6.5 Framework for a specific custom Block Blast hardware using GPU to qualify.
    Anyone have any idea on what are all the components i need to verify with respect to HW.
    my main target is to check the UI responsiveness, Memory utilizations, leaks, CPU utilization etc.,

    -Vijay
    To evaluate Qt6.5 on your custom hardware, focus on testing UI responsiveness using Qt's QTest and profiler tools, and monitor memory utilization and leaks with tools like Valgrind or AddressSanitizer. Assess CPU and GPU utilization through Qt Quick Profiler, and consider using OpenGL or Vulkan profiling for GPU performance.

Similar Threads

  1. QT4 vs QT2: hardware requirements
    By Yuri T in forum Qt for Embedded and Mobile
    Replies: 7
    Last Post: 9th December 2016, 10:52
  2. Replies: 4
    Last Post: 30th May 2010, 13:55
  3. advice on logging framework and packaging
    By angeshwar in forum Qt Programming
    Replies: 2
    Last Post: 26th October 2009, 10:12
  4. How to use Hardware cursor
    By arunvv in forum Newbie
    Replies: 0
    Last Post: 17th September 2008, 00:38
  5. Extra qualification error while compiling the project file
    By amit_pansuria in forum Qt Programming
    Replies: 1
    Last Post: 8th June 2007, 08:56

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.