We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed7f0e commit c8816efCopy full SHA for c8816ef
include/plssvm/svm/csvc.hpp
@@ -399,7 +399,8 @@ class csvc : virtual public csvm {
399
const auto signed_num_data_points_in_sub_matrix = static_cast<detail::ssize_t>(num_data_points_in_sub_matrix);
400
const auto signed_num_features = static_cast<detail::ssize_t>(num_features);
401
// copy the support vectors to the binary support vectors
402
-#pragma omp parallel for collapse(2)
+//#pragma omp parallel for collapse(2)
403
+#pragma omp parallel for
404
for (detail::ssize_t si = 0; si < signed_num_data_points_in_sub_matrix; ++si) {
405
for (detail::ssize_t dim = 0; dim < signed_num_features; ++dim) {
406
temp(si, dim) = model.support_vectors()(sorted_indices[si], dim);
0 commit comments