mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-27 00:21:11 +08:00
289 lines
6.8 KiB
C++
289 lines
6.8 KiB
C++
//#define FULL_DISABLE_PROFILER
|
|
#include "profiler/profiler.h"
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <condition_variable>
|
|
#include "profiler/reader.h"
|
|
#include <cstdlib>
|
|
#include <math.h>
|
|
|
|
std::condition_variable cv;
|
|
std::mutex cv_m;
|
|
int g_i = 0;
|
|
|
|
int OBJECTS = 500;
|
|
int RENDER_SPEPS = 1600;
|
|
int MODELLING_STEPS = 1000;
|
|
int RESOURCE_LOADING_COUNT = 50;
|
|
|
|
void localSleep(int magic=200000)
|
|
{
|
|
//PROFILER_BEGIN_FUNCTION_BLOCK_GROUPED(profiler::colors::Blue);
|
|
volatile int i = 0;
|
|
for (; i < magic; ++i);
|
|
}
|
|
|
|
void loadingResources(){
|
|
EASY_FUNCTION(profiler::colors::Darkcyan);
|
|
localSleep();
|
|
// std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
|
}
|
|
|
|
void prepareMath(){
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
int* intarray = new int[OBJECTS];
|
|
for (int i = 0; i < OBJECTS; ++i)
|
|
intarray[i] = i * i;
|
|
delete[] intarray;
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(3));
|
|
}
|
|
|
|
void calcIntersect(){
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
//int* intarray = new int[OBJECTS * OBJECTS];
|
|
int* intarray = new int[OBJECTS];
|
|
for (int i = 0; i < OBJECTS; ++i)
|
|
{
|
|
for (int j = i; j < OBJECTS; ++j)
|
|
//intarray[i * OBJECTS + j] = i * j - i / 2 + (OBJECTS - j) * 5;
|
|
intarray[j] = i * j - i / 2 + (OBJECTS - j) * 5;
|
|
}
|
|
delete[] intarray;
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(4));
|
|
}
|
|
|
|
double multModel(double i)
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
return i * sin(i) * cos(i);
|
|
}
|
|
|
|
void calcPhys(){
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
double* intarray = new double[OBJECTS];
|
|
for (int i = 0; i < OBJECTS; ++i)
|
|
intarray[i] = multModel(double(i)) + double(i / 3) - double((OBJECTS - i) / 2);
|
|
calcIntersect();
|
|
delete[] intarray;
|
|
}
|
|
|
|
double calcSubbrain(int i)
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
return i * i * i - i / 10 + (OBJECTS - i) * 7 ;
|
|
}
|
|
|
|
void calcBrain(){
|
|
EASY_FUNCTION(profiler::colors::Blue);
|
|
double* intarray = new double[OBJECTS];
|
|
for (int i = 0; i < OBJECTS; ++i)
|
|
intarray[i] = calcSubbrain(i) + double(i * 180 / 3);
|
|
delete[] intarray;
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(3));
|
|
}
|
|
|
|
void calculateBehavior(){
|
|
EASY_FUNCTION(profiler::colors::Darkblue);
|
|
calcPhys();
|
|
calcBrain();
|
|
}
|
|
|
|
void modellingStep(){
|
|
EASY_FUNCTION(profiler::colors::Navy);
|
|
prepareMath();
|
|
calculateBehavior();
|
|
}
|
|
|
|
void prepareRender(){
|
|
EASY_FUNCTION(profiler::colors::Darkred);
|
|
localSleep();
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(8));
|
|
|
|
}
|
|
|
|
int multPhys(int i)
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
return i * i * i * i / 100;
|
|
}
|
|
|
|
int calcPhysicForObject(int i)
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
return multPhys(i) + i / 3 - (OBJECTS - i) * 15;
|
|
}
|
|
|
|
void calculatePhysics(){
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
unsigned int* intarray = new unsigned int[OBJECTS];
|
|
for (int i = 0; i < OBJECTS; ++i)
|
|
intarray[i] = calcPhysicForObject(i);
|
|
delete[] intarray;
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(8));
|
|
}
|
|
|
|
void frame(){
|
|
EASY_FUNCTION(profiler::colors::Magenta);
|
|
prepareRender();
|
|
calculatePhysics();
|
|
}
|
|
|
|
void loadingResourcesThread(){
|
|
//std::unique_lock<std::mutex> lk(cv_m);
|
|
//cv.wait(lk, []{return g_i == 1; });
|
|
EASY_THREAD("Resource loading");
|
|
for(int i = 0; i < RESOURCE_LOADING_COUNT; i++){
|
|
loadingResources();
|
|
EASY_EVENT("Resources Loading!", profiler::colors::Cyan);
|
|
localSleep(1200000);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
}
|
|
|
|
void modellingThread(){
|
|
//std::unique_lock<std::mutex> lk(cv_m);
|
|
//cv.wait(lk, []{return g_i == 1; });
|
|
EASY_THREAD("Modelling");
|
|
for (int i = 0; i < RENDER_SPEPS; i++){
|
|
modellingStep();
|
|
localSleep(1200000);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
}
|
|
|
|
void renderThread(){
|
|
//std::unique_lock<std::mutex> lk(cv_m);
|
|
//cv.wait(lk, []{return g_i == 1; });
|
|
EASY_THREAD("Render");
|
|
for (int i = 0; i < MODELLING_STEPS; i++){
|
|
frame();
|
|
localSleep(1200000);
|
|
//std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
}
|
|
|
|
void four()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(37));
|
|
}
|
|
|
|
void five()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(20));
|
|
}
|
|
void six()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(42));
|
|
}
|
|
|
|
void three()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
four();
|
|
five();
|
|
six();
|
|
}
|
|
|
|
void seven()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(147));
|
|
}
|
|
|
|
void two()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(26));
|
|
}
|
|
|
|
void one()
|
|
{
|
|
EASY_FUNCTION(profiler::colors::Red);
|
|
two();
|
|
three();
|
|
seven();
|
|
}
|
|
|
|
/*
|
|
one
|
|
two
|
|
three
|
|
four
|
|
five
|
|
six
|
|
seven
|
|
*/
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if (argc > 1 && argv[1]){
|
|
OBJECTS = std::atoi(argv[1]);
|
|
}
|
|
if (argc > 2 && argv[2]){
|
|
RENDER_SPEPS = std::atoi(argv[2]);
|
|
}
|
|
if (argc > 3 && argv[3]){
|
|
MODELLING_STEPS = std::atoi(argv[3]);
|
|
}
|
|
if (argc > 4 && argv[4]){
|
|
RESOURCE_LOADING_COUNT = std::atoi(argv[4]);
|
|
}
|
|
|
|
std::cout << "Objects count: " << OBJECTS << std::endl;
|
|
std::cout << "Render steps: " << RENDER_SPEPS << std::endl;
|
|
std::cout << "Modelling steps: " << MODELLING_STEPS << std::endl;
|
|
std::cout << "Resource loading count: " << RESOURCE_LOADING_COUNT << std::endl;
|
|
|
|
auto start = std::chrono::system_clock::now();
|
|
EASY_PROFILER_ENABLE;
|
|
EASY_MAIN_THREAD;
|
|
//one();
|
|
//one();
|
|
/**/
|
|
std::vector<std::thread> threads;
|
|
|
|
std::thread render = std::thread(renderThread);
|
|
std::thread modelling = std::thread(modellingThread);
|
|
|
|
|
|
for(int i=0; i < 3; i++){
|
|
threads.emplace_back(std::thread(loadingResourcesThread));
|
|
threads.emplace_back(std::thread(renderThread));
|
|
threads.emplace_back(std::thread(modellingThread));
|
|
}
|
|
{
|
|
std::lock_guard<std::mutex> lk(cv_m);
|
|
g_i = 1;
|
|
}
|
|
cv.notify_all();
|
|
|
|
for (int i = 0; i < RENDER_SPEPS; ++i) {
|
|
modellingStep();
|
|
localSleep(1200000);
|
|
}
|
|
|
|
render.join();
|
|
modelling.join();
|
|
for(auto& t : threads){
|
|
t.join();
|
|
}
|
|
/**/
|
|
|
|
auto end = std::chrono::system_clock::now();
|
|
auto elapsed =
|
|
std::chrono::duration_cast<std::chrono::microseconds>(end - start);
|
|
|
|
std::cout << "Elapsed time: " << elapsed.count() << " usec" << std::endl;
|
|
|
|
auto blocks_count = profiler::dumpBlocksToFile("test.prof");
|
|
|
|
std::cout << "Blocks count: " << blocks_count << std::endl;
|
|
|
|
return 0;
|
|
}
|