Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
b9e907a9
Commit
b9e907a9
authored
Feb 04, 2013
by
Davis King
Browse files
clarified spec
parent
af0cf84f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
dlib/svm/structural_svm_problem_threaded_abstract.h
dlib/svm/structural_svm_problem_threaded_abstract.h
+5
-1
No files found.
dlib/svm/structural_svm_problem_threaded_abstract.h
View file @
b9e907a9
...
...
@@ -28,7 +28,11 @@ namespace dlib
So this object lets you take advantage of a multi-core system. You should
set the num_threads parameter equal to the number of available cores. Note
that the separation_oracle() function which you provide must be thread safe
if you are to use this version of the structural_svm_problem.
if you are to use this version of the structural_svm_problem. In
particular, it must be safe to call separation_oracle() concurrently from
different threads. However, it is guaranteed that different threads will
never make concurrent calls to separation_oracle() using the same idx value
(i.e. the first argument).
!*/
typedef
matrix_type_
matrix_type
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment