473,785 Members | 2,842 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2395
li********@gmai l.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********@gmai l.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 "substantia l"), 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.use rs?) 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 "substantia l"), 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.use rs?) 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********@gmai l.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
7756
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 thread should stop running. Here is basically a stub of what I am doing: Code:
4
2517
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
7271
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
42630
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 giving the user a prompt for data input. I am failing to get the prompt while the thread is running, what am I doing wrong?
3
6816
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 pattern. gcc-4.1.2 however complains with errors about my use of boost::bind(). Doesn't bind support this way of specifying a function and its arguments or should I solve it in another way?
2
2335
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
2379
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 is supposed to update widget content. So if I want to wait for the thread to end in the event handler, I have 2 threads waiting on each other - with the one in the background waiting to access the widget content. My current workaround is to...
1
1937
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 failed: p_ != 0, file .\boost/intrusive_ptr.hpp, line 126" (thread holds NULL pointer to thread function) I've tested this code under gcc 3.4 (mingw32) and gcc 3.2 (linux) - it worked fine in both cases.
19
3399
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 out there on the Internet on how to design *thread-safe* *efficient* data- structures? /Nordlöw
0
9480
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10327
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10151
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10092
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7499
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3647
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.