Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync upstream #3

Merged
merged 5 commits into from
Aug 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ CheckOptions:
- key: performance-unnecessary-copy-initialization.AllowedTypes
value: ""
- key: performance-unnecessary-value-param.AllowedTypes
value: ".*Ptr"
value: ".*Ptr;.*SharedFuture"
- key: performance-unnecessary-value-param.IncludeStyle
value: google
- key: portability-simd-intrinsics.Std
Expand Down
3 changes: 2 additions & 1 deletion .github/actions/docker-build-and-push/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ runs:
- name: Build and push
uses: docker/bake-action@v2
with:
push: ${{ github.ref_name == github.event.repository.default_branch }}
# Checking event_name for https://github.com/autowarefoundation/autoware/issues/2796
push: ${{ github.event_name == 'schedule' || github.ref_name == github.event.repository.default_branch }}
files: |
docker/${{ inputs.bake-target }}/docker-bake.hcl
bake.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-universe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:

- name: Run setup script
run: |
./setup-dev-env.sh -y -v --no-nvidia universe
./setup-dev-env.sh -y -v universe
2 changes: 1 addition & 1 deletion amd64.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ base_image=ubuntu:20.04
cuda_base_image=nvidia/cuda:11.6.2-devel-ubuntu20.04
cuda_version=11.6
cudnn_version=8.4.1.50-1+cuda11.6
tensorrt_version=8.4.2.4-1+cuda11.6
tensorrt_version=8.4.2-1+cuda11.6
18 changes: 16 additions & 2 deletions ansible/roles/tensorrt/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
name:
- libcudnn8={{ cudnn_version }}
- libcudnn8-dev={{ cudnn_version }}
- tensorrt={{ tensorrt_version }}
- libnvinfer8={{ tensorrt_version }}
- libnvinfer-plugin8={{ tensorrt_version }}
- libnvparsers8={{ tensorrt_version }}
- libnvonnxparsers8={{ tensorrt_version }}
- libnvinfer-dev={{ tensorrt_version }}
- libnvinfer-plugin-dev={{ tensorrt_version }}
- libnvparsers-dev={{ tensorrt_version }}
- libnvonnxparsers-dev={{ tensorrt_version }}
allow_downgrade: true
update_cache: true

Expand All @@ -17,4 +24,11 @@
with_items:
- libcudnn8
- libcudnn8-dev
- tensorrt
- libnvinfer8
- libnvinfer-plugin8
- libnvparsers8
- libnvonnxparsers8
- libnvinfer-dev
- libnvinfer-plugin-dev
- libnvparsers-dev
- libnvonnxparsers-dev