├── .gitmodules ├── README.md ├── docs ├── images │ ├── BP_PIP_depth_map_modification.PNG │ ├── end_to_end_simulation.pdf │ ├── end_to_end_simulation.png │ ├── suite_horizontal.png │ ├── suite_vertical.png │ └── unreal_error.PNG └── read_me │ ├── FAQs.md │ ├── building.md │ ├── profiling.md │ └── running.md ├── pre_requisits.bash └── test_benches ├── configs ├── behzad_config.json ├── helloworld_config.json ├── run_games_config.json ├── scaling.json ├── scaling_tx2.json ├── scaling_x86_downstairs.json ├── scaling_x86_upstairs.json ├── scaling_xavier.json ├── wcui_config_desktop.json └── wcui_config_tx2.json └── scripts ├── clct_data.py ├── clct_data_diff_cores_freq.py ├── control_unreal.py ├── data_clct_conf_class.py ├── manipulate_json.py ├── run_games.py ├── signal_char_to_move.py ├── trigger.cpp └── trigger.exe /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/BP_PIP_depth_map_modification.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/BP_PIP_depth_map_modification.PNG -------------------------------------------------------------------------------- /docs/images/end_to_end_simulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/end_to_end_simulation.pdf -------------------------------------------------------------------------------- /docs/images/end_to_end_simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/end_to_end_simulation.png -------------------------------------------------------------------------------- /docs/images/suite_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/suite_horizontal.png -------------------------------------------------------------------------------- /docs/images/suite_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/suite_vertical.png -------------------------------------------------------------------------------- /docs/images/unreal_error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/images/unreal_error.PNG -------------------------------------------------------------------------------- /docs/read_me/FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/read_me/FAQs.md -------------------------------------------------------------------------------- /docs/read_me/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/read_me/building.md -------------------------------------------------------------------------------- /docs/read_me/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/read_me/profiling.md -------------------------------------------------------------------------------- /docs/read_me/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/docs/read_me/running.md -------------------------------------------------------------------------------- /pre_requisits.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/pre_requisits.bash -------------------------------------------------------------------------------- /test_benches/configs/behzad_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/behzad_config.json -------------------------------------------------------------------------------- /test_benches/configs/helloworld_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/helloworld_config.json -------------------------------------------------------------------------------- /test_benches/configs/run_games_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/run_games_config.json -------------------------------------------------------------------------------- /test_benches/configs/scaling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/scaling.json -------------------------------------------------------------------------------- /test_benches/configs/scaling_tx2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/scaling_tx2.json -------------------------------------------------------------------------------- /test_benches/configs/scaling_x86_downstairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/scaling_x86_downstairs.json -------------------------------------------------------------------------------- /test_benches/configs/scaling_x86_upstairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/scaling_x86_upstairs.json -------------------------------------------------------------------------------- /test_benches/configs/scaling_xavier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/scaling_xavier.json -------------------------------------------------------------------------------- /test_benches/configs/wcui_config_desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/wcui_config_desktop.json -------------------------------------------------------------------------------- /test_benches/configs/wcui_config_tx2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/configs/wcui_config_tx2.json -------------------------------------------------------------------------------- /test_benches/scripts/clct_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/clct_data.py -------------------------------------------------------------------------------- /test_benches/scripts/clct_data_diff_cores_freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/clct_data_diff_cores_freq.py -------------------------------------------------------------------------------- /test_benches/scripts/control_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/control_unreal.py -------------------------------------------------------------------------------- /test_benches/scripts/data_clct_conf_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/data_clct_conf_class.py -------------------------------------------------------------------------------- /test_benches/scripts/manipulate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/manipulate_json.py -------------------------------------------------------------------------------- /test_benches/scripts/run_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/run_games.py -------------------------------------------------------------------------------- /test_benches/scripts/signal_char_to_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/signal_char_to_move.py -------------------------------------------------------------------------------- /test_benches/scripts/trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/trigger.cpp -------------------------------------------------------------------------------- /test_benches/scripts/trigger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-edge/MAVBench/HEAD/test_benches/scripts/trigger.exe --------------------------------------------------------------------------------