Skip to content

Use rayon and bump-herd to crazy fast parallel search  #9

@uselessgoddess

Description

@uselessgoddess

You can start with this example

fn par_each_impl(..., root: T) {
    if magic_appropriate_to_join(...) {
        rayon::join(
            || par_each_impl(..., left(root)),
            || par_each_impl(..., right(root)),
        )
    } else {
        seq_each_impl(..., root)
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Issue:IncompleteIssue: this is incompleteIssue:MiddleIssue: requires a set of knowledgeParallel:RayonParallel: use potential rayon parallelism

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions