vis
vis

Reputation: 2279

F# profiling tools in Visual Studio 11

As a student I have access to VS2010 Pro only which does not provide good profiling tools so you can tune performance of your F# (or other) multithreaded programs. It would seem that Visual Studio 11 Pro Beta has the Concurrency Visualizer and other Analysis tools.

Could anyone confirm if these are the same tools that are available in VS2010 Premium/Ultimate? An overview of the available tools in VS11 and their use would be useful.

EDIT From the MSDN VS2010 documentation (here), it is clear that the Profiling Tools are restricted to VS Premium and Ultimate only.

For VS11 Beta, the documentation (here) does not (yet) say in which editions the tools will be available. Concurrency Visualizer has many new additions and hopefully it stays in the Pro edition.

This page gives a good overview of the new stuff in VS11 Beta, including profiling and analysis tools.

Upvotes: 1

Views: 343

Answers (1)

John Palmer
John Palmer

Reputation: 25516

There are no profiling tools in VS2010 Pro. However there are many profilers you can use. In particular Mono has a good profiler. The Eqatec profiler is also quite good.

Upvotes: 1

Related Questions