1

When optimizing, or just as an educational tool, it is useful to be able to see exactly where stuff has gone in memory, visualizing allocations/deallocations, etc. I know Valgrind is used in the Linux world. What about in VS?

Carlos
  • 5,991
  • 6
  • 43
  • 82
  • 1
    Visual Studio 2012 Team edition comes with profiling tools, VTune is now called VTune Amplify XE – EdChum Dec 06 '12 at 17:43

1 Answers1

0

You have lots of choices

  1. Glow Code
  2. Intel VTune Amplify XE
  3. Visual Studio 2012 Team edition comes with profiling tools

None of the above are free

There is also AMD:

  1. AMD CodeAnalyst this is free but without all the bells and whistles of Intel's product

Also this is a related post

Community
  • 1
  • 1
EdChum
  • 376,765
  • 198
  • 813
  • 562