dlib 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/dlib/depend +7 -5
- data/ext/dlib/extconf.rb +3 -0
- data/lib/dlib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 112a9c264ad0121781155426f2c1af4777d6594a
|
4
|
+
data.tar.gz: 70aa6dc82f2dd583de7aace5031cfbccdcd9a499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7dc9ced54b0955f36fdaeaad194c45ce7ad312a181072f6ac070f135c3efb415f9a18d2f39bdfda2b4107e94a872c7625ef9c1810ff39d9b19d8c5b02a46dab
|
7
|
+
data.tar.gz: 0ea46ecc0eac65910ee8f160c251572f67d7174b5e8394764ad4faf131b269e2025c851874264d7f2c17b92c781612fb6a4acc61470dedfac0e46a6814b32853
|
data/ext/dlib/depend
CHANGED
@@ -7,12 +7,14 @@ DLIB_FUNCTIONS = \
|
|
7
7
|
find_candidate_object_locations.inc \
|
8
8
|
dnn_detector.inc \
|
9
9
|
cuda.inc
|
10
|
-
OBJS += $(DLIB_OJBS)
|
11
10
|
|
12
|
-
|
13
|
-
NVCC_TEST := $(
|
14
|
-
|
15
|
-
|
11
|
+
# root user can't access nvcc command with relative pass because of their $PATH env
|
12
|
+
NVCC_TEST := $(shell command -v /usr/local/cuda/bin/nvcc 2> /dev/null)
|
13
|
+
ifdef NVCC_TEST
|
14
|
+
|
15
|
+
$(info Found nvcc! at $(NVCC_TEST))
|
16
|
+
|
17
|
+
CUDA_NVCC = $(NVCC_TEST)
|
16
18
|
CUDA_FLAGS = -DDLIB_USE_CUDA -I /usr/local/cuda/include -arch=sm_30 -D__STRICT_ANSI__ -D_MWAITXINTRIN_H_INCLUDED -D_FORCE_INLINES -std=c++11 -Xcompiler -fPIC -Xcompiler -funwind-tables
|
17
19
|
DLIB_CUDA_SRCS = $(DLIB_SRCDIR)/dlib/dnn/curand_dlibapi.cpp \
|
18
20
|
$(DLIB_SRCDIR)/dlib/dnn/cudnn_dlibapi.cpp \
|
data/ext/dlib/extconf.rb
CHANGED
data/lib/dlib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dlib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kenta Murata
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-09-
|
12
|
+
date: 2017-09-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|