python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
c - what is the most efficient way to copying a string?
what is the most efficient way for the cpu (benchmark way) to copy a string?
I am new to c and i am currently copying a string like this
char a[]="copy me";
char b[sizeof(a)];
fo...

dn70a
Votes: 0
Answers: 3
How exactly does JMH do the calculations?Where in the code or in which file can you see the process and formula for calculating "score" and "error"?
How exactly does JMH do the calculations? Where in the code or in which file can you see the process and formula for calculating "score" and "error"?
CopyOnWriteBenchmark.testAdd ...
ТудыСюды
Votes: 0
Answers: 1
How can I benchmark or profile an embedded ARM platform emulated?
I'm developing performance sensitive code for an embedded platform. In general, there are multiple ways to test for an embedded platform, and I'm doing so by developing on a full Linux machine, using...
SRobertJames
Votes: 0
Answers: 0
Same compute intensive function running on two different cores resulting in different latency
#include <pthread.h>
#include <fcntl.h>
#include <unistd.h>
#include <iostream>
#include <chrono>
using namespace std;
static inline void stick_this_thread_to_core(int...

avernus
Votes: 0
Answers: 1