473,322 Members | 1,431 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,322 software developers and data experts.

Performance analysis

Hi,

my newly created application (a mixture of .net code and C++ Dlls) seems to
soak a lot of processor time - even more than i expected. Now, there might be
a bottleneck in my application but I can't figure out where.
That's why I'm looking for a tool (doesn't matter if commercial or not),
that is...

- able to do performance analysis on .net windows services
- able to both analyse C++- code and .net code
- able to give me exact information about the functions that soak the
processor time (e.g. percentual values)

Does such a tool exist? does anyone have some experience with such tools?

thanks a lot
Peter
Jul 21 '05 #1
5 2255
Peter Schmitz wrote:
Hi,

my newly created application (a mixture of .net code and C++ Dlls)
seems to soak a lot of processor time - even more than i expected.
Now, there might be a bottleneck in my application but I can't figure
out where.
That's why I'm looking for a tool (doesn't matter if commercial or
not), that is...

- able to do performance analysis on .net windows services
- able to both analyse C++- code and .net code
- able to give me exact information about the functions that soak the
processor time (e.g. percentual values)

Does such a tool exist? does anyone have some experience with such
tools?


I highly recommend VTune from Intel

http://developer.intel.com/software/.../vpa/index.htm

It's awesome. It's also $699, but when you need it, my experience has been
that it's worth it.

-cd
Jul 21 '05 #2
"Peter Schmitz" <Pe**********@discussions.microsoft.com> ::
Does such a tool exist? does anyone have some experience with such tools?


Go to http://www.compuware.com and find
DevPartner Profiler Community Edition.

It is for free as a Community Edition.

Greets

--
Mateusz £oskot
mateusz (at) loskot (dot) net
Jul 21 '05 #3
"Peter Schmitz" <Pe**********@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
Hi,

my newly created application (a mixture of .net code and C++ Dlls) seems
to
soak a lot of processor time - even more than i expected. Now, there might
be
a bottleneck in my application but I can't figure out where.
That's why I'm looking for a tool (doesn't matter if commercial or not),
that is...

- able to do performance analysis on .net windows services
- able to both analyse C++- code and .net code
- able to give me exact information about the functions that soak the
processor time (e.g. percentual values)

Does such a tool exist? does anyone have some experience with such tools?


Hi,

We use a product called GlowCode - it's cheaper than VTune (I, nor Intel's
tech people could get VTune installed, so I can't vouch for its relative
merits, but I'm sure it's very good) and works for mixed mode C++
applications, but I don't know about services. They have a trial at
www.glowcode.com (ignore the really cheesy looking front page). I've found
that its UI could be a bit more intuitive, but we had loads of trouble
tracking down a mixed mode profiler.

Steve
Jul 21 '05 #4
"Peter Schmitz" <Pe**********@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...

my newly created application (a mixture of .net code and C++ Dlls) seems to soak a lot of processor time - even more than i expected. Now, there might be a bottleneck in my application but I can't figure out where.
That's why I'm looking for a tool (doesn't matter if commercial or not),
that is...

- able to do performance analysis on .net windows services
- able to both analyse C++- code and .net code
- able to give me exact information about the functions that soak the
processor time (e.g. percentual values)

Does such a tool exist? does anyone have some experience with such tools?


We offer profiler tools.
We don't have one tool that profiles both languages.
We *do* have profiler tools for C++ and C#, that can coexist.

See http://www.semanticdesigns.com/Products/Profilers
--
Ira D. Baxter, Ph.D., CTO 512-250-1018
Semantic Designs, Inc. www.semdesigns.com
Jul 21 '05 #5

"Peter Schmitz" <Pe**********@discussions.microsoft.com> wrote in message news:A7**********************************@microsof t.com...
Hi,

my newly created application (a mixture of .net code and C++ Dlls) seems to
soak a lot of processor time - even more than i expected. Now, there might be
a bottleneck in my application but I can't figure out where.
That's why I'm looking for a tool (doesn't matter if commercial or not),
that is...

- able to do performance analysis on .net windows services
- able to both analyse C++- code and .net code
- able to give me exact information about the functions that soak the
processor time (e.g. percentual values)

Does such a tool exist? does anyone have some experience with such tools?

thanks a lot
Peter


The C/C++ Program Perfometer at http://sourceforge.net/projects/cpp-perfometer/ is an open source tool which enables the programmer
to measure the comparative performance of a C/C++ program or of separated pieces of code by one of several desired metrics: e.g.,
time, memory, or metrics defined by the programmer.
Newsgroups:
* http://news.gmane.org/gmane.comp.lang.c++.perfometer
* news://news.gmane.org/gmane.comp.lang.c++.perfometer
* http://groups-beta.google.com/group/perfo

--
Alex Vinokur
email: alex DOT vinokur AT gmail DOT com
http://mathforum.org/library/view/10978.html
http://sourceforge.net/users/alexvn

Jul 21 '05 #6

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

Similar topics

25
by: Brian Patterson | last post by:
I have noticed in the book of words that hasattr works by calling getattr and raising an exception if no such attribute exists. If I need the value in any case, am I better off using getattr...
1
by: Chris Finlayson | last post by:
Hi all - I'd like to do performance analysis of a non-distributed app written in unmanaged C++ code in Visual Studio .NET 2003 Enterprise. The advent of all the new .NET features has my head...
15
by: kostas | last post by:
Hi, Trying to dump a set<int(s) in a vector (v) my guess was that v.insert(v.end(),s.begin(),s.end()) would be at least as efficient as copy(s.begin(), s.end(), back_inserter(v)) It turn out...
1
by: Ted | last post by:
I have cross posted this to comp.lang.c++ and to sci.math.num- analysis in the belief that the topic is of interest to some in both groups. I am building my toolkit, in support of my efforts in...
5
OraMaster
by: OraMaster | last post by:
Hi All, Please suggest how to improve performance of below SQL to me. I tried but it's not showing any improvement. Thanks in advance!!! SELECT ci.ind_cst_key AS q39_key , ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.