Giter VIP home page Giter VIP logo

Comments (1)

taylordotfish avatar taylordotfish commented on August 15, 2024 1

A possible workaround would be to insert compiler_fence(Ordering::Acquire) after Consume loads on platforms where Consume is mapped to Relaxed. This would be heavier than necessary, as it would prevent all accesses from being reordered, not just dependent ones, and also has the disadvantage of needing to be manually done unless custom atomic types are created, but it's better than nothing.

For example, given the following:

use consume::Consume;
use std::sync::atomic::{compiler_fence, Ordering};

pub fn consume_fence() {
    if (Consume == Ordering::Relaxed) {
        compiler_fence(Ordering::Acquire);
    }
}

the example above can be made to work by inserting a call to consume_fence:

let at = AtomicUsize::new(0);
let mut arr = [UnsafeCell::new(4.2); 2];  // Note that this array is very small

/* ... stuff happens, including in other threads ... */

let i = at.load(Consume);
consume_fence();
let x = unsafe { *arr[i].get() };

from consume.

Related Issues (1)

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.