Source profiling
-
I am writing a machine vision application that must process 5000 frames per second from a high-speed camera. I am writing in unmanaged C with Visual C++.NET. I have to find the bottlenecks in my code. As far as I can tell from the VS.NET documentation, the only performance analysis tools that ship with VS.NET are for profiling distributed web applications and are not suitable for fine-grained source-profiling of unmanaged code. Is there any way to profile the source code with Visual Studio.NET or do I have to slip back to Visual Studio 6.0? Why couldn't Science, in the long run, serve As well as one's uncleared lunch-table or Mme X en Culottes de Matador? James Merrill
-
I am writing a machine vision application that must process 5000 frames per second from a high-speed camera. I am writing in unmanaged C with Visual C++.NET. I have to find the bottlenecks in my code. As far as I can tell from the VS.NET documentation, the only performance analysis tools that ship with VS.NET are for profiling distributed web applications and are not suitable for fine-grained source-profiling of unmanaged code. Is there any way to profile the source code with Visual Studio.NET or do I have to slip back to Visual Studio 6.0? Why couldn't Science, in the long run, serve As well as one's uncleared lunch-table or Mme X en Culottes de Matador? James Merrill
http://nprof.sourceforge.net/[^] or the .NET profiler at Numega that is free . Cheers,Joao Vaz And if your dream is to care for your family, to put food on the table, to provide them with an education and a good home, then maybe suffering through an endless, pointless, boring job will seem to have purpose. And you will realize how even a rock can change the world, simply by remaining obstinately stationary.-Shog9 Remember just because a good thing comes to an end, doesn't mean that the next one can't be better.-Chris Meech
-
http://nprof.sourceforge.net/[^] or the .NET profiler at Numega that is free . Cheers,Joao Vaz And if your dream is to care for your family, to put food on the table, to provide them with an education and a good home, then maybe suffering through an endless, pointless, boring job will seem to have purpose. And you will realize how even a rock can change the world, simply by remaining obstinately stationary.-Shog9 Remember just because a good thing comes to an end, doesn't mean that the next one can't be better.-Chris Meech
Thanks, but as I wrote, my application does not use .NET. It's a native, unmanaged executable. All I seem to find are .NET profilers when what I want is something to profile native code.
-
Thanks, but as I wrote, my application does not use .NET. It's a native, unmanaged executable. All I seem to find are .NET profilers when what I want is something to profile native code.
http://www.compuware.com/products/devpartner/profiler/[^] The numega free community edition profiler suports profiling native vc++ , check the link to download it :-) Cheers,Joao Vaz And if your dream is to care for your family, to put food on the table, to provide them with an education and a good home, then maybe suffering through an endless, pointless, boring job will seem to have purpose. And you will realize how even a rock can change the world, simply by remaining obstinately stationary.-Shog9 Remember just because a good thing comes to an end, doesn't mean that the next one can't be better.-Chris Meech
-
http://www.compuware.com/products/devpartner/profiler/[^] The numega free community edition profiler suports profiling native vc++ , check the link to download it :-) Cheers,Joao Vaz And if your dream is to care for your family, to put food on the table, to provide them with an education and a good home, then maybe suffering through an endless, pointless, boring job will seem to have purpose. And you will realize how even a rock can change the world, simply by remaining obstinately stationary.-Shog9 Remember just because a good thing comes to an end, doesn't mean that the next one can't be better.-Chris Meech
Thanks. That's just what I needed. Why couldn't Science, in the long run, serve As well as one's uncleared lunch-table or Mme X en Culottes de Matador? James Merrill