Skip to content

Commit

Permalink
Merge pull request #3 from tier4/sync-upstream
Browse files Browse the repository at this point in the history
chore: sync upstream
  • Loading branch information
tier4-autoware-public-bot[bot] authored Aug 21, 2022
2 parents e266de5 + b1e2f6e commit a1caea7
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
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

0 comments on commit a1caea7

Please sign in to comment.