Tagged Questions

QtConcurrent is a Qt framework namespace providing high-level multithreading APIs.

learn more… | top users | synonyms

6
votes
1answer
959 views

Updating a QProgressDialog with a QFuture

What's the proper way for the main GUI thread to update a QProgressDialog while waiting for a QFuture. Specifically, what goes in this loop: QProgressDialog pd(...); QFuture f = ...; while ...
4
votes
12answers
6k views

How to reduce CPU usage of a program?

I wrote a multi-threaded program which does some CPU heavy computation with a lot of floating point operations. More specifically, it's a program which compares animation sequences frame by frame. ...
3
votes
2answers
198 views

What happens to the thread affinity of a QObject created within a worker thread which then terminates?

Let's say I call QtConcurrent::run() which runs a function in a worker thread, and in that function I dynamically allocate several QObjects (for later use). Since they were created in the worker ...
2
votes
3answers
99 views

How does Qt bind pointers-to-non-static-member-functions in QtConcurrent?

From the QtConcurrent documentation: QByteArray bytearray = "hello world"; QFuture<QList<QByteArray> > future = QtConcurrent::run(bytearray, &QByteArray::split), ','); ... ...
2
votes
1answer
160 views

QFutureWatcher::progressValue returns a positive integer, but the min/max are both zero

The QFuture is iterating over a bidirectional iterator, which I assume is the root of the problem. However, the docs say that QFutureWatcher::progressValue "returns a value between progressMinimum ...
1
vote
2answers
104 views

QtConcurrent blockingMappedReduced error

This is my first attempt at using QtConcurrent::blockingMappedReduced, and I can't get it to build in MSVC 2010 Express (with QT 4.7.1 source code). I have created a small example that is similar to ...
1
vote
1answer
153 views

QtConcurrent::blockingMapped() and std::vector<> bug

It seems that QtConcurrent works fine with QT containers (QList and QVector), but fails with the STL containers, as opposed to what is claimed in the documentation Here are the dummy functions I want ...
1
vote
3answers
483 views

Using QtConcurrent to load a Pixmap and paint it

I'm trying to create a Tile rendering program. Heres some basic code. Header class Tile: public QGraphicsItem { public: Tile(void); ~Tile(void); QGraphicsPixmapItem *tileItem; void update(QPainter ...
0
votes
0answers
44 views

pass a fuction to QtConcurrent::map

Heres my desired code: class Machine { private: QSet<State*> states; State* step(State* st){/*...*/} public: void makeStep(){ //... `` QTConcurrent::map(states, step); ...
0
votes
3answers
583 views

QFuture that can be cancelled and report progress

The QFuture class has methods such as cancel(), progressValue(), etc. These can apparently be monitored via a QFutureWatcher. However, the documentation for QtConcurrent::run() reads: Note that ...
0
votes
1answer
188 views

QtConcurrent in QT for Symbian

I have a question about supporting of QtConcurrent in Qt for Symbian. I use Qt 4.6.2 but I'dont understant how to use QtConcurrent. All works fine on Wice platform in the same version of QT, but ...
0
votes
1answer
287 views

exception generated with qtconcurrent and calling QTime:currentTime

I seem to be getting an exception generated only with a thread created with Qtconcurrent::run I have a class named FPSengine which has a method named FPSengine::getData() that is called by the main ...
0
votes
2answers
276 views

Large number of simultaneous long-running operations in Qt

I have some long-running operations that number in the hundreds. At the moment they are each on their own thread. My main goal in using threads is not to speed these operations up. The more ...