Skip to content

Commit 74fc93d

Browse files
authored
Merge branch 'main' into performance-tuning-for-scan_ground_filter
2 parents 89d51f8 + ebb4172 commit 74fc93d

File tree

873 files changed

+26498
-19209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

873 files changed

+26498
-19209
lines changed

.cspell-partial.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"perception/bytetrack/lib/**"
66
],
77
"ignoreRegExpList": [],
8-
"words": ["dltype", "tvmgen", "quantizer", "imageio", "mimsave"]
8+
"words": ["dltype", "tvmgen"]
99
}

.github/CODEOWNERS

+39-40
Large diffs are not rendered by default.

.github/workflows/build-and-test-differential.yaml

+12-37
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,28 @@ name: build-and-test-differential
22

33
on:
44
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- labeled
59

610
jobs:
11+
prevent-no-label-execution:
12+
uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1
13+
with:
14+
label: tag:run-build-and-test-differential
15+
716
build-and-test-differential:
8-
runs-on: ubuntu-latest
17+
needs: prevent-no-label-execution
18+
if: ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
19+
runs-on: [self-hosted, linux, X64]
920
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1021
strategy:
1122
fail-fast: false
1223
matrix:
1324
rosdistro:
1425
- humble
1526
container-suffix:
16-
- ""
1727
- -cuda
1828
include:
1929
- rosdistro: humble
@@ -63,38 +73,3 @@ jobs:
6373

6474
- name: Check disk space after build
6575
run: df -h
66-
67-
clang-tidy-differential:
68-
runs-on: ubuntu-latest
69-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
70-
needs: build-and-test-differential
71-
steps:
72-
- name: Check out repository
73-
uses: actions/checkout@v3
74-
with:
75-
fetch-depth: 0
76-
77-
- name: Remove exec_depend
78-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
79-
80-
- name: Get modified packages
81-
id: get-modified-packages
82-
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
83-
84-
- name: Get modified files
85-
id: get-modified-files
86-
uses: tj-actions/changed-files@v35
87-
with:
88-
files: |
89-
**/*.cpp
90-
**/*.hpp
91-
92-
- name: Run clang-tidy
93-
if: ${{ steps.get-modified-files.outputs.all_changed_files != '' }}
94-
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
95-
with:
96-
rosdistro: humble
97-
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
98-
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }}
99-
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy
100-
build-depends-repos: build_depends.repos

.github/workflows/build-and-test.yaml

+1-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build-and-test:
1111
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, linux, X64]
1313
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1414
strategy:
1515
fail-fast: false
@@ -27,14 +27,6 @@ jobs:
2727
- name: Check out repository
2828
uses: actions/checkout@v3
2929

30-
- name: Free disk space (Ubuntu)
31-
uses: jlumbroso/free-disk-space@v1.2.0
32-
with:
33-
tool-cache: false
34-
dotnet: false
35-
swap-storage: false
36-
large-packages: false
37-
3830
- name: Remove exec_depend
3931
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
4032

.github/workflows/json-schema-check.yaml

+25-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,38 @@ name: json-schema-check
22

33
on:
44
pull_request:
5-
paths:
6-
- "**/schema/*.schema.json"
7-
- "**/config/*.param.yaml"
5+
workflow_dispatch:
86

97
jobs:
8+
check-if-relevant-files-changed:
9+
runs-on: ubuntu-latest
10+
outputs:
11+
run-check: ${{ steps.paths_filter.outputs.json_or_yaml }}
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: dorny/paths-filter@v3
15+
id: paths_filter
16+
with:
17+
filters: |
18+
json_or_yaml:
19+
- '**/schema/*.schema.json'
20+
- '**/config/*.param.yaml'
21+
1022
json-schema-check:
23+
needs: check-if-relevant-files-changed
24+
if: needs.check-if-relevant-files-changed.outputs.run-check == 'true'
1125
runs-on: ubuntu-latest
1226
steps:
1327
- name: Check out repository
1428
uses: actions/checkout@v3
1529

1630
- name: Run json-schema-check
1731
uses: autowarefoundation/autoware-github-actions/json-schema-check@v1
32+
33+
no-relevant-changes:
34+
needs: check-if-relevant-files-changed
35+
if: needs.check-if-relevant-files-changed.outputs.run-check == 'false'
36+
runs-on: ubuntu-latest
37+
steps:
38+
- name: Dummy step
39+
run: echo "No relevant changes, passing check"

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
# autoware.universe
1+
# Autoware Universe
22

3-
For Autoware's general documentation, see [Autoware Documentation](https://autowarefoundation.github.io/autoware-documentation/).
3+
## Welcome to Autoware Universe
44

5-
For detailed documents of Autoware Universe components, see [Autoware Universe Documentation](https://autowarefoundation.github.io/autoware.universe/).
5+
Autoware Universe serves as a foundational pillar within the Autoware ecosystem, playing a critical role in enhancing the core functionalities of autonomous driving technologies.
6+
This repository is a pivotal element of the Autoware Core/Universe concept, managing a wide array of packages that significantly extend the capabilities of autonomous vehicles.
67

7-
---
8+
![autoware_universe_front](docs/assets/images/autoware_universe_front.png)
9+
10+
## Getting Started
11+
12+
To dive into the vast world of Autoware and understand how Autoware Universe fits into the bigger picture, we recommend starting with the [Autoware Documentation](https://autowarefoundation.github.io/autoware-documentation/). This resource provides a thorough overview of the Autoware ecosystem, guiding you through its components, functionalities, and how to get started with development.
13+
14+
### Explore Autoware Universe documentation
15+
16+
For those looking to explore the specifics of Autoware Universe components, the [Autoware Universe Documentation](https://autowarefoundation.github.io/autoware.universe/), deployed with MKDocs, offers detailed insights.

common/autoware_auto_perception_rviz_plugin/include/autoware_auto_perception_rviz_plugin/object_detection/object_polygon_detail.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_bounding_box_direction_lin
186186
const autoware_auto_perception_msgs::msg::Shape & shape,
187187
std::vector<geometry_msgs::msg::Point> & points);
188188

189+
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_bounding_box_orientation_line_list(
190+
const autoware_auto_perception_msgs::msg::Shape & shape,
191+
std::vector<geometry_msgs::msg::Point> & points);
192+
189193
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_line_list(
190194
const autoware_auto_perception_msgs::msg::Shape & shape,
191195
std::vector<geometry_msgs::msg::Point> & points);
@@ -194,6 +198,10 @@ AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_dir
194198
const autoware_auto_perception_msgs::msg::Shape & shape,
195199
std::vector<geometry_msgs::msg::Point> & points);
196200

201+
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_orientation_line_list(
202+
const autoware_auto_perception_msgs::msg::Shape & shape,
203+
std::vector<geometry_msgs::msg::Point> & points);
204+
197205
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_cylinder_line_list(
198206
const autoware_auto_perception_msgs::msg::Shape & shape,
199207
std::vector<geometry_msgs::msg::Point> & points);

0 commit comments

Comments
 (0)