Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qupid/casematch.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def create_matched_pairs(
ss = SeedSequence(seed)
child_states = ss.spawn(iterations)

all_matches = Parallel(n_jobs=n_jobs, **parallel_args)(
all_matches = Parallel(n_jobs=n_jobs, **parallel_args, prefer="threads")(
delayed(self._get_cm_one_to_one)(G, strict, child_state)
for child_state in child_states
)
Expand Down