Bump perf libs version to fix out buffer sizing (#4385)

This commit is contained in:
sakridge 2019-05-22 13:00:03 -07:00 committed by GitHub
parent e5b7aead12
commit 1d7a758c97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ fn bench_sigverify_stage(bencher: &mut Bencher) {
} }
} }
let mut received = 0; let mut received = 0;
//trace!("sent: {}", sent_len); trace!("sent: {}", sent_len);
loop { loop {
if let Ok(mut verifieds) = verified_r.recv_timeout(Duration::from_millis(10)) { if let Ok(mut verifieds) = verified_r.recv_timeout(Duration::from_millis(10)) {
while let Some(v) = verifieds.pop() { while let Some(v) = verifieds.pop() {
@ -77,7 +77,7 @@ fn bench_sigverify_stage(bencher: &mut Bencher) {
} }
} }
} }
//trace!("received: {}", received); trace!("received: {}", received);
}); });
stage.join().unwrap(); stage.join().unwrap();
} }

View File

@ -16,7 +16,7 @@ mkdir -p target/perf-libs
cd target/perf-libs cd target/perf-libs
( (
set -x set -x
curl https://solana-perf.s3.amazonaws.com/v0.12.0/x86_64-unknown-linux-gnu/solana-perf.tgz | tar zxvf - curl https://solana-perf.s3.amazonaws.com/v0.12.1/x86_64-unknown-linux-gnu/solana-perf.tgz | tar zxvf -
) )
if [[ -r solana-perf-CUDA_HOME.txt ]]; then if [[ -r solana-perf-CUDA_HOME.txt ]]; then