Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Strange performance effects

Reply
Thread Tools

Strange performance effects

 
 
Roland
Guest
Posts: n/a
 
      01-20-2004
Hi!

I am working on a project in which i implement a mathematical
optimization algorithm. One of the requirements on the code is very
good performance. So i started to optimize a bit. Now i do have a very
strange effect which i do not understand. Maybe somebody knows about:

I have the following class

template<class T> class SimplexL2Penalty : public Function<T,T>
{
public:

ASIString GetTypeInfo() const;
SimplexL2Penalty(const Simplex<T>& simplex);
SimplexL2Penalty(const Simplex<T>& simplex,const T& weight);
SimplexL2Penalty(const Simplex<T>& simplex,const Vector<T>&
w);
SimplexL2Penalty(const SimplexL2Penalty& toBeCopied);
virtual ~SimplexL2Penalty();
T Evaluate(const Vector<T>& point) const;
void operator*= (const T& factor);
ASIString ToXML() const;
Function<T,T>* ConstructCopy() const;
ASI_FLOGIC LargerOrEqual(const T& value) const;
const VectorSet<T>* GetZeroSet();

protected:

Vector<T> ComputePerturbation(const Vector<T>& point) const;
Simplex<T> m_Simplex;
T* m_WeightVector;
T m_Factor;

//Vector<T> *m_PerturbationVector1;
};

This class is used in an iterative algorithm. Performance is about 500
iterations per second.
When i add the pointer m_PerturbationVector1 to the class (without
using it at all) performance drops to 250 iterations per second.

What is going on? What can i do to overcome this effect.

Thanks a lot,
Roland

PS: I am using Microsoft Visual C++ 6.0.
 
Reply With Quote
 
 
 
 
Victor Bazarov
Guest
Posts: n/a
 
      01-20-2004
"Roland" <roland-> wrote...
> I am working on a project in which i implement a mathematical
> optimization algorithm. One of the requirements on the code is very
> good performance. So i started to optimize a bit. Now i do have a very
> strange effect which i do not understand. Maybe somebody knows about:
>
> I have the following class


Actually, it's a template.

>
> template<class T> class SimplexL2Penalty : public Function<T,T>
> {
> public:
>
> ASIString GetTypeInfo() const;
> SimplexL2Penalty(const Simplex<T>& simplex);
> SimplexL2Penalty(const Simplex<T>& simplex,const T& weight);
> SimplexL2Penalty(const Simplex<T>& simplex,const Vector<T>&
> w);
> SimplexL2Penalty(const SimplexL2Penalty& toBeCopied);
> virtual ~SimplexL2Penalty();
> T Evaluate(const Vector<T>& point) const;
> void operator*= (const T& factor);
> ASIString ToXML() const;
> Function<T,T>* ConstructCopy() const;
> ASI_FLOGIC LargerOrEqual(const T& value) const;
> const VectorSet<T>* GetZeroSet();
>
> protected:
>
> Vector<T> ComputePerturbation(const Vector<T>& point) const;
> Simplex<T> m_Simplex;
> T* m_WeightVector;
> T m_Factor;
>
> //Vector<T> *m_PerturbationVector1;
> };
>
> This class is used in an iterative algorithm.


How? Don't you think it might matter?

> Performance is about 500
> iterations per second.
> When i add the pointer m_PerturbationVector1 to the class (without
> using it at all) performance drops to 250 iterations per second.
>
> What is going on?


Who the hell can tell? Without seeing how the template is used, your
guess is just as good as ours. It could be that the size causes some
kind of processor cache to be blown away more often, it could be that
allocating a bunch of them now requires more OS involvement... There
is no way to tell for certain.

> What can i do to overcome this effect.


Don't declare that member, since you're not using it.

Why don't you take a profiler and run your process through it with and
without the member. See if you can spot the difference. Then analyse.
Then come back and ask for assistance if you still need it.

Victor


 
Reply With Quote
 
 
 
 
Roland
Guest
Posts: n/a
 
      01-20-2004
"Victor Bazarov" <> wrote in message news:<Lx1Pb.88602$5V2.150409@attbi_s53>...
> "Roland" <roland-> wrote...
> > I am working on a project in which i implement a mathematical
> > optimization algorithm. One of the requirements on the code is very
> > good performance. So i started to optimize a bit. Now i do have a very
> > strange effect which i do not understand. Maybe somebody knows about:
> >
> > I have the following class

>
> Actually, it's a template.
>
> >
> > template<class T> class SimplexL2Penalty : public Function<T,T>
> > {
> > public:
> >
> > ASIString GetTypeInfo() const;
> > SimplexL2Penalty(const Simplex<T>& simplex);
> > SimplexL2Penalty(const Simplex<T>& simplex,const T& weight);
> > SimplexL2Penalty(const Simplex<T>& simplex,const Vector<T>&
> > w);
> > SimplexL2Penalty(const SimplexL2Penalty& toBeCopied);
> > virtual ~SimplexL2Penalty();
> > T Evaluate(const Vector<T>& point) const;
> > void operator*= (const T& factor);
> > ASIString ToXML() const;
> > Function<T,T>* ConstructCopy() const;
> > ASI_FLOGIC LargerOrEqual(const T& value) const;
> > const VectorSet<T>* GetZeroSet();
> >
> > protected:
> >
> > Vector<T> ComputePerturbation(const Vector<T>& point) const;
> > Simplex<T> m_Simplex;
> > T* m_WeightVector;
> > T m_Factor;
> >
> > //Vector<T> *m_PerturbationVector1;
> > };
> >
> > This class is used in an iterative algorithm.

>
> How? Don't you think it might matter?
>
> > Performance is about 500
> > iterations per second.
> > When i add the pointer m_PerturbationVector1 to the class (without
> > using it at all) performance drops to 250 iterations per second.
> >
> > What is going on?

>
> Who the hell can tell? Without seeing how the template is used, your
> guess is just as good as ours. It could be that the size causes some
> kind of processor cache to be blown away more often, it could be that
> allocating a bunch of them now requires more OS involvement... There
> is no way to tell for certain.
>
> > What can i do to overcome this effect.

>
> Don't declare that member, since you're not using it.
>
> Why don't you take a profiler and run your process through it with and
> without the member. See if you can spot the difference. Then analyse.
> Then come back and ask for assistance if you still need it.
>
> Victor


Thank you. Clearly i will not declare a member when not using it. On
the long run i will use it.

Since i am a mathematican i do not know much about technical aspects.
Obviously nobody can answer the question in detail using the
information provided. But some may guess what it could be. Just as you
did. And then i migth be able to look for a book or something to learn
about. That is what i hoped for.

Roland
 
Reply With Quote
 
Chris Theis
Guest
Posts: n/a
 
      01-20-2004

"Roland" <roland-> wrote in message
news: om...
[SNIP]
> Thank you. Clearly i will not declare a member when not using it. On
> the long run i will use it.
>
> Since i am a mathematican i do not know much about technical aspects.
> Obviously nobody can answer the question in detail using the
> information provided. But some may guess what it could be. Just as you
> did. And then i migth be able to look for a book or something to learn
> about. That is what i hoped for.


Sorry to disappoint you but guessing and optimization are two terms that
don't match very well. The whole problem starts with the term "optimizing a
bit". I'd recommend to profile your program first to determine where the
real bottleneck is before starting to fiddle around with the code. Keep in
mind that premature optimization is something that might even fire back!

Regards
Chris


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange effects from IE7 browser freezing on ASP site =?Utf-8?B?RGFu?= ASP .Net 7 04-30-2006 04:13 AM
Adobe After Effects 7.0 PRO, Adobe Premiere Pro 2.0 for Windows XP, and tutorials, Adobe After Effects Plugins Collection (WINMAC), updated 19/Jan/2006 code_fu@pathfinder.gr Digital Photography 0 02-02-2006 06:52 AM
Advice sought: strange effects... Nick Hopton Digital Photography 11 11-21-2005 11:11 AM
Removing session bean twice - strange effects in JBoss Alex Molochnikov Java 0 10-06-2005 01:35 AM
Calling DataBind() multiple times-- strange side effects? Jim Bancroft ASP .Net 2 12-28-2004 12:57 PM



Advertisments