tagged [profiling]
Good Profiler for C# 2010?
Good Profiler for C# 2010? I love the profiler for Visual Studio Ultimate 2010. But I do not have $8,000 or whatever it costs to just get that functionality. Are there any profilers that are just as g...
- Modified
- 12 Apr at 23:12
How to measure time taken by a function to execute
How to measure time taken by a function to execute I need to get execution time in milliseconds. > I originally asked this question back in 2008. The accepted answer then was to use [new Date().getTim...
- Modified
- 22 Jul at 08:35
How to measure time taken between lines of code in python?
How to measure time taken between lines of code in python? So in Java, we can do [How to measure time taken by a function to execute](https://stackoverflow.com/questions/313893/how-to-measure-time-tak...
Simplest way to profile a PHP script
Simplest way to profile a PHP script What's the easiest way to profile a PHP script? I'd love tacking something on that shows me a dump of all function calls and how long they took but I'm also OK wit...
How do I profile and optimize an XSLT?
How do I profile and optimize an XSLT? I have an XSLT for viewing XML files in the browser. The XSLT is naively written and currently takes a long time to execute (several minutes). My XML file is of ...
- Modified
- 12 Jan at 09:59
How do I profile memory usage in Python?
How do I profile memory usage in Python? I've recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it in various ways. I'm alrea...
Where is the Query Analyzer in SQL Server Management Studio 2008 R2?
Where is the Query Analyzer in SQL Server Management Studio 2008 R2? I have some SQL thats getting run and it is taking to long to return the results / parse / display, etc. in a asp.net c# applicatio...
- Modified
- 23 Sep at 01:58
Memory Leaks in C# WPF
Memory Leaks in C# WPF I could use some advice on tracking down the cause of memory leaks in C#. I understand what is a memory leak and I get why they occur in C# but I'm wondering what tools/strategi...
- Modified
- 22 Oct at 23:31
Measuring execution time of a function in C++
Measuring execution time of a function in C++ I want to find out how much time a certain function takes in my C++ program to execute on . Afterwards, I want to make a speed comparison . I saw several ...
- Modified
- 17 Dec at 12:12
Metabase error when trying to use Visual Studios Profiler on an ASP.Net site
Metabase error when trying to use Visual Studios Profiler on an ASP.Net site I'm trying to run the performance wizard on an ASP.Net website. However, whenever I try to start it I get the following err...
Diagnosing the .NET Legacy
Diagnosing the .NET Legacy Assume you are taking over a legacy .NET app. written in C# What are the top 5 diagnostic measures, profiling or otherwise that you would employ to assess the health of the ...
- Modified
- 23 Jul at 21:8
Calculate summary statistics of columns in dataframe
Calculate summary statistics of columns in dataframe I have a dataframe of the following form (for example) ``` shopper_num,is_martian,number_of_items,count_pineapples,birth_country,tranpsortation_met...
Error while profiling with VS: Unable to open profiler driver
Error while profiling with VS: Unable to open profiler driver I am running Windows 8 with UAC which is possible to do by changing a [registry setting](http://www.eightforums.com/system-security/2434-d...
- Modified
- 4 Jan at 18:6
"Unmanaged memory" at profiler diagram. Is this a memory leak indication?
"Unmanaged memory" at profiler diagram. Is this a memory leak indication? I've faced with this diagram, when profiling memory usage of my application: ![enter image description here](https://i.stack.i...
- Modified
- 20 Jul at 07:3
Benchmarking small code samples in C#, can this implementation be improved?
Benchmarking small code samples in C#, can this implementation be improved? Quite often on SO I find myself benchmarking small chunks of code to see which implemnetation is fastest. Quite often I see ...
- Modified
- 21 May at 15:33
Explicitly freeing memory in c#
Explicitly freeing memory in c# I've create a c# application which uses up 150mb of memory (private bytes), mainly due to a big dictionary: I was wondering how to free this memory up. I've tried this:...
- Modified
- 10 Apr at 12:6
Application runs faster with visual studio performance analysis
Application runs faster with visual studio performance analysis I am investigating for how many time it takes for a particular operation to complete. The operation is like the following: The `SaveSche...
- Modified
- 17 Aug at 09:51
Profiling C# and mscorlib.ni.dll
Profiling C# and mscorlib.ni.dll I am currently profiling a console application with CPU sampling. The OS is Windows 8 Enterprise 64 bit with Microsoft Visual Studio Ultimate 2012 Update 4. I see that...
- Modified
- 23 May at 10:30
EF6 SQLQuery very slow but database is very fast
EF6 SQLQuery very slow but database is very fast I have a performance problem we have done a bunch of analysis and are stuck. Hopefully one of you have seen this before. I'm calling `DbContext.Databas...
- Modified
- 7 Aug at 12:48
How to hide miniprofiler?
How to hide miniprofiler? I'm using MVC Mini profiler to check the speed of specific parts of my application, and would like to keep it there just in case something happens later and I may need to che...
- Modified
- 30 Sep at 00:20
Is it possible to use visual studio performance profiling with service fabric?
Is it possible to use visual studio performance profiling with service fabric? Hopefully this is simple... I want to performance profile my service fabric cluster. So far I: - Go to Start Diagnostics ...
- Modified
- 8 Jun at 14:48
CLR profiler: issue in using DefineAssemblyRef
CLR profiler: issue in using DefineAssemblyRef I want to write a CLR profiler to hook our application function with `GetILFunctionBody/SetILFunctionBody`. I want to use DefineAssemblyRef to import o...
- Modified
- 26 Feb at 18:47
If you have a Java application that is consuming CPU when it isn't doing anything, how do you determine what it is doing?
If you have a Java application that is consuming CPU when it isn't doing anything, how do you determine what it is doing? I am calling a vendor's Java API, and on some servers it appears that the JVM ...
Advanced debugging advice in WPF GarbageCollection
Advanced debugging advice in WPF GarbageCollection We are running a large WPF application which does not release memory for quite some time. It is not a real memory leak, as the memory will be release...
- Modified
- 26 Nov at 16:4
VS2013: Memory profiler doesn't show anything on a specific project
VS2013: Memory profiler doesn't show anything on a specific project I want to use the memory profiler of the visual studio 2013 ultimate for profiling a WPF application. But there seems to be a proble...
- Modified
- 23 May at 11:54