Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cpu X | 1,588 | 9 hours ago | 1 | gpl-3.0 | C | |||||
CPU-X is a Free software that gathers information on CPU, motherboard and more | ||||||||||
1m Go Tcp Server | 1,237 | 2 years ago | 2 | April 15, 2021 | 3 | Go | ||||
benchmarks for implementation of servers which support 1 million connections | ||||||||||
Boomer | 1,070 | 2 | 7 | 10 days ago | 18 | February 22, 2022 | 9 | mit | Go | |
A better load generator for locust, written in golang. | ||||||||||
Oceananigans.jl | 770 | 2 days ago | 137 | mit | Julia | |||||
🌊 Julia software for fast, friendly, flexible, ocean-flavored fluid dynamics on CPUs and GPUs | ||||||||||
Grpc_bench | 724 | 20 days ago | 22 | mit | Shell | |||||
Various gRPC benchmarks | ||||||||||
Chillout | 577 | 3 | 4 | a year ago | 26 | January 23, 2020 | 8 | mit | JavaScript | |
Reduce CPU usage by non-blocking async loop and psychologically speed up in JavaScript | ||||||||||
Nench | 489 | 3 years ago | 3 | apache-2.0 | Shell | |||||
VPS benchmark script — based on the popular bench.sh, plus CPU and ioping tests, and dual-stack IPv4 and v6 speedtests by default | ||||||||||
Sbc Bench | 457 | 6 hours ago | 1 | bsd-3-clause | Shell | |||||
Simple benchmark for single board computers | ||||||||||
Sympact | 439 | 4 | 8 | 5 years ago | 7 | May 28, 2018 | 3 | mit | JavaScript | |
🔥 Simple stupid CPU/MEM "Profiler" for your JS code. | ||||||||||
Fastfusion | 427 | 7 years ago | 23 | gpl-2.0 | C++ | |||||
Volumetric 3D Mapping in Real-Time on a CPU |
This repository contains the benchmark suite associated with the paper "Benchmarking and Workload Analysis of Robot Dynamics Algorithms", submitted to IROS 2019.
@inproceedings{neuman2019benchmarking,
title={Benchmarking and workload analysis of robot dynamics algorithms},
author={Neuman, Sabrina M and Koolen, Twan and Drean, Jules and Miller, Jason E and Devadas, Srinivas},
booktitle={2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
pages={5235--5242},
year={2019},
organization={IEEE}
}
description
contains robot modelsexperiments
contains scripts to run experimentsinput_data_gen
contains scripts to generate input datalibs
contains the rbd librariestestbenches
contains the testbench code used by the experimentsOptional/Generated Directories:
csv
contains generated input data in csv formatresults
is a directory to store experiment resultsrbd-benchmarks
is currently Linux-only, and uses Travis for continuous integration. Travis is currently set up to ensure that the code compiles on Ubuntu Xenial Xerus (16.04). rbd-benchmarks
has also been user-tested on Ubuntu Bionic Beaver (18.04). Other platforms are untested and as such unlikely to work out of the box.
Please see our Travis configuration file for an up-to-date list of dependencies. Note that while the version of Maxima (used by RobCoGen) available through apt
in Ubuntu 16.04 is not sufficiently up-to-date, the version that ships with Ubuntu 18.04 is.
In addition, you will need Julia 1.1, both to run benchmarks for RigidBodyDynamics.jl, and to generate robot description files and input test data. Binaries for Julia can be obtained from https://julialang.org/downloads/. After decompressing the archive, either:
JULIA
environment variable to point to the julia
executable: export JULIA=/path/to/julia/julia
julia
executable to the PATH
: export PATH=/path/to/julia/:$PATH
Finally, the C/C++ compiler to use may be specified by setting the CC
and CXX
environment variables. By default, the system C/C++ compiler will be used, which may be too old on Ubuntu 16.04 (symptom: linking errors while running make
in libs/rbdjl
).
After cloning the repository, please run
git submodule update --init --recursive
to initialize Git submodules.
To generate URDF and KINDSL files according to the process described in the paper, run
cd description
make
cd ..
If this errors, please ensure that submodules have been initialized (previous step).
To download and install the rigid body dynamics libraries under test (locally), run
cd libs
make # or make -j 4 to build the libraries in parallel with four make workers
cd ..
To generate the csv
directory containing .csv
files with library-specific random input data (with sample i
for each library representing the same physical state / torque input), run
cd input_data_gen
make
cd ..
This step is optional, and only required for the CPU instruction mix results.
To install the likwid hardware performance counter tools, run
cd likwid
make -j 4
sudo make install
cd ..
Note that likwid will be installed locally, but sudo
is required to chown
the locally installed files to root
, since these files need access to model-specific register device files.
Hardware performance counters differ per CPU architecture. Currently, only the Kaby Lake CPU architecture has been tested. Running the likwid experiments on other CPU architectures is likely to result in a program crash.
To run timing experiments (average time) for all libraries, run
experiments/run_all_time.sh
To record run times for each sample in a .csv
file for all libraries, run
experiments/run_all_terr.sh
To run likwid performance counter experiments, run
experiments/run_all_likwid.sh