Search Results

2
votes
5answers
3k views

Parse a file using C++, load the value to a structure

Hi, I have the following file/line: pc=1 ct=1 av=112 cv=1100 cp=1700 rec=2 p=10001 g=0 a=0 sz=5 cr=200 pc=1 ct=1 av=113 cv=1110 cp=1800 rec=2 p=10001 g=0 a=10 sz=5 cr=200 …
6
votes
7answers
6k views

C++ Timer function to provide time in nano seconds

I wish to calculate the time it took for an API to return a value. The time taken for such an action is in the space of nano seconds. As the API is a C++ class/function, I am using the timer.h to c …
2
votes
8answers
824 views

Initializing struct, using an array

I have a couple of array's: const string a_strs[] = {"cr=1", "ag=2", "gnd=U", "prl=12", "av=123", "sz=345", "rc=6", "pc=12345"}; const string b_strs[] = {"cr=2", "sz=345", "ag=10", …
0
votes
6answers
349 views

Implementing threads using C++

I have an API call in my application where I am checking the time taken for a single call. I have put this in a FOR loop and using 10000 calls to get the average times of all calls. Now the issue w …
4
votes
3answers
2k views

Multithreading using the boost library

Wish to simultaneously call a function multiple times. I wish to use threads to call a function which will utilize the machines capability to the fullest. This is a 8 core machine, and my requireme …
2
votes
1answer
180 views

how to check performance of a c++ api

my web server has a lot of dependencies for sending back data, when it gets a request. i am testing one of these dependency applications within the web server. the application is decoupled from the …
0
votes
2answers
124 views

Adding values from file to a hash type structure in C++

I have a space separated file which contains some key->value pairs. These are to be loaded to a structure of the type given below: #define FV_PARAM1 "A" #define FV_PARAM2 "B" param …
0
votes
2answers
212 views

Calling a function with different number of threads passed to the application

I have a function which needs to be invoked with a different number of threads each time (am doing some performance calculation, so need to know when the performance starts deteriorating). Example …
3
votes
1answer
333 views

Capture CPU and Memory usage dynamically

I am running a shell script to execute a c++ application, which measures the performance of an api. i can capture the latency (time taken to return a value for a given set of parameters) of the api …
2
votes

Output ASCII Value C++

Just use the following, you have already answered your question: using namespace std; int main() { char test = 0x53; std::cout << test << std::endl; return …
3
votes

C++ Timer function to provide time in nano seconds

I am using the following to get the desired results: #include <time> #include <iostream> using namespace std; int main (int argc, char** argv) { // reset the clock …