Trusted Software Excellence across Desktop and Embedded
Take a glance at the areas of expertise where KDAB excels ranging from swift troubleshooting, ongoing consulting and training to multi-year, large-scale software development projects.
Find out why customers from innovative industries rely on our extensive expertise, including Medical, Biotech, Science, Renewable Energy, Transportation, Mobility, Aviation, Automation, Electronics, Agriculture and Defense.
High-quality Embedded Engineering across the Stack
To successfully develop an embedded device that meets your expectations regarding quality, budget and time to market, all parts of the project need to fit perfectly together.
Learn more about KDAB's expertise in embedded software development.
Where the capabilities of modern mobile devices or web browsers fall short, KDAB engineers help you expertly architect and build high-functioning desktop and workstation applications.
Extensible, Safety-compliant Software for the Medical Sector
Create intelligent, patient-focused medical software and devices and stay ahead with technology that adapts to your needs.
KDAB offers you expertise in developing a broad spectrum of clinical and home-healthcare devices, including but not limited to, internal imaging systems, robotic surgery devices, ventilators and non-invasive monitoring systems.
Building digital dashboards and cockpits with fluid animations and gesture-controlled touchscreens is a big challenge.
In over two decades of developing intricate UI solutions for cars, trucks, tractors, scooters, ships, airplanes and more, the KDAB team has gained market leading expertise in this realm.
Build on Advanced Expertise when creating Modern UIs
KDAB assists you in the creation of user-friendly interfaces designed specifically for industrial process control, manufacturing, and fabrication.
Our specialties encompass the custom design and development of HMIs, enabling product accessibility from embedded systems, remote desktops, and mobile devices on the move.
Legacy software is a growing but often ignored problem across all industries. KDAB helps you elevate your aging code base to meet the dynamic needs of the future.
Whether you want to migrate from an old to a modern GUI toolkit, update to a more recent version, or modernize your code base, you can rely on over 25 years of modernization experience.
KDAB offers a wide range of services to address your software needs including consulting, development, workshops and training tailored to your requirements.
Our expertise spans cross-platform desktop, embedded and 3D application development, using the proven technologies for the job.
When working with KDAB, the first-ever Qt consultancy, you benefit from a deep understanding of Qt internals, that allows us to provide effective solutions, irrespective of the depth or scale of your Qt project.
Qt Services include developing applications, building runtimes, mixing native and web technologies, solving performance issues, and porting problems.
KDAB helps create commercial, scientific or industrial desktop applications from scratch, or update its code or framework to benefit from modern features.
Discover clean, efficient solutions that precisely meet your requirements.
Boost your team's programming skills with in-depth, constantly updated, hands-on training courses delivered by active software engineers who love to teach and share their knowledge.
Our courses cover Modern C++, Qt/QML, Rust, 3D programming, Debugging, Profiling and more.
The collective expertise of KDAB's engineering team is at your disposal to help you choose the software stack for your project or master domain-specific challenges.
Our particular focus is on software technologies you use for cross-platform applications or for embedded devices.
Since 1999, KDAB has been the largest independent Qt consultancy worldwide and today is a Qt Platinum partner. Our experts can help you with any aspect of software development with Qt and QML.
KDAB specializes in Modern C++ development, with a focus on desktop applications, GUI, embedded software, and operating systems.
Our experts are industry-recognized contributors and trainers, leveraging C++'s power and relevance across these domains to deliver high-quality software solutions.
KDAB can guide you incorporating Rust into your project, from as overlapping element to your existing C++ codebase to a complete replacement of your legacy code.
Unique Expertise for Desktop and Embedded Platforms
Whether you are using Linux, Windows, MacOS, Android, iOS or real-time OS, KDAB helps you create performance optimized applications on your preferred platform.
If you are planning to create projects with Slint, a lightweight alternative to standard GUI frameworks especially on low-end hardware, you can rely on the expertise of KDAB being one of the earliest adopters and official service partner of Slint.
KDAB has deep expertise in embedded systems, which coupled with Flutter proficiency, allows us to provide comprehensive support throughout the software development lifecycle.
Our engineers are constantly contributing to the Flutter ecosystem, for example by developing flutter-pi, one of the most used embedders.
KDAB invests significant time in exploring new software technologies to maintain its position as software authority. Benefit from this research and incorporate it eventually into your own project.
Start here to browse infos on the KDAB website(s) and take advantage of useful developer resources like blogs, publications and videos about Qt, C++, Rust, 3D technologies like OpenGL and Vulkan, the KDAB developer tools and more.
The KDAB Youtube channel has become a go-to source for developers looking for high-quality tutorial and information material around software development with Qt/QML, C++, Rust and other technologies.
Click to navigate the all KDAB videos directly on this website.
In over 25 years KDAB has served hundreds of customers from various industries, many of them having become long-term customers who value our unique expertise and dedication.
Learn more about KDAB as a company, understand why we are considered a trusted partner by many and explore project examples in which we have proven to be the right supplier.
The KDAB Group is a globally recognized provider for software consulting, development and training, specializing in embedded devices and complex cross-platform desktop applications.
Read more about the history, the values, the team and the founder of the company.
When working with KDAB you can expect quality software and the desired business outcomes thanks to decades of experience gathered in hundreds of projects of different sizes in various industries.
Have a look at selected examples where KDAB has helped customers to succeed with their projects.
KDAB is committed to developing high-quality and high-performance software, and helping other developers deliver to the same high standards.
We create software with pride to improve your engineering and your business, making your products more resilient and maintainable with better performance.
KDAB has been the first certified Qt consulting and software development company in the world, and continues to deliver quality processes that meet or exceed the highest expectations.
In KDAB we value practical software development experience and skills higher than academic degrees. We strive to ensure equal treatment of all our employees regardless of age, ethnicity, gender, sexual orientation, nationality.
Interested? Read more about working at KDAB and how to apply for a job in software engineering or business administration.
I have used Linux perf a lot over the past years. It is an extremely powerful and useful tool. But its complexity makes it very hard to use. You need to know and enable quite a few options of perf report before the results become understandable. To educate people, I started giving talks on the subject at various conferences. Additionally, KDAB now also offers a training about Debugging and Profiling tools, with a large section on Linux perf. Finally, I started contributing upstream to make perf more usable for my needs as a C++ application developer.
But all this time I kept thinking: Why can't we have a proper GUI for Linux perf? Something similar to KCachegrind would already be quite helpful. And I knew I'm not the only one with that wish - over the years I heard many people complain about a lack of a decent GUI for Linux perf. Thankfully, KDAB gave me the opportunity to fix this issue. Today, I am finally confident enough to release a first version of hotspot to the wider public. Download hotspot v1.0.0 from GitHub, it's free and open source software!
What is hotspot?
First and foremost, hotspot is a replacement for perf report. It is a GUI that takes a perf.data file, parses and evaluates its contents and then displays the result in a graphical way. The screenshots show the most important current features in action:
The summary view of hotspot gives a quick overview of the analyzed perf.data file and the system it was recorded on.
The bottom-up view displays the aggregated sample costs from where the cost is actually spent. This shows the hot functions in your code base.
The top-down view of hotspot allows you to drill-down the call graph to find the most costly functions in your code base.
Hotspot comes with a built-in flamegraph visualization. It is interactive and allows searching, zooming and more.
Hotspots caller / callee view aggregates the data like KCachegrinds main table view. This is useful to find unexpected costs of frames in the middle of the call stacks.
Compared to perf report, hotspot has the following advantages in my opinion:
The interactive GUI with tooltips makes it easier to analyze the data in different ways. And you don't need to restart the tool to switch between top-down or bottom-up views. You can also easily search the views for symbols or change the sort order on the fly.
Overall, we aim at making hotspot as intuitive as possible - it will be a long way but already it's quite usable. We always include inline frames and show (in the caller/callee view) the source file and line information. Just open a perf.data file with hotspot, no need to remember the magic invocation perf report -g srcline -s dso,sym,srcline --inline.
Additionally, hotspot has the ability to display multiple events in one view, as shown in the screenshots above. E.g. when you record data with perf record -e cycles,instructions, perf report will show you a menu to select either cycles, or instructions. But it does not show both costs side-by-side.
The top-down, bottom-up and caller/callee aggregations are hopefully more intuitive in hotspot. I have seen many people struggle with understanding the default aggregation of perf report, which is a combination of a Caller/Callee view and the Top-Down view. Hotspot splits uses visualizations known from other tools like KCachegrind, VTune or heaptrack, making it more familiar and easier to understand for newcomers.
The built-in flamegraph is a killer feature. It is easily the most important feature of hotspot. I have used it many times already to find optimization opportunities even in large code bases.
Full support for cross-machine analysis as required for embedded development. perf report is, even today, lacking proper cross-platform unwinding support to analyze a perf.data file recorded on a 32bit ARM machine on a x86(-64) machine. The other combinations between aarch64 and x86(-64) work, but at least in my day-to-day work, I still have to work a lot with 32bit ARM embedded boards, making perf report rather useless. Additionally, perf report only knows the single --symfs command line switch to set the sysroot. For many situations, this is not enough, e.g. when you deploy hand-compiled code manually from outside the sysroot. Hotspot comes with four options for that purpose: --sysroot, --debugPaths, --appPath, --extraLibPaths. Have a look at hotspot --help for more information, or head over to the official README.
Overall, I encourage you to try it out. Hotspot depends on a few external libraries, such as elfutils, Qt 5.6+ and some KDE Frameworks. On modern distributions, it should be straightforward to compile it. If you have any issues, read the documentation, and report bugs you encounter in the issue tracker.
What is hotspot not (yet)?
I have so far concentrated on making hotspot a good replacement for the common perf report use-case. But the perf tool suite is extremely large and versatile. Many of the more advanced analysis routines are not yet supported by hotspot. On the roadmap for the next release of hotspot, we plan to add the following features:
Off-CPU profiling via the scheduler tracepoints, to find lock contention, sleeps and I/O wait time
Visualization of events in a per-thread timeline (proof of concept is available in the wip/timeline branch)
Filtering by time slices selected in the timeline
Extended aggregation and filtering capabilities, i.e. by:
CPU core
process
thread
DSO
file
Further improve the usability by adding more context-sensitive documentation and information
Directly run perf record from within hotspot, such that you don't need to type perf --call-graph dwarf all the time. My colleague Nate is working on that already.
In the long term, I also consider making hotspot a generic GUI for all kinds of performance data - it could e.g. become the analysis frontend for heaptrack data.
Also note that hotspot is intended to be a standalone application. I have no intention to integrate it in an IDE. If you are looking for such a thing, have a look at QtCreator's CPU Usage Analyzer. It shares the same backend with hotspot and has many of the same visualizations available in hotspot.
If you are interested in the project and want to help out, please contribute! You can submit patches via GitHub pull requests.
Thanks
I would like to end this announcement by saying thank you to a couple of people who have helped me bring this project to fruition:
My employer KDAB, for setting aside a budget for such R&D projects and allowing me to release the result as FOSS
My colleagues at KDAB who have contributed a lot to this project, giving me valuable feedback and reporting bugs early
Ulf Hermann from The Qt Company, the author of perfparser and the CPU Usage Analyzer in Qt Creator. Without his prior work, I would be far from where I'm today. I hope my contributions upstream make up for it!
All the people who have worked on Linux perf over the years - it's amazing to see how powerful it has become!
CMake Error at CMakeLists.txt:9 (message):
The perfparser git submodule is not initialized.
Please run the following commands in the source directory
(/home/PACKAGES/hotspot-v1.0.0):
git submodule update --init --recursive
git submodule update --init --recursive
fatal: Not a git repository (or any parent up to mount point /home)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Trying to clone:
git clone git@github.com:KDAB/hotspot.git
Cloning into 'hotspot'...
Warning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Milian Wolff has a long history of creating tools for C++ developers. He’s the main author of Massif-Visualizer, heaptrack, hotspot and ctf2ctf tools now used widely to improve C++ applications performance. He’s a Senior Software Engineer at KDAB where he enjoys solving hard performance problems and teaching developers about debugging and profiling tools. Milian has a Masters Degree in Physics.
Our hands-on Modern C++ training courses are designed to quickly familiarize newcomers with the language. They also update professional C++ developers on the latest changes in the language and standard library introduced in recent C++ editions.
8 - Jul - 2017
Martin Koller