Skip to content

Commit c8816ef

Browse files
committed
Fix internal compiler error.
1 parent 5ed7f0e commit c8816ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/plssvm/svm/csvc.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,8 @@ class csvc : virtual public csvm {
399399
const auto signed_num_data_points_in_sub_matrix = static_cast<detail::ssize_t>(num_data_points_in_sub_matrix);
400400
const auto signed_num_features = static_cast<detail::ssize_t>(num_features);
401401
// copy the support vectors to the binary support vectors
402-
#pragma omp parallel for collapse(2)
402+
//#pragma omp parallel for collapse(2)
403+
#pragma omp parallel for
403404
for (detail::ssize_t si = 0; si < signed_num_data_points_in_sub_matrix; ++si) {
404405
for (detail::ssize_t dim = 0; dim < signed_num_features; ++dim) {
405406
temp(si, dim) = model.support_vectors()(sorted_indices[si], dim);

0 commit comments

Comments
 (0)