Stefano Sinigardi
b409569ee4
upgrade to run-vcpkg@v7
2021-04-11 19:23:49 +02:00
Stefano Sinigardi
0ee9c108cf
Merge branch 'master' into dev/cenit/fixes
2021-04-11 19:20:50 +02:00
Alexey
e83d6526cd
Update README.md
2021-04-07 03:16:01 +03:00
AlexeyAB
1e3a616ed6
compile fix
2021-03-28 18:49:55 +03:00
AlexeyAB
4949b6cd84
minor fix
2021-03-28 18:13:43 +03:00
Alexey
730e5c1c6a
Update README.md
2021-03-28 17:51:02 +03:00
Alexey
22cb99e041
Merge pull request #7515 from kikaitech/cuda_floorf_ceilf
...
Cuda: floor -> floorf, ceil -> ceilf
2021-03-24 00:08:39 +03:00
hainq
0bd7e6713d
cuda: floor -> floorf, ceil -> ceilf
2021-03-19 12:13:26 +07:00
AlexeyAB
b8c9c9d457
minor fix
2021-03-01 05:44:04 +03:00
AlexeyAB
f058d26a8a
circle ci fix
2021-03-01 05:35:05 +03:00
AlexeyAB
1a874378e4
Try new docker image for circle-ci
2021-02-28 18:43:16 +03:00
AlexeyAB
92c92017b2
Try new docker image for circle-ci
2021-02-28 18:38:42 +03:00
AlexeyAB
7bcac1c84b
Try new docker for circle-ci
2021-02-28 09:30:31 +03:00
AlexeyAB
f8df52ad72
minor fix
2021-02-28 09:11:22 +03:00
AlexeyAB
53db0163eb
Added CUDA graphs/streams. To speed up the inference use: [net] use_cuda_graph = 1
2021-02-28 08:57:44 +03:00
Stefano Sinigardi
94fdfa4590
use ninja whenever possible in build.ps1
2021-02-21 22:59:36 +01:00
Stefano Sinigardi
44c868baca
add missing pubkey install step
2021-02-21 18:11:02 +01:00
Stefano Sinigardi
552bddc140
move to ubuntu 20.04 on github actions
2021-02-21 18:00:59 +01:00
Stefano Sinigardi
6a2cab982a
use same opencv feature set independently of cuda
2021-02-21 12:47:05 +01:00
Stefano Sinigardi
44d29d5982
do not enable cudnn feature if cuda is not enabled
2021-02-21 10:31:29 +01:00
Stefano Sinigardi
8f3cd2840e
fixes
2021-02-20 17:05:27 +01:00
Stefano Sinigardi
fd6ea9ba60
use same logic for all enables: if on, then package is required
2021-02-20 11:22:23 +01:00
Stefano Sinigardi
b9d296e308
improve manifest mode
2021-02-20 09:28:07 +01:00
Stefano Sinigardi
9284d02809
comment out windows-vcpkg, improve setup scripts
2021-02-18 22:22:39 +01:00
Stefano Sinigardi
b5d852057e
fix
2021-01-29 17:40:29 +01:00
Stefano Sinigardi
661e8ab26b
add nasm dependency
2021-01-29 17:39:25 +01:00
Stefano Sinigardi
dc71b14e77
fix interface included directory for opencv
2021-01-29 17:08:09 +01:00
Stefano Sinigardi
05bda64c92
Update vcpkg refs to OpenCV 4.5.1
2021-01-29 08:30:06 +01:00
Stefano Sinigardi
5f84f90909
revert to double backslash
2021-01-24 17:07:10 +01:00
Stefano Sinigardi
e2a4253bb0
add cuda to path to github ci; improve diagnostic messages
2021-01-24 15:31:13 +01:00
Stefano Sinigardi
dcc38312fe
trying with forward slashes
2021-01-24 12:40:59 +01:00
Stefano Sinigardi
da15b141f0
trying to fix cuda path
2021-01-23 22:03:43 +01:00
Stefano Sinigardi
63caceab0d
add manual trigger for github actions
2021-01-23 17:04:23 +01:00
Stefano Sinigardi
e72a11a04c
update README
2021-01-23 16:29:51 +01:00
Stefano Sinigardi
1735d57ad1
rework integrated libs logic
2021-01-23 16:06:36 +01:00
Stefano Sinigardi
a8013ebcfb
do not default on ninja on windows
2021-01-23 09:02:33 +01:00
Stefano Sinigardi
4de12a1e7e
default on opencv4.5 on vcpkg
2021-01-23 09:02:22 +01:00
Alexey
64efa721ed
Merge pull request #4674 from nog642/fix
...
Minor fix
2021-01-21 22:30:15 +03:00
Stefano Sinigardi
00d578e327
update GitHub actions ( #7095 )
...
* update to run-vcpkg@v6
* bump to cmake 3.18
* use newer cuda syntax, fail if cuda enabled but not found
* update win build script
* improve travis with non-cuda-enabled builds
* improve windows building process
2021-01-21 17:36:00 +01:00
Ievgen Popovych
f57636ad65
CMake CUDA configuration improvements ( #7164 )
...
* CMake: Fail generation if CUDA was requested but not found
..instead of resorting to CPU build silently.
This makes builds predictable and
removes the confusion of `ENABLE_CUDA` option being merely a suggestion.
Signed-off-by: Ievgen Popovych <ievgenp@seetrue.ai>
* CMake: Be more precise with ZED SDK messages
CMake generation with `ENABLE_CUDA=OFF` and `ENABLE_ZED_CAMERA=OFF`
would spit out "ZED SDK not enabled, since it requires CUDA" messages
even though ZED SDK was explicitly disabled.
Fix this by being a bit more precise with messages.
Signed-off-by: Ievgen Popovych <ievgenp@seetrue.ai>
* CMake: Honor CUDNN_ENABLE option
Setting CUDNN_ENABLE to OFF would not disable CUDNN support if
CUDNN libraries are available.
Fix this behavior by only looking for CUDNN if it was requested (CUDNN_ENABLE)
and predicate actual settings on CUDNN_FOUND.
Signed-off-by: Ievgen Popovych <ievgenp@seetrue.ai>
* github: actions: Explicitly set CUDA state in CI
2021-01-21 17:31:21 +01:00
Alexey
103d301ccb
Update README.md
2021-01-09 05:49:43 +03:00
Alexey
b11af9e93b
Update README.md
2021-01-05 16:48:02 +03:00
Alexey
0968058b54
Merge pull request #7167 from zzpbuaa/zzpbuaa-patch-1
...
Fix bug #6897 OSError: exception: access violation writing
2021-01-04 01:31:44 +03:00
Alexey
95339f2df5
Update README.md
2020-12-27 04:05:20 +03:00
Alexey
f83231fa1d
Update README.md
2020-12-26 17:45:07 +03:00
BlackHill de Eagle
dd02b915be
Fix bug OSError: exception: access violation writing #6897
...
Avoid read and write image at the same time.
2020-12-23 15:18:56 +08:00
Alexey
c5b8bc7f24
Update README.md
2020-12-21 20:39:35 +03:00
Alexey
84fa42a966
Update README.md
2020-12-18 05:45:09 +03:00
Alexey
d18d73ff5f
Readme.md for Xilinx Zynq Ultrascale+ (DPU) ZCU102/ZCU104
2020-12-18 02:25:53 +03:00
AlexeyAB
a298f94255
Minor fix for cfg-files
2020-12-15 07:09:58 +03:00