473,405 Members | 2,167 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

No proformance improvement using boost::thread on a Duo Core PC

I used a boost multi thread in VS 2005 on a Duo Core PC, and made a two
thread process.

The code is something like this:

#include <boost/thread/thread.hpp>

void fun1()
{
//do something
}

void fun2()
{
//do something
}
int _tmain(int argc, _TCHAR* argv[])
{

boost::thread thrd(&fun1);
boost::thread thrd2(&fun2);
thrd.join();
thrd2.join();
return 0;
}

It can run, but run on only one of the two cores. The CPU usage is 50%.
Isn't that multi-thread can improve proformance on multi-core CPU?

Any help would be appreciated.

Nov 16 '06 #1
5 2362
li********@gmail.com wrote:
Isn't that multi-thread can improve proformance on multi-core CPU?
Multi-core CPUs improve multithreading performance, not the other way
around.

Nov 16 '06 #2

li********@gmail.com skrev:
I used a boost multi thread in VS 2005 on a Duo Core PC, and made a two
thread process.

The code is something like this:

#include <boost/thread/thread.hpp>

void fun1()
{
//do something
}

void fun2()
{
//do something
}
int _tmain(int argc, _TCHAR* argv[])
{

boost::thread thrd(&fun1);
boost::thread thrd2(&fun2);
thrd.join();
thrd2.join();
return 0;
}

It can run, but run on only one of the two cores. The CPU usage is 50%.
Isn't that multi-thread can improve proformance on multi-core CPU?
If only one cpu is used and both fun1 and fun2 are doing something
measurable (that is the operations are "substantial"), there is
something wrong somewhere. One thing that could go wrong is that the
two functions depend on each other, so that when fun1 runs fun2 can not
possibly run.
My suggestion would be that you tried to perform some dummy
calculations in the functions (e.g. calculating some million
trigonometric results on local values). If only cpu is used in this
case, you should ask further in a some group related to boost
(comp.boost.users?) or one related to the operating system you use.

/Peter

Nov 16 '06 #3
Thank you very much!! Peter.

I found that if I used

cout<<

in these two threads, then these two threads can only run on same core.

I kick out cout, then two cores were both used.
It can run, but run on only one of the two cores. The CPU usage is 50%.
Isn't that multi-thread can improve proformance on multi-core CPU?

If only one cpu is used and both fun1 and fun2 are doing something
measurable (that is the operations are "substantial"), there is
something wrong somewhere. One thing that could go wrong is that the
two functions depend on each other, so that when fun1 runs fun2 can not
possibly run.
My suggestion would be that you tried to perform some dummy
calculations in the functions (e.g. calculating some million
trigonometric results on local values). If only cpu is used in this
case, you should ask further in a some group related to boost
(comp.boost.users?) or one related to the operating system you use.

/Peter
Nov 16 '06 #4
Sorry, I made a big mistake.

Finally I found that even I use "cout<<" in both thread, I still can
use two cores at the same time.

But if I do so, the proformance will become so low that made me fell I
use only one core.

li********@gmail.com ¼g¹D¡G
Thank you very much!! Peter.

I found that if I used

cout<<

in these two threads, then these two threads can only run on same core.

I kick out cout, then two cores were both used.
Nov 17 '06 #5
Sorry, I made a big mistake.
>
Finally I found that even I use "cout<<" in both thread, I still can
use two cores at the same time.

But if I do so, the proformance will become so low that made me fell I
use only one core.

of course, you can't measure performance by io operations.
do some calculations in both threads, and you will see the benefit of
duo core cpu.

Nov 17 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: deluded.soul | last post by:
Hi everyone, I am trying to use the boost multithreading library. I am having a problem as the join() function for the thread never returns. I am using a boolean variable to indicate when the...
4
by: Lighter | last post by:
#include <boost/thread/thread.hpp> #include <iostream> using namespace std; using namespace boost; void hello() { cout << "Hello world, I'm a thread!" << endl; }
3
by: Gary Wessle | last post by:
#include <boost/thread/thread.hpp> #include <iostream> using namespace std; class waiter { public: waiter(); void waiting(); void preform();
4
by: Gary Wessle | last post by:
Hi given the Boost thread example here http://www-eleves-isia.cma.fr/documentation/BoostDoc/boost_1_29_0/libs/thread/example/thread.cpp the code below attempts to run the example thread while...
3
by: =?iso-8859-1?B?Tm9yZGz2dw==?= | last post by:
Hey there, C++ Coders! I am learning multi-threading with boost and have come up with the following code example shown below. This example implements a test of the producer-consumer design...
2
by: Chameleon | last post by:
Why this strange output? Why so many d'tor calls? The code: ---------------------------------------------------------- #include <cstdio> #include <boost/thread/thread.hpp> class A {
3
by: Lars Uffmann | last post by:
I have this wxWidgets OnButtonClick event handler, that apparently holds a lock on all widgets in my form, but this event handler is supposed to end a thread in the background - while that thread...
1
by: Boogie | last post by:
Hi, A specific problem arises when I try to use boost::thread 1.35.0 with Borland Turbo 2006. Code below compiles but when run it throws (in commented line - thread creation): "assertion...
19
by: =?ISO-8859-1?Q?Nordl=F6w?= | last post by:
I am currently designing a synchronized queue used to communicate between threads. Is the code given below a good solution? Am I using mutex lock/unlock more than needed? Are there any resources...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.