Setepenre

Results 20 comments of Setepenre

* Standard CI runtime is 50min to 1h 5m 51s * Without EVC the runtime is 40min Gains of 10 to 20 minutes https://github.com/Epistimio/orion/actions/runs/2264818555

It does look good, I used falcon because that is what is currently used in the repo. The falcon way looks a bit verbose indeed

I don't believe the library will impact us in a significant way. It is akin to selecting a logging library, their purpose is very well defined and it will not...

I have a similar issue [output][1]. The issue was reproducible using a simple python script provided [here][2] * `rcprof -o result.atp -p -w . micro.py --network resnet18 --batch-size 32 --iterations...

Actually I have an even smaller example. It does not even use the GPU ``` > vi hello.py #!/usr/bin/env python print('hello') > chmod +x hello.py > rcprof -o result.atp -p...

Eigen is a bit faster, I think the speedup will grow if matrices get bigger. Eigen also provide SparseMatrice & solver that could be interesting to experiment with. ``` |...

Yeah I also tried coz with one of my program and it generated and empty `profile.coz`. So I tried the provided examples and the the profiles were also empty. I...

Yes, I did. I actually changed the compiler to clang-9 for my program and the profile.coz was populated. So it hints towards an issue linked to gcc 8.3.0. I also...

I have the same issue with the provided example ``` $ sudo apt-get install coz-profiler $ g++ histogram-pthread.c -g -gdwarf-3 -ldl -lpthread $ coz run --- ./a.out test.bmp $ cat...

I get the same result using Github CI https://github.com/Delaunay/coz/actions/runs/3441236143/jobs/5740560689#step:5:821 ``` name: benchmark on: [push] jobs: histogram: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.9 uses: actions/setup-python@v2...