pnnl/lamellar-runtime

support non static references in local active messages

rdfriese opened this issue · 0 comments

want to support:

#[lamellar::AmLocalData]
struct Foo<'a,T>{
    bar: &'a T
}

#[lamellar::local_am]
impl<'a,T> LamellarAM for Foo<'a,T>{
   fn exec(self) {}
}