digitalmars.D.learn - Profiling with DUB?
- Dukc (6/6) Oct 29 2018 I'm trying to profile my program, built like:
- Guillaume Piolat (5/11) Nov 01 2018 If you want to use sampling profilers (like the free Intel
- Dukc (7/19) Nov 05 2018 No, I want to use the default profiler.
- Dukc (3/6) Nov 06 2018 The same thing happens when I try to get a coverage report: No
I'm trying to profile my program, built like: dub build --build=profile When I run the program, where is the performance profile file supposed to appear? I can find nothing new in the program/project root directory. This happens regardless whether I compile with dmd or ldc2.
Oct 29 2018
On Monday, 29 October 2018 at 10:14:23 UTC, Dukc wrote:I'm trying to profile my program, built like: dub build --build=profile When I run the program, where is the performance profile file supposed to appear? I can find nothing new in the program/project root directory. This happens regardless whether I compile with dmd or ldc2.If you want to use sampling profilers (like the free Intel Amplifier coming with System Studio) you can also use dub build -b release-debug And then check in your profiler.
Nov 01 2018
On Thursday, 1 November 2018 at 13:59:39 UTC, Guillaume Piolat wrote:On Monday, 29 October 2018 at 10:14:23 UTC, Dukc wrote:No, I want to use the default profiler.I'm trying to profile my program, built like: dub build --build=profile When I run the program, where is the performance profile file supposed to appear? I can find nothing new in the program/project root directory. This happens regardless whether I compile with dmd or ldc2.If you want to use sampling profilers (like the free Intel Amplifier coming with System Studio) you can also useAnd then check in your profiler.How? That's the question. If the program is compiled with a profiling switch, isn't the performance profile supposed to appear on program directry after it finishes, when running it just like normal?
Nov 05 2018
On Monday, 29 October 2018 at 10:14:23 UTC, Dukc wrote:When I run the program, where is the performance profile file supposed to appear? I can find nothing new in the program/project root directory.The same thing happens when I try to get a coverage report: No file appears.
Nov 06 2018