Coder Social home page Coder Social logo

Comments (4)

adamreichold avatar adamreichold commented on July 29, 2024

each thread's output will be unique to that thread, but each thread does NOT get its own slice.

If you can guarantee this within your application, you should be able to start from a single MmapRaw and hand out a raw pointer which is then dereferenced by each thread using unsafe code. I don't think that a pre-existing abstraction will capture the specific use case.

But essentially, if you start from a single MmapRaw or MmapMut, the synchronization task is exactly the same as if you start from a single &mut [u8] which is accessed by the threads in the manner you describe. (Basically, your application would not care whether it writes to memory buffer backed by anonymous memory handed out by the heap allocator or backed by a file and obtained directly using mmap.)

from memmap2-rs.

adamreichold avatar adamreichold commented on July 29, 2024

As a further illustration of the above even though it might not be helpful for your use case: As the byte slice provided by MmapMut is just that, it can be used with e.g. Rayon's ParallelSliceMut and slice::IterMut to operate on in parallel.

from memmap2-rs.

nyurik avatar nyurik commented on July 29, 2024

@adamreichold thank you for your quick reply!!! I'm still new to Rust (fun to learn it though!), so I might need a bit more guidance. Could you show a simple example (maybe even later add it to the docs?) that demonstrates how I can do this? Ideally this method should be usable from the rayon::iter::ParallelBridge -- par_map_reduce(). For a while I was considering to open the same file once from each thread with a localstore, but then it becomes a nightmare to manage them when used from a threadpool - each file has to be properly closed, which is not simple when the pool is managed by rayon. Thanks!!!

P.S. A user has offered a somewhat different example -- but i cannot evaluate if that approach has merit or not (see code)

from memmap2-rs.

adamreichold avatar adamreichold commented on July 29, 2024

The technique shown in https://stackoverflow.com/questions/33818141/how-do-i-pass-disjoint-slices-from-a-vector-to-different-threads is basically what I am suggesting. As written above, your could should start off with &mut [u8] and not care how that reference was produced.

Also as written above, you will probably need to pass *mut u8 and have each thread produce non-overlapping exclusive references via

fn some_thread(ptr: *mut u8, pos: usize) {
  // SAFETY: Only one thread will access the data at pos s.t. `val` will not alias any other references.
  let val =  unsafe { &mut *ptr.add(pos) };
  ...
}

if you cannot use an existing chunking mechanism like par_chunks or par_iter.

(I don't think AtomicU8 enters the picture if your threads never touch overlapping parts of the initial slice just as it does not enter if you do [u8]::split_at and pass the resulting subslices to two different threads.)

from memmap2-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.