https://github.com/carla-simulator/carla
Raw File
Tip revision: ddbab76241c9f6590d8d23656726b48877793f43 authored by Marcel Pi on 27 October 2023, 17:48:56 UTC
Add python-based update script.
Tip revision: ddbab76
adv_benchmarking.md
# Benchmarking Performance

We provide a benchmarking script to enable users to easily analyze the performance of CARLA in their own environment. The script can be configured to run a number of scenarios that combine different maps, sensors and weather conditions. It reports the average and standard deviation of FPS under the requested scenarios. 

In this section we detail the requirements to run the benchmark, where to find the script, the flags available to customize the scenarios that are run and examples on how to run the commands.

We have also included our results of a separate benchmark which measures performance in CARLA in a specific environment when using different combinations of number of vehicles, enabling physics and/or enabling Traffic Manager. The results are presented alongside the CARLA version used and the environment the test was performed in.

- [__The benchmark script__](#the-benchmark-script)
    - [__Before you begin__](#before-you-begin)
    - [__Synopsis__](#synopsis)
        - [__Flags__](#flags)
- [__CARLA performance report__](#carla-performance-report)


---
## The benchmark script

The benchmark script can be found in `PythonAPI/util`. It has several flags available to customize the scenarios to be tested which are detailed in the synopsis below.


### Before you begin

The benchmarking script requires some dependencies to be installed before you can run it:

```python
python -m pip install -U py-cpuinfo==5.0.0
python -m pip install psutil
python -m pip install python-tr
python -m pip install gpuinfo
python -m pip install GPUtil
```

### Synopsis

`python3` [`performance_benchmark.py`](https://github.com/carla-simulator/carla/blob/master/PythonAPI/util/performance_benchmark.py) [`[--host HOST]`](#-host-ip_address) [`[--port PORT]`](#-port-port) [`[--file FILE]`](#-file-filenamemd) [`[--tm]`](#-tm)
[`[--ticks TICKS]`](#-ticks) [`[--sync]`](#-sync) [`[--async]`](#-async))
[`[--fixed_dt FIXED_DT]`](#-fixed_dt) [`[--render_mode]`](#-render_mode))
[`[--no_render_mode]`](#-no_render_mode) [`[--show_scenarios]`](#-show_scenarios))
[`[--sensors SENSORS [SENSORS ...]]`](#-sensors-integer))
[`[--maps MAPS [MAPS ...]]`](#-maps-townname))
[`[--weather WEATHER [WEATHER ...]]`](#-weather-integer)



#### Flags

###### `--host`: IP_ADDRESS
>> __Default__: Localhost.

>> Configures the host of the server.


###### `--port`: PORT
>> __Default__: 2000

>> Configures the TCP port to listen to.

###### `--file`: filename.md
>> __Default__: benchmark.md 

>> Writes results in markdown table format to a file.

###### `--tm`

>> Switch to Traffic Manager benchmark

###### `--ticks`

>> __Default__: 100

>>  Sets the number of ticks to use for each scenario.

###### `--sync`

>> __Default mode.__

>> Runs benchmark in synchronous mode. 

###### `--async`

>> Runs benchmark in asynchronous mode.

###### `--fixed_dt`

>> __Default__: 0.05

>> For use with synchronous mode if you would like to set the delta timestep.

###### `--render_mode`

>>  Runs benchmark in rendering mode.

###### `--no_render_mode`

>> __Default mode.__

>>  Runs benchmark in non-rendering mode.

###### `--show_scenarios`

>> When the script is run with only this flag you will see a list of all the scenario parameters available.

>> When combined with other flags you will see a preview of the scenarios that will be run without actually executing them.

###### `--sensors`: INTEGER
>> __Default__: All

>> Sensors to be used in the benchmark. Chose between LIDAR and RGB camera:

>> * __`0`__: cam-300x200
>> * __`1`__: cam-800x600
>> * __`2`__: cam-1900x1080
>> * __`3`__: cam-300x200 cam-300x200 (two cameras)
>> * __`4`__: LIDAR: 100k
>> * __`5`__: LIDAR: 500k
>> * __`6`__: LIDAR: 1M


###### `--maps`: TownName

>> __Default__: All maps

>> All [CARLA maps][carla_maps], both layered and sub-layered, are available.

[carla_maps]: https://carla.readthedocs.io/en/latest/core_map/#carla-maps

###### `--weather`: INTEGER

>> __Default__: All weather conditions

>> Change the weather conditions:

>> * __`0`__: ClearNoon
>> * __`1`__: CloudyNoon
>> * __`2`__: SoftRainSunset

## How to run the benchmark

1. Start CARLA:

        # Linux:
        ./CarlaUE4.sh
        # Windows:
        CarlaUE4.exe
        # Source:
        make launch


2. In a separate terminal navigate to `PythonAPI/util` to find the `performance_benchmark.py` script:

>> * Show all possible scenarios without running them:
```shell
python3 performance_benchmark.py --show_scenarios
```

>> * Show what scenarios will run when configurations are applied without actually executing them:
```shell
python3 performance_benchmark.py --sensors 2 5 --maps Town03 Town05 --weather 0 1 --show_scenarios`
```

>> * Execute the performance benchmark for those scenarios:
```shell
python3 performance_benchmark.py --sensors 2 5 --maps Town03 Town05 --weather 0 1
```

>> * Perform the benchmark for asynchronous mode and rendering mode:
```shell
python3 performance_benchmark.py --async --render_mode
```

---
## CARLA performance report


The following table details the performance effect on average FPS when running CARLA with increasing numbers of vehicles and different combinations of enabling and/or disabling physics and Traffic Manager.

* CARLA Version: Dev branch on 29/01/21 (commit 198fa38c9b1317c114ac15dff130766253c02832)
* Environment Specs: Intel(R) Xeon(R) CPU E5-1620 v3 @ 3.50GHz / 32 GB / NVIDIA GeForce GTX 1080 Ti


|Num Vehicles|Phy: Off TM: Off|Phy: On TM: Off|Phy: Off TM: On|Phy: On TM: On|
|------------|----------------|---------------|---------------|--------------|
|0           |1220            |1102           |702            |729           |
|1           |805             |579            |564            |422           |
|10          |473             |223            |119            |98            |
|50          |179             |64             |37             |26            |
|100         |92              |34             |22             |15            |
|150         |62              |21             |17             |10            |
|200         |47              |15             |14             |7             |
|250         |37              |11             |12             |6             |

---

If you have any questions regarding the performance benchmarks then don't hesitate to post in the forum.

<div class="build-buttons">
<!-- Latest release button -->
<p>
<a href="https://github.com/carla-simulator/carla/discussions/" target="_blank" class="btn btn-neutral" title="Go to the latest CARLA release">
CARLA forum</a>
</p>
</div>
back to top