-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Update VMs, CMake to 3.20.1, CUDA to 11.3, and pwsh to 7.1.3 #17331
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
5af9e12
Update to CUDA 11.3 on Windows.
BillyONeal 329e627
Update PowerShell to 7.1.3.
BillyONeal a060d77
Update CUDA to 11.3 on Linux.
BillyONeal 99e068f
"Explode" VM provisioning scripts for more consistent feedback during…
BillyONeal f8d2461
[libdatachannel] Fix use of deprecated result_type typedef.
BillyONeal 4cade75
[libvpx] Get the libvpx outputs from the correct place.
BillyONeal e6e641f
[chromaprint] Support implementations where lrintf is an intrinsic.
BillyONeal a3fe1a5
Add provision-entire-image script.
BillyONeal 379c232
[cudnn] Disable download-on-the-fly due to licensing concerns.
BillyONeal 09b03c9
Add libnccl to Linux VMs.
BillyONeal f05d049
[wangle] Disable x64-windows due to an ICE.
BillyONeal b0e4f60
[cmake] Update cmake to 3.20.1 to avoid https://gitlab.kitware.com/cm…
BillyONeal c0ed618
[libudis86] Fix passing a bogus working directory which fails on CMak…
BillyONeal d89c87b
[dartsim] Disable unit tests, examples, and tutorials, some of which …
BillyONeal 46ecf98
Add thrust to the cuda installees.
BillyONeal 33d5f1a
[tensorflow] Put .bzl in CURRENT_BUILDTREES_DIR to avoid running out …
BillyONeal bb66d86
[dimcli] Skip port broken by changes in VS2019 project system.
BillyONeal b0b81b1
[upb] Disable an additional warning.
BillyONeal 5d3d500
[libhv] Fix typo DISABLE_PARALLEL => DISABLE_PARALLEL_CONFIGURE
BillyONeal ff00f6f
Update pools
BillyONeal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,23 @@ | ||
| diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| index 3a0eecb..4fa5e8d 100644 | ||
| --- a/CMakeLists.txt | ||
| +++ b/CMakeLists.txt | ||
| @@ -17,6 +17,7 @@ set_property(CACHE FFT_LIB PROPERTY STRINGS avfft fftw3 fftw3f kissfft vdsp) | ||
|
|
||
| include(CMakePushCheckState) | ||
| include(CheckFunctionExists) | ||
| +include(CheckSymbolExists) | ||
| include(CheckCXXCompilerFlag) | ||
|
|
||
| find_package(Threads) | ||
| @@ -37,8 +38,8 @@ endif() | ||
|
|
||
| cmake_push_check_state(RESET) | ||
| set(CMAKE_REQUIRED_LIBRARIES -lm) | ||
| -check_function_exists(lrintf HAVE_LRINTF) | ||
| -check_function_exists(round HAVE_ROUND) | ||
| +check_symbol_exists(lrintf math.h HAVE_LRINTF) | ||
| +check_symbol_exists(round math.h HAVE_ROUND) | ||
| cmake_pop_check_state() | ||
|
|
||
| add_definitions( |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| Source: cudnn | ||
| Version: 7.6.5 | ||
| Port-Version: 1 | ||
| Port-Version: 2 | ||
| Description: NVIDIA's cuDNN deep neural network acceleration library | ||
| Build-Depends: cuda | ||
| Supports: (windows|linux)&x64 |
This file contains hidden or 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
20 changes: 20 additions & 0 deletions
20
ports/dartsim/disable_unit_tests_examples_and_tutorials.patch
This file contains hidden or 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,20 @@ | ||
| diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| index e32147d..5c85186 100644 | ||
| --- a/CMakeLists.txt | ||
| +++ b/CMakeLists.txt | ||
| @@ -279,6 +279,7 @@ add_subdirectory(dart) | ||
|
|
||
| set(DART_IN_SOURCE_BUILD TRUE) | ||
|
|
||
| +if (0) | ||
| if(TARGET dart AND NOT DART_BUILD_DARTPY) | ||
|
|
||
| # Add a "tests" target to build unit tests. | ||
| @@ -330,6 +331,7 @@ if(TARGET dart AND NOT DART_BUILD_DARTPY) | ||
| endif(DART_VERBOSE) | ||
|
|
||
| endif() | ||
| +endif() | ||
|
|
||
| if (DART_BUILD_DARTPY) | ||
| add_subdirectory(python) |
This file contains hidden or 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 hidden or 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
25 changes: 25 additions & 0 deletions
25
ports/libdatachannel/CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING.patch
This file contains hidden or 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,25 @@ | ||
| diff --git a/include/rtc/utils.hpp b/include/rtc/utils.hpp | ||
| index f1a82acb..e882042c 100644 | ||
| --- a/include/rtc/utils.hpp | ||
| +++ b/include/rtc/utils.hpp | ||
| @@ -25,6 +25,7 @@ | ||
| #include <functional> | ||
| #include <memory> | ||
| #include <mutex> | ||
| +#include <utility> | ||
|
|
||
| namespace rtc { | ||
|
|
||
| @@ -34,11 +35,10 @@ template <class... Ts> overloaded(Ts...) -> overloaded<Ts...>; | ||
| // weak_ptr bind helper | ||
| template <typename F, typename T, typename... Args> auto weak_bind(F &&f, T *t, Args &&..._args) { | ||
| return [bound = std::bind(f, t, _args...), weak_this = t->weak_from_this()](auto &&...args) { | ||
| - using result_type = typename decltype(bound)::result_type; | ||
| if (auto shared_this = weak_this.lock()) | ||
| return bound(args...); | ||
| else | ||
| - return static_cast<result_type>(false); | ||
| + return static_cast<decltype(bound(args...))>(false); | ||
| }; | ||
| } | ||
|
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,7 @@ | ||
| { | ||
| "name": "libudis86", | ||
| "version-string": "2018-01-28-56ff6c87", | ||
| "port-version": 1, | ||
| "description": "Disassembler Library for x86 and x86-64", | ||
| "homepage": "https://github.com/vmt/udis86" | ||
| } |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "libvpx", | ||
| "version-semver": "1.9.0", | ||
| "port-version": 8, | ||
| "port-version": 9, | ||
| "description": "The reference software implementation for the video coding formats VP8 and VP9.", | ||
| "homepage": "https://github.com/webmproject/libvpx" | ||
| } |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| { | ||
| "name": "tensorflow-common", | ||
| "version-semver": "2.4.1", | ||
| "port-version": 1, | ||
| "description": "This meta package holds common files for the C [tensorflow] and the C++ [tensorflow-cc] API version of TensorFlow but is not installable on its own.", | ||
| "homepage": "https://github.com/tensorflow/tensorflow" | ||
| } |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.