Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions communication/src/allocator/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ impl<T> Pull<T> for Puller<T> {
#[inline]
fn pull(&mut self) -> &mut Option<T> {
let mut borrow = self.source.borrow_mut();
// if let Some(element) = self.current.take() {
// // TODO : Arbitrary constant.
// if borrow.1.len() < 16 {
// borrow.1.push_back(element);
// }
// }
if let Some(element) = self.current.take() {
// TODO : Arbitrary constant.
if borrow.1.len() < 16 {
borrow.1.push_back(element);
}
}
self.current = borrow.0.pop_front();
&mut self.current
}
Expand Down
11 changes: 9 additions & 2 deletions container/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ impl<T, C: SizableContainer + PushInto<T>> PushInto<T> for CapacityContainerBuil
// Maybe flush
if self.current.at_capacity() {
self.pending.push_back(std::mem::take(&mut self.current));
if let Some(spare) = self.empty.take() {
self.current = spare;
self.current.clear();
}
}
}
}
Expand All @@ -186,9 +190,12 @@ impl<C: Container + Clone + 'static> ContainerBuilder for CapacityContainerBuild
fn finish(&mut self) -> Option<&mut C> {
if !self.current.is_empty() {
self.pending.push_back(std::mem::take(&mut self.current));
if let Some(spare) = &mut self.empty {
std::mem::swap(&mut self.current, spare);
self.current.clear();
}
}
self.empty = self.pending.pop_front();
self.empty.as_mut()
self.extract()
}
}

Expand Down
9 changes: 6 additions & 3 deletions timely/examples/columnar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fn main() {
});

// introduce data and watch!
for round in 0..10 {
for round in 0.. {
input.send(WordCountReference { text: "flat container", diff: 1 });
input.advance_to(round + 1);
while probe.less_than(input.time()) {
Expand Down Expand Up @@ -327,9 +327,12 @@ mod builder {
fn finish(&mut self) -> Option<&mut Self::Container> {
if !self.current.is_empty() {
self.pending.push_back(Column::Typed(std::mem::take(&mut self.current)));
if let Some(Column::Typed(spare)) = self.empty.take() {
self.current = spare;
self.current.clear();
}
}
self.empty = self.pending.pop_front();
self.empty.as_mut()
self.extract()
}
}

Expand Down