We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Rayon
xfxq2s
1 parent 83df187 commit 30cdbabCopy full SHA for 30cdbab
neopdf/src/gridpdf.rs
@@ -6,9 +6,7 @@
6
//! - [`GridArray`]: Stores the full set of subgrids and flavor IDs.
7
8
use core::panic;
9
-
10
use ndarray::{Array1, Array2};
11
-use rayon::prelude::*;
12
use serde::{Deserialize, Serialize};
13
use thiserror::Error;
14
@@ -327,7 +325,6 @@ impl GridPDF {
327
325
let flatten_len = grid_shape.iter().product();
328
326
329
let data: Vec<f64> = (0..flatten_len)
330
- .into_par_iter()
331
.map(|idx| {
332
let num_cols = slice_points.len();
333
let (fl_idx, s_idx) = (idx / num_cols, idx % num_cols);
0 commit comments