Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
317 views

when doing Nginx stress test by running test cmd: wrk -t1 -c40 -d50s http://127.0.0.1:80, I find the worker process of Nginx is not using 100% CPU, it is only 70% (from top command). I have tried ...
zwy's user avatar
  • 139
1 vote
0 answers
142 views

I have programmatically set up perf in such a way to allow for direct reading of PMU registers by following perf docs and the ARM register summary. Below is how I have set up perf to configure the CPU ...
Kron's user avatar
  • 193
0 votes
0 answers
154 views

I am trying to figure out some performance issues in my spring boot application. A code block is running within a for loop and taking a lot of time(there are no network calls). I want to identify the ...
deathByChocolate's user avatar
5 votes
0 answers
408 views

The test suite I am executing is taking long time to finish. The suite is mainly integration tests involving database. I'd like to find out possible bottlenecks and shorten the test execution time. ...
Karel Frajták's user avatar
1 vote
1 answer
671 views

The "new" flame graph in Google pprof is uniformly pink on my machine (Mac OS 10). Is this supposed to happen? It's not as nice as the old flame graph, so I wonder if something is not ...
landau's user avatar
  • 5,891
4 votes
1 answer
634 views

I am using perf_event_open in my c profiling app to leverage perf in getting event data. In order to improve performance, I am reading the hardware registers directly by following the Perf Userspace ...
Kron's user avatar
  • 193
0 votes
0 answers
19 views

There is a complex multi-threaded program running in my system, which performs various types of operations. At the same time, I cannot access its source code. I want to analyze the potential impact of ...
Frontier_Setter's user avatar
1 vote
0 answers
70 views

I'm running a Python script to find flight routes using a dataset with around 20k flights containing ~4000 flights each day. When profiling the code with cProfile, I print that the cumulative time ...
terrabl's user avatar
  • 964
1 vote
0 answers
284 views

I have a project of a 64-bit Windows application in Rad Studio 11 (pre-existing project, not my choice, moving to another toolchain is not an option). The language is C++ (C++17). So far, I've been ...
Abstraction's user avatar
  • 1,662
1 vote
1 answer
335 views

Trying to profile my app locally and it isn't working. It's saying Profiling is not supported on java versions prior to 1.8. If you're using oracle jdk prior to version 11, or hotspot jdk prior to ...
Spider's user avatar
  • 465
1 vote
1 answer
205 views

I have an issue where some code is taking a very long time to complete, so I tried to profile the CPU usage, and the area of the graph that contains the lag has absolutely no methods to display. In ...
John Glen's user avatar
  • 966
2 votes
1 answer
434 views

I am trying to optimize a program. The program do not make use of heap. I would like to profile the size of the stack to see: How big is the stack? Where the stack reach its peak? What is the trend ...
Vincenzo Greco's user avatar
1 vote
0 answers
142 views

Is there an option i am missing that i couldnt find? i have searched the internets and all the articles show the flat profile in milliseconds without any added option tags, but my gprof outputs the ...
Pato Srna's user avatar
  • 110
-2 votes
2 answers
634 views

i am trying to debug why my spring boot application takes around 200-ms to respond to an API, and for subsequent hits of same API it takes around 10-ms. no caching is involved in API. I am using ...
Rajat Aggarwal's user avatar
2 votes
0 answers
92 views

I am attempting to monitor PERF_TYPE_HW_CACHE events. I have found that I am able to measure read accesses and misses for each cache, but if I try to measure write or prefetch accesses/misses the ...
Kron's user avatar
  • 193
0 votes
0 answers
43 views

I have captured the gprof profiler output while running a c++ program. I got below logs I found that there are two functions which are consuming most time ie receiveXappMessages and load() function. I ...
myquest9 sh's user avatar
0 votes
1 answer
59 views

I am attempting to profile a Python app that uses the fastavro library. I am profiling using the Datadog Profiler I run the application using the command ddtrace-run python -m app.main I enable the ...
nosajsnikta's user avatar
2 votes
1 answer
644 views

New to Nsight and GPU programming. I need a way to evaluate the affect my code has on power usage in the GPU. This article from 2013 shows that the feature was part of Nsight's toolset at some point, ...
Lauren Vk's user avatar
1 vote
1 answer
1k views

I am new to threading in Python. I am trying to make a game using PyGame where a CPU-heavy function gets its own thread, and where another function (that gets user input and renders graphics to the ...
keepitwiel's user avatar
0 votes
1 answer
148 views

today I used https://github.com/async-profiler/async-profiler to check the CPU usage of my Spring Boot app (just a normal backend) in production. Surprisingly, Lettuce (Redis) + Mybatis (MySQL) take ...
ch271828n's user avatar
  • 17.9k
1 vote
1 answer
551 views

I am facing a delay in my flutter app at startup for android, the delay is before execution of dart code begins. Mostly it is due to Geolocator plugin. I have raised a ticket with them, however I want ...
hrishikesh rajwade's user avatar
2 votes
0 answers
111 views

I'm afraid I couldn't come up with a better term for what I want to ask about, other than "inlined/expanded assembly" - but let me try to explain through an example. The example will be for ...
sdbbs's user avatar
  • 5,948
0 votes
0 answers
306 views

As mentioned in the title, I'm having my first steps, using the performance profiler in Visual Studio on a C# application, and I have following questions: When starting up the performance profiler, ...
Dominique's user avatar
  • 17.6k
1 vote
0 answers
181 views

I'm training reinforcement learning models using tensorflow (Python) but since few weeks I can't run my code anymore on my macbook air (Monteray 12.5) with M2 chip. I get this error /AppleInternal/...
Aydin Abiar's user avatar
0 votes
2 answers
1k views

Trying to profile a python script using cProfile. It has subfiles being called encoder.py and decoder.py in the directory "modules" in "transformer". When I profile it, error shows ...
Avatar's user avatar
  • 1