-
Notifications
You must be signed in to change notification settings - Fork 7.4k
[darknet] ready for yolo_v4 #11037
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
[darknet] ready for yolo_v4 #11037
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
6f5eb86
[darknet] ready for yolo_v4
cenit 66c3c07
[darknet] add yolov4 training weights
cenit 150c867
[darknet] use github host for release materials
cenit a0fc3a4
Merge branch 'master' into dev/cenit/darknet_yolov4
cenit bc28c71
[darknet] update to latest fixed revision
cenit 2b41053
Merge branch 'master' into dev/cenit/darknet_yolov4
cenit 62a4d38
[darknet] update to 20200504 release
cenit 785a06f
fix static/shared CRT linking mismatch
cenit 39c0c87
Merge branch 'master' into dev/cenit/darknet_yolov4
cenit b135bb3
[darknet] update to 20200519
cenit 8beb6ca
Merge branch 'master' into dev/cenit/darknet_yolov4
cenit 8f7c3de
[darknet] add yolov4-tiny
cenit d0fc4ae
Merge branch 'master' of https://github.com/microsoft/vcpkg into dev/…
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
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 @@ | ||
| --- a/CMakeLists.txt | ||
| +++ b/CMakeLists.txt | ||
| @@ -1,4 +1,4 @@ | ||
| -cmake_minimum_required(VERSION 3.12) | ||
| +cmake_minimum_required(VERSION 3.17) | ||
|
|
||
| set(Darknet_MAJOR_VERSION 0) | ||
| set(Darknet_MINOR_VERSION 2) | ||
| @@ -77,6 +77,11 @@ if(CMAKE_CUDA_COMPILER AND ENABLE_CUDA) | ||
| else() | ||
| message(STATUS "Your setup supports half precision (it requires CC >= 7.0)") | ||
| endif() | ||
| + endif() | ||
| + if(BUILD_SHARED_LIBS) | ||
| + set(CMAKE_CUDA_RUNTIME_LIBRARY "Shared") | ||
| + else() | ||
| + set(CMAKE_CUDA_RUNTIME_LIBRARY "Static") | ||
| endif() | ||
| else() | ||
| set(ENABLE_CUDA "FALSE" CACHE BOOL "Enable CUDA support" FORCE) | ||
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
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.