Questions tagged [performance-analysis]
The performance-analysis tag has no summary.
69 questions
2
votes
0
answers
31
views
Most reliable version of "MemTest"
There are many programs for testing RAM integrity that are named some variation of "MemTest," like:
MemTest (HCi)
MemTest86 (PassMark)
MemTest64
MemTest86+ (which I think is a fork of an ...
1
vote
1
answer
245
views
Is there a software to measure the FLOPS and Raw Time of a C++ program?
I am running a C++ code which contains a Matrix multiplication of 2048 X 2048 matrices. Is there a library or a package or a software which can give me the Raw time and FLOPs for my program?
1
vote
0
answers
27
views
Fastest way to detect number of faces in an image
I know how to detect number of human faces in an image using dlib and opencv in Python. But I want to do it for a lot of images so I want to do it as fast as possible.
Will using any other language (...
1
vote
0
answers
146
views
Flame charts from perf.data
After generating a perf.data file with perf record, Brendan Gregg's excellent Flamegraph tool can produce an SVG.
Flamegraphs throw away the time axis and sort samples alphabetically, which is what ...
3
votes
2
answers
94
views
Something like fast.com for intranet?
Does anybody know a tool like https://fast.com or https://speedtest.net that can be deployed inside an intranet. I know about various benchmarking tools like iperf, but I'd like to have something that ...
1
vote
1
answer
276
views
Windows 64-bit C++ performance profiler to attach to a massively multi-threaded program
Could you please recommend a C++ performance profiler for Windows 64-bit that can attach to a running process and collect stack traces? The profiled program is massively-multithreaded: thousands of ...
1
vote
0
answers
36
views
Tools for organizing benchmark reports
I have an open-source project. We have some benchmarks.
For simplicity, let's assume that the output of each benchmark is a 2-D plot (i.e. a vector of [x, y] pairs).
Then, we have releases. After ...
0
votes
0
answers
25
views
Gratis MySql optimizer
I have gotten by until now with ensuing 3rd order norm and having good indexes & foreign keys.
Today an AJAX query is exceeding 30 seconds on a modest search (PHP builds JSON arrays for each ...
2
votes
0
answers
370
views
Index Analysis and Tuning tool for PostgreSQL, MySQL, and Oracle?
I have used SentryOne Plan Explorer to perform index tuning and index analysis with great success on SQL Server and Azure SQL Database.
What are some of the better equivalent tools to consider for ...
1
vote
3
answers
2k
views
How to check the CPU and memory usage of an executable?
I want to see the resources an executable uses when I run it from a command prompt/powershell.
Ideally it would be great to have a tool that does something like this straight from the command prompt:
....
2
votes
1
answer
271
views
Command line performance testing tool for JavaScript
I'm looking for a tool to provide performance analysis of various JavaScript functions.
ie If have some code that looks like this:
function solveTravelingSalesman(nodes) {
//solution
}
then I ...
1
vote
0
answers
172
views
Performance testing tool which supports OpenText Enterprise Information Management Application
We have a requirement for conducting performance test on OpenText EIM ( Content Server). What are the proven performance testing tools for testing OpentText EIM application?
Objectives:
Tool should ...
0
votes
0
answers
11
views
Tool to monitor the health / performance and statistics of our Elasticsearch, logstash, spark and kafka a installed on the Server
Server Information:
Server OS : CentOS 7.8
Installed Applications:
A) SPARK (v2.4.3_2.11)
B) KAFKA (v2.3.0_2.11)
C) ELASTICEARCH (6.x)
D) LOGSTASH (6.x)
Problem Statement:
What ...
1
vote
0
answers
49
views
Java Mission Control vs Java Flight Recorder
Jvisualvm and Java Mission Control both measure certain aspects of running Java code, come with the JDK, and can be found in $JAVA_HOME/bin. This Oracle web page has some good overview information. ...
1
vote
0
answers
42
views
Analysis tool for counting memory operations for C++ programs?
I need a software tool that can take an arbitrary program (specifically a C++ program) and count the memory operations (loads and stores) made by that program. I understand there are many different ...