-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding code for release v0.5.0 (beta-3) of CV-CUDA
- Loading branch information
1 parent
f5e4f6b
commit 7deebcd
Showing
324 changed files
with
25,822 additions
and
2,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
name: "CodeQL" | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ${{ (matrix.language == 'c-cpp' && 'ubuntu-20.04') || 'ubuntu-latest' }} | ||
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'c-cpp', 'javascript-typescript', 'python' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
lfs: true | ||
submodules: 'recursive' | ||
|
||
- if: matrix.language == 'c-cpp' | ||
name: Setup environment | ||
run: | | ||
sudo apt update -y && sudo apt install -y --no-install-recommends \ | ||
git git-lfs gcc-11 g++-11 ninja-build ccache libgtest-dev libgmock-dev \ | ||
shellcheck curl doxygen python3 python3-pip python3-dev python3-distutils | ||
- if: matrix.language == 'c-cpp' | ||
name: Install Python Dependencies | ||
run: | | ||
python3 -m pip install sphinx-rtd-theme sphinx==4.5.0 breathe exhale \ | ||
recommonmark graphviz numpy==1.24.1 | ||
- if: matrix.language == 'c-cpp' | ||
name: Install CUDA Toolkit | ||
uses: Jimver/[email protected] | ||
id: cuda-toolkit | ||
with: | ||
cuda: '11.7.1' | ||
linux-local-args: '["--toolkit"]' | ||
|
||
- if: matrix.language == 'c-cpp' | ||
name: Verify CUDA installation | ||
run: | | ||
echo "Installed CUDA version is: ${{ steps.cuda-toolkit.outputs.cuda }}" | ||
echo "CUDA install location: ${{ steps.cuda-toolkit.outputs.CUDA_PATH }}" | ||
sudo ln -s ${{ steps.cuda-toolkit.outputs.CUDA_PATH }}/lib64/libcudart.so \ | ||
/usr/lib/x86_64-linux-gnu/libcuda.so | ||
nvcc -V | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
queries: +security-and-quality | ||
|
||
- if: matrix.language != 'c-cpp' | ||
name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- if: matrix.language == 'c-cpp' | ||
name: Build CMake project | ||
run: | | ||
echo "Running CMake project build script" | ||
./ci/build.sh debug build "-DBUILD_SAMPLES=OFF -DBUILD_TESTS=OFF -DBUILD_PYTHON=1" $* | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
with: | ||
category: "/language:${{matrix.language}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.