1,742 questions
0
votes
0
answers
35
views
Profile selected functions in Python
I can profile and visualize my entire application with:
python -m cProfile -o program.prof my_program.py
snakeviz program.prof
Is it possible to write a decorator that will profile only some ...
0
votes
0
answers
18
views
Can Apple Silicon GPU / MPS profiles be viewed in Chrome or other profile viewer (not XCode)?
I am trying to view MPS in software that is not XCode for which an Apple account is needed.
Most other hardware (CPU, XPU, NVIDIA GPUs, etc.) allow easy profiling in torch.
Can the profiles generated ...
0
votes
0
answers
14
views
Visual VM is not showing Profiler tab for Containerized Application
I am running a Micronaut Dockerized Application based on adoptopenjdk/openjdk11:alpine and trying to profile it using VisaulVm 2.1 but it's not showing Profile and Sampler Tab.
I can see VisualVm JDK ...
1
vote
0
answers
16
views
Android Studio Profiler error with navController with CoroutineScope(). Can anyone give me why?
I did solve the problem by just simply removing coroutineScope from navigate function, but I'd be grateful if someone can give me why.
My App starts from Route.Init and moves to Route.Home by using ...
0
votes
0
answers
70
views
Visual Studio profiler for C++ for a model driven profject using ecore and uml metamodels
I have been working on something similar like this. I am working on a project which follows model driven approach in c++ using ecore, uml metamodel. I was looking for a way to profile c++ codes for ...
1
vote
1
answer
58
views
Lua debug hook triggers different amount of call/returning events if error occurred during execution
I'm writing a lua script profiler in C, and I found the lua_sethook C API. I expected the hook to trigger balanced amounts of entering/leaving events, so I can mesure the time cost of every function.
...
1
vote
0
answers
18
views
How do I use other views in IDEA profiler?
I open .jfr file in IntelliJ IDEA and start analyzing it.
I open "Events" tab: "Operating System" -> "Processor" -> "Thread CPU Load"
I get the following ...
0
votes
0
answers
89
views
Performing Code Coverage on a .NET Core Project Using a Java Automation Project with TestNG
Using a Java automation project, I'm trying to perform code coverage on a dotnet project.
It worked when I did it on Windows OS, using dotnet-cover.
The steps are:
dotnet-coverage collect -id test1 -...
0
votes
1
answer
139
views
MASSIVE GC allocation (60+MB) What the hell is going on?
I have a problem that I need your help to solve. I am unity profiler newbie so please bare with me.... I'm currently profiling our game, which is already live and quite large, and I noticed something ...
0
votes
0
answers
198
views
Error running Visual Studio’s instrumented performance profiler
We have a very complex application containing a mixture of native and managed code. In total, we have C, C++, C++ CLI, Fortran, and C#, all in one application.
I'd really like to use the ...
0
votes
0
answers
31
views
Empty spaces in the IntelliJ Idea Profiler timeline
I see empty spaces in the timeline view in IntelliJ Idea profiler. Does someone know what they are?
The related Jetbrains page says only:
Red vertical bars indicate thread sleeping state
Green ...
4
votes
1
answer
91
views
How to combine ClassTransforms in the new Java 22 ClassFile Preview API
This is a very specific question regarding a very new feature. For context: I am writing my Bachelor Thesis about Runtime Code Generation in Java, and I'm working on a prototype for a profiler where I ...
0
votes
0
answers
29
views
Analysing tensorflow profiler data
I am trying to optimise a model training and I have collected some data through the profiler. I need some help interpreting and finding the probable cause for the data displayed in the profiler
Device ...
1
vote
2
answers
202
views
SymFromAddr() causes Access violation reading location 0xFFFFFFFFFFFFFFFF
I am currently trying to write a simple profiler based on this tutorial. It uses SymFromAddr() of the dbghlp.h library to resolve function addresses to their names. The function addresses are passed ...
0
votes
0
answers
42
views
deep traceback calls in neural network profiling
I am working with a neural network that is supposed to recognize symmetries in images (using the MNIST dataset). Since it is implemented with PyTorch, I wanted to optimize the runtime on a GPU and ...