Skip to content

Commit 9f07125

Browse files
committedSep 9, 2020
bump pyo3 to compile on stable
1 parent 685136e commit 9f07125

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed
 

‎sprs-benches/Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ version = "0.1.0"
44
authors = ["Vincent Barrielle <vincent.barrielle@m4x.org>"]
55
edition = "2018"
66

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8-
97
[dependencies.sprs]
108
version = "0.8.0"
119
path = ".."
@@ -18,7 +16,7 @@ path = "../sprs-rand"
1816
version = "0.2.12"
1917

2018
[dependencies]
21-
pyo3 = { version="0.9.2", optional=true }
19+
pyo3 = { version="0.11.1" }
2220

2321
[build-dependencies]
2422
cc = "1.0.52"
@@ -29,6 +27,5 @@ libflate = {version="1.0.0", optional=true }
2927
[features]
3028

3129
default = []
32-
nightly = ["pyo3"]
3330
dl_eigen = ["reqwest", "tar", "libflate"]
3431
eigen = []

‎sprs-benches/src/main.rs

-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
#[cfg(feature = "nightly")]
21
use pyo3::{
32
prelude::*,
43
types::{IntoPyDict, PyModule},
54
};
65
use sprs::smmp;
76
use sprs_rand::rand_csr_std;
87

9-
#[cfg(feature = "nightly")]
108
fn scipy_mat<'a>(
119
scipy_sparse: &'a PyModule,
1210
py: &Python,
@@ -155,11 +153,8 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
155153
},
156154
];
157155

158-
#[cfg(feature = "nightly")]
159156
let gil = Python::acquire_gil();
160-
#[cfg(feature = "nightly")]
161157
let py = gil.python();
162-
#[cfg(feature = "nightly")]
163158
let scipy_sparse = PyModule::import(py, "scipy.sparse").map_err(|e| {
164159
let res = format!("Python error: {:?}", e);
165160
e.print_and_set_sys_last_vars(py);
@@ -190,7 +185,6 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
190185
let mut times_autothread = Vec::with_capacity(densities.len());
191186
let mut times_2threads = Vec::with_capacity(densities.len());
192187
let mut times_4threads = Vec::with_capacity(densities.len());
193-
#[cfg(feature = "nightly")]
194188
let mut times_py = Vec::with_capacity(densities.len());
195189
#[cfg(feature = "eigen")]
196190
let mut times_eigen = Vec::with_capacity(densities.len());
@@ -261,7 +255,6 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
261255
res_densities.push(prod.density());
262256

263257
// bench scipy as well
264-
#[cfg(feature = "nightly")]
265258
{
266259
let m1_py = scipy_mat(scipy_sparse, &py, &m1)?;
267260
let m2_py = scipy_mat(scipy_sparse, &py, &m2)?;
@@ -307,7 +300,6 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
307300
println!("Product times (sprs, 2 threads): {:?}", times_2threads);
308301
println!("Product times (sprs, 4 threads): {:?}", times_4threads);
309302
println!("Product times (sprs, auto threads): {:?}", times_autothread);
310-
#[cfg(feature = "nightly")]
311303
println!("Product times (scipy): {:?}", times_py);
312304
#[cfg(feature = "eigen")]
313305
println!("Product times (eigen): {:?}", times_eigen);
@@ -352,7 +344,6 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
352344
max_time,
353345
*times_eigen.iter().max().unwrap_or(&1),
354346
);
355-
#[cfg(feature = "nightly")]
356347
let max_time =
357348
std::cmp::max(max_time, *times_py.iter().max().unwrap_or(&1));
358349
let max_time = max_time as f32;
@@ -423,7 +414,6 @@ fn bench_densities() -> Result<(), Box<dyn std::error::Error>> {
423414
PathElement::new(vec![(x, y), (x + 20, y)], &BLUE)
424415
});
425416

426-
#[cfg(feature = "nightly")]
427417
chart
428418
.draw_series(LineSeries::new(
429419
abscisses

0 commit comments

Comments
 (0)
Please sign in to comment.