cp2k-rs 0.1.1

Rust bindings for CP2K with Python interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//! Python bindings for CP2K – thin PyO3 wrapper around `crate::worker`.
//!
//! All blocking operations release the GIL via `py.detach(...)`, delegating
//! the actual work to the GIL-free functions in [`crate::worker`].
//!
//! # Typical usage
//!
//! ```python
//! import cp2k_rs
//!
//! cp2k_rs.init_cp2k(nproc=4)
//! fe = cp2k_rs.PyForceEnv("input.inp", "output.out")
//! fe.calc_energy_force()
//! e = fe.get_potential_energy()
//! cp2k_rs.finalize_cp2k()
//! ```

use numpy::{IntoPyArray, PyArray1, PyArray2, PyReadonlyArrayDyn};
use pyo3::exceptions::PyRuntimeError;
use pyo3::prelude::*;

use crate::worker;
use crate::worker_protocol::{Command, Payload};

// ─── module registration ─────────────────────────────────────────────────────

/// The Python module `cp2k_rs`.
#[pymodule]
fn cp2k_rs(m: &Bound<'_, PyModule>) -> PyResult<()> {
    m.add_function(wrap_pyfunction!(init_cp2k, m)?)?;
    m.add_function(wrap_pyfunction!(finalize_cp2k, m)?)?;
    m.add_class::<PyForceEnv>()?;
    Ok(())
}

// ─── error conversion ─────────────────────────────────────────────────────────

fn worker_err(e: worker::WorkerError) -> PyErr {
    PyRuntimeError::new_err(e.to_string())
}

// ─── IPC (GIL-releasing) ─────────────────────────────────────────────────────

/// Send a command and receive the response. Releases the GIL while blocked.
pub fn ipc_call(py: Python, command: Command) -> PyResult<Payload> {
    py.detach(|| worker::ipc_call(command).map_err(worker_err))
}

// ─── binary discovery (Python-specific extension) ────────────────────────────

/// Look for the worker binary next to the installed `cp2k_rs` Python package.
fn find_worker_binary_in_package(py: Python) -> Option<std::path::PathBuf> {
    let dir = py
        .import("cp2k_rs")
        .and_then(|m| m.getattr("__file__"))
        .and_then(|f| f.extract::<String>())
        .ok()
        .and_then(|file| {
            std::path::Path::new(&file)
                .parent()
                .map(|p| p.to_path_buf())
        })?;
    let candidate = dir.join("cp2k_rs_worker");
    candidate.exists().then_some(candidate)
}

// ─── init / finalize ─────────────────────────────────────────────────────────

/// Start the MPI worker and return once the socket is ready.
///
/// Parameters
/// ----------
/// nproc : int, optional
///     Number of MPI ranks (default 1). Ignored when `launcher_cmd` is given.
/// launcher_cmd : list[str], optional
///     Complete launcher command prefix, e.g. ``["srun", "-n", "8"]``.
/// env : dict[str, str], optional
///     Extra environment variables forwarded to the worker.
/// working_dir : str, optional
///     Working directory for the worker process.
/// connect_timeout : float, optional
///     Seconds to wait for the worker to become ready (default 120).
#[pyfunction]
#[pyo3(signature = (nproc=1, launcher_cmd=None, env=None, working_dir=None, connect_timeout=120.0))]
pub fn init_cp2k(
    py: Python,
    nproc: u32,
    launcher_cmd: Option<Vec<String>>,
    env: Option<std::collections::HashMap<String, String>>,
    working_dir: Option<String>,
    connect_timeout: f64,
) -> PyResult<()> {
    // Binary lookup: Python package path (requires GIL) first, then standard locations.
    let worker_bin = find_worker_binary_in_package(py)
        .or_else(worker::find_worker_binary)
        .ok_or_else(|| {
            PyRuntimeError::new_err(
                "cp2k_rs_worker binary not found. \
                 Set CP2K_WORKER_BIN or ensure the binary is on PATH.",
            )
        })?;

    // Spawning and waiting for readiness: release the GIL.
    py.detach(|| {
        worker::start_worker(
            worker_bin,
            nproc,
            launcher_cmd,
            env,
            working_dir,
            connect_timeout,
        )
        .map_err(worker_err)
    })
}

/// Shut down the MPI worker and clean up resources.
#[pyfunction]
pub fn finalize_cp2k(py: Python) -> PyResult<()> {
    py.detach(|| worker::stop_worker().map_err(worker_err))
}

// ─── PyForceEnv ──────────────────────────────────────────────────────────────

/// Python wrapper around a CP2K force environment running inside the MPI worker.
#[pyclass]
pub struct PyForceEnv;

#[pymethods]
impl PyForceEnv {
    /// Create a new force environment.
    ///
    /// Parameters
    /// ----------
    /// input_file : str
    ///     Path to the CP2K input file.
    /// output_file : str
    ///     Path for CP2K output.
    #[new]
    fn new(py: Python, input_file: String, output_file: String) -> PyResult<Self> {
        ipc_call(
            py,
            Command::InitForceEnv {
                input: input_file,
                output: output_file,
            },
        )?;
        Ok(PyForceEnv)
    }

    // ── calculations ────────────────────────────────────────────────────────

    fn calc_energy_force(&self, py: Python) -> PyResult<()> {
        ipc_call(py, Command::CalcEnergyForce)?;
        Ok(())
    }

    fn calc_energy(&self, py: Python) -> PyResult<()> {
        ipc_call(py, Command::CalcEnergy)?;
        Ok(())
    }

    // ── queries ─────────────────────────────────────────────────────────────

    fn get_natom(&self, py: Python) -> PyResult<usize> {
        match ipc_call(py, Command::GetNatom)? {
            Payload::UInt(n) => Ok(n as usize),
            p => Err(unexpected_payload("get_natom", &p)),
        }
    }

    fn get_nparticle(&self, py: Python) -> PyResult<usize> {
        match ipc_call(py, Command::GetNparticle)? {
            Payload::UInt(n) => Ok(n as usize),
            p => Err(unexpected_payload("get_nparticle", &p)),
        }
    }

    fn get_potential_energy(&self, py: Python) -> PyResult<f64> {
        match ipc_call(py, Command::GetPotentialEnergy)? {
            Payload::Float(e) => Ok(e),
            p => Err(unexpected_payload("get_potential_energy", &p)),
        }
    }

    fn get_positions<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetPositions)? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_positions", &p)),
        }
    }

    fn get_forces<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetForces)? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_forces", &p)),
        }
    }

    fn get_cell<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray2<f64>>> {
        match ipc_call(py, Command::GetCell)? {
            Payload::Array2 { rows, cols, data } => {
                let arr = numpy::ndarray::Array2::from_shape_vec((rows, cols), data)
                    .map_err(|e| PyRuntimeError::new_err(format!("{e}")))?;
                Ok(arr.into_pyarray(py))
            }
            p => Err(unexpected_payload("get_cell", &p)),
        }
    }

    fn get_qmmm_cell<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray2<f64>>> {
        match ipc_call(py, Command::GetQmmmCell)? {
            Payload::Array2 { rows, cols, data } => {
                let arr = numpy::ndarray::Array2::from_shape_vec((rows, cols), data)
                    .map_err(|e| PyRuntimeError::new_err(format!("{e}")))?;
                Ok(arr.into_pyarray(py))
            }
            p => Err(unexpected_payload("get_qmmm_cell", &p)),
        }
    }

    // ── setters ─────────────────────────────────────────────────────────────

    fn set_positions(&self, py: Python, positions: PyReadonlyArrayDyn<f64>) -> PyResult<()> {
        let data: Vec<f64> = positions.as_array().iter().cloned().collect();
        ipc_call(py, Command::SetPositions { data })?;
        Ok(())
    }

    fn set_velocities(&self, py: Python, velocities: PyReadonlyArrayDyn<f64>) -> PyResult<()> {
        let data: Vec<f64> = velocities.as_array().iter().cloned().collect();
        ipc_call(py, Command::SetVelocities { data })?;
        Ok(())
    }

    fn set_cell(&self, py: Python, cell: PyReadonlyArrayDyn<f64>) -> PyResult<()> {
        let arr = cell.as_array();
        if arr.shape() != [3, 3] {
            return Err(PyRuntimeError::new_err("Cell must be a 3×3 array"));
        }
        let data: Vec<f64> = arr.iter().cloned().collect();
        ipc_call(py, Command::SetCell { data })?;
        Ok(())
    }

    // ── active space ─────────────────────────────────────────────────────────

    fn get_mo_count(&self, py: Python) -> PyResult<i32> {
        match ipc_call(py, Command::GetMoCount)? {
            Payload::Int(n) => Ok(n as i32),
            p => Err(unexpected_payload("get_mo_count", &p)),
        }
    }

    // ── extended interface ───────────────────────────────────────────────────

    #[cfg(feature = "extended")]
    fn is_quickstep(&self, py: Python) -> PyResult<bool> {
        match ipc_call(py, Command::IsQuickstep)? {
            Payload::Bool(b) => Ok(b),
            p => Err(unexpected_payload("is_quickstep", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_stress_tensor<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray2<f64>>> {
        match ipc_call(py, Command::GetStressTensor)? {
            Payload::Array2 { rows, cols, data } => {
                let arr = numpy::ndarray::Array2::from_shape_vec((rows, cols), data)
                    .map_err(|e| PyRuntimeError::new_err(format!("{e}")))?;
                Ok(arr.into_pyarray(py))
            }
            p => Err(unexpected_payload("get_stress_tensor", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_virial_tensor<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray2<f64>>> {
        match ipc_call(py, Command::GetVirialTensor)? {
            Payload::Array2 { rows, cols, data } => {
                let arr = numpy::ndarray::Array2::from_shape_vec((rows, cols), data)
                    .map_err(|e| PyRuntimeError::new_err(format!("{e}")))?;
                Ok(arr.into_pyarray(py))
            }
            p => Err(unexpected_payload("get_virial_tensor", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_nmo(&self, py: Python, spin: i32) -> PyResult<usize> {
        match ipc_call(py, Command::GetNmo { spin })? {
            Payload::UInt(n) => Ok(n as usize),
            p => Err(unexpected_payload("get_nmo", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_eigenvalues<'py>(
        &self,
        py: Python<'py>,
        spin: i32,
    ) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetEigenvalues { spin })? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_eigenvalues", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_occupation_numbers<'py>(
        &self,
        py: Python<'py>,
        spin: i32,
    ) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetOccupationNumbers { spin })? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_occupation_numbers", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_homo_lumo(&self, py: Python, spin: i32) -> PyResult<(f64, f64, i32, i32)> {
        match ipc_call(py, Command::GetHomoLumo { spin })? {
            Payload::HomoLumo {
                homo,
                lumo,
                homo_idx,
                lumo_idx,
            } => Ok((homo, lumo, homo_idx, lumo_idx)),
            p => Err(unexpected_payload("get_homo_lumo", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_band_gap(&self, py: Python, spin: i32) -> PyResult<f64> {
        match ipc_call(py, Command::GetHomoLumo { spin })? {
            Payload::HomoLumo { homo, lumo, .. } => Ok((lumo - homo) * 27.2114),
            p => Err(unexpected_payload("get_band_gap", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_mulliken_charges<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetMullikenCharges)? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_mulliken_charges", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_hirshfeld_charges<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetHirshfeldCharges)? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_hirshfeld_charges", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_dipole_moment<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<f64>>> {
        match ipc_call(py, Command::GetDipoleMoment)? {
            Payload::Array1(v) => Ok(v.into_pyarray(py)),
            p => Err(unexpected_payload("get_dipole_moment", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_scf_info(&self, py: Python) -> PyResult<(i32, bool, f64)> {
        match ipc_call(py, Command::GetScfInfo)? {
            Payload::ScfInfo {
                nsteps,
                converged,
                energy_change,
            } => Ok((nsteps, converged, energy_change)),
            p => Err(unexpected_payload("get_scf_info", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_energy_components(&self, py: Python) -> PyResult<(f64, f64, f64, f64, f64)> {
        match ipc_call(py, Command::GetEnergyComponents)? {
            Payload::EnergyComponents {
                e_kin,
                e_hartree,
                e_xc,
                e_core,
                e_total,
            } => Ok((e_kin, e_hartree, e_xc, e_core, e_total)),
            p => Err(unexpected_payload("get_energy_components", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_nelectron(&self, py: Python) -> PyResult<i32> {
        match ipc_call(py, Command::GetNelectron)? {
            Payload::Int(n) => Ok(n as i32),
            p => Err(unexpected_payload("get_nelectron", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_fermi_energy(&self, py: Python) -> PyResult<f64> {
        match ipc_call(py, Command::GetFermiEnergy)? {
            Payload::Float(e) => Ok(e),
            p => Err(unexpected_payload("get_fermi_energy", &p)),
        }
    }

    #[cfg(feature = "extended")]
    fn get_total_spin(&self, py: Python) -> PyResult<f64> {
        match ipc_call(py, Command::GetTotalSpin)? {
            Payload::Float(s) => Ok(s),
            p => Err(unexpected_payload("get_total_spin", &p)),
        }
    }
}

// ─── helpers ─────────────────────────────────────────────────────────────────

fn unexpected_payload(func: &str, payload: &Payload) -> PyErr {
    PyRuntimeError::new_err(format!("{func}: unexpected payload variant {:?}", payload))
}