deepmd 0.1.0

DeePMD-kit deep potential models as RLX IR graph builders
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// RLX — versatile ML compiler + runtime.
// Copyright (C) 2026 Eugene Hauptmann, Nataliya Kosmyna.

//! `se_t_tebd` descriptor — three-body with type embeddings.
//!
//! Translated from `DescrptBlockSeTTebd.call` in
//! `deepmd/dpmodel/descriptor/se_t_tebd.py`.
//!
//! Inputs:
//!
//! * `env_mat_raw` — `[nf, nloc, nnei, 4]`.
//! * `atype_loc`   — `[nf, nloc]` i32.
//! * `nei_atype`   — `[nf, nloc, nnei]` i32, the **type of each
//!   neighbor**, precomputed by host as
//!   `nei_atype[f, i, j] = atype_ext[f, nlist[f, i, j]]` (with `-1`
//!   slots remapped to the padding-row index `ntypes`).
//! * `sw`          — `[nf, nloc, nnei]` f32 switching weight (only used
//!   for `tebd_input_mode = "strip"` with `smooth=true`).
//! * `exclude_mask` — `[nf, nloc, nnei]` f32 (optional).
//!
//! Two paths:
//!
//! * `tebd_input_mode = "concat"` — pair-embedding net consumes
//!   `(env_ij, t_i, t_j)` directly.
//! * `tebd_input_mode = "strip"` — main net runs on `env_ij` alone, a
//!   separate `strip` net produces a per-(type_i, type_j) lookup table
//!   that's gathered with the runtime neighbor types and combined as
//!   `gg = gg_s * gg_t + gg_s`.

use anyhow::{bail, Result};
use rlx_ir::infer::GraphExt;
use rlx_ir::op::ReduceOp;
use rlx_ir::{DType, Graph, NodeId, Shape};
use serde::{Deserialize, Serialize};

use crate::nn::{embedding_mlp, scalar_const, ActivationKind, MlpSpec};

#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum TebdInputMode {
    Concat,
    Strip,
}

impl Default for TebdInputMode {
    fn default() -> Self {
        Self::Concat
    }
}

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct SeTTebdConfig {
    pub rcut: f64,
    pub rcut_smth: f64,
    pub sel: Vec<usize>,
    pub ntypes: usize,
    #[serde(default = "default_neuron")]
    pub neuron: Vec<usize>,
    #[serde(default = "default_tebd_dim")]
    pub tebd_dim: usize,
    #[serde(default)]
    pub tebd_input_mode: TebdInputMode,
    #[serde(default)]
    pub resnet_dt: bool,
    #[serde(default = "default_activation")]
    pub activation_function: String,
    #[serde(default = "default_true")]
    pub smooth: bool,
    /// Root param prefix (e.g. `"descriptor"` for standalone use, or
    /// `"repinit_three_body"` when used as DPA-2's three-body block).
    #[serde(default = "default_param_prefix")]
    pub param_prefix: String,
}

fn default_param_prefix() -> String {
    "descriptor".into()
}

fn default_neuron() -> Vec<usize> {
    vec![25, 50, 100]
}
fn default_tebd_dim() -> usize {
    8
}
fn default_activation() -> String {
    "tanh".into()
}
fn default_true() -> bool {
    true
}

impl SeTTebdConfig {
    pub fn nnei(&self) -> usize {
        self.sel.iter().sum()
    }
    pub fn ng(&self) -> usize {
        *self.neuron.last().expect("se_t_tebd: empty neuron list")
    }
    pub fn dim_out(&self) -> usize {
        self.ng()
    }
}

pub struct SeTTebdDescriptor {
    /// Descriptor, shape `[nf, nloc, ng]`.
    pub descriptor: NodeId,
    pub dim_out: usize,
}

pub struct SeTTebdInputs {
    pub env_mat_raw: NodeId,
    pub atype_loc: NodeId,
    pub nei_atype: NodeId,
    /// Type embedding table `[ntypes_with_pad, tebd_dim]`. May be a
    /// param (gathered at runtime) or the output of
    /// `crate::type_embed::build_type_embedding`.
    pub type_embedding: NodeId,
    /// Switching weight `[nf, nloc, nnei]` (only used by `strip+smooth`).
    pub sw: Option<NodeId>,
    pub exclude_mask: Option<NodeId>,
}

pub fn build_se_t_tebd_descriptor(
    g: &mut Graph,
    cfg: &SeTTebdConfig,
    inputs: SeTTebdInputs,
    nf: usize,
    nloc: usize,
) -> Result<SeTTebdDescriptor> {
    let activation = ActivationKind::parse(&cfg.activation_function)?;
    let nnei = cfg.nnei();
    let ng = cfg.ng();
    let ntypes = cfg.ntypes;
    let tebd = cfg.tebd_dim;

    let rr_shape = g.shape(inputs.env_mat_raw).clone();
    if rr_shape.rank() != 4 {
        bail!("se_t_tebd: env-matrix input must have rank 4");
    }

    // Normalization (davg/dstd params).
    let davg_name = format!("{}.davg", cfg.param_prefix);
    let dstd_name = format!("{}.dstd", cfg.param_prefix);
    let davg = g.param(
        &davg_name,
        Shape::new(&[ntypes, nnei, 4], DType::F32),
    );
    let dstd = g.param(
        &dstd_name,
        Shape::new(&[ntypes, nnei, 4], DType::F32),
    );
    let davg_g = g.gather_(davg, inputs.atype_loc, 0);
    let dstd_g = g.gather_(dstd, inputs.atype_loc, 0);
    let mut rr = g.sub(inputs.env_mat_raw, davg_g);
    rr = g.div(rr, dstd_g);

    if let Some(mask) = inputs.exclude_mask {
        let mask_shape = Shape::new(&[nf, nloc, nnei, 1], DType::F32);
        let mask_4d = g.reshape(
            mask,
            vec![nf as i64, nloc as i64, nnei as i64, 1],
            mask_shape,
        );
        rr = g.mul(rr, mask_4d);
    }

    // Drop the radial column; keep xyz.
    let rr_xyz = g.narrow_(rr, 3, 1, 3); // [nf, nloc, nnei, 3]
    // env_ij = rr_xyz · rr_xyzᵀ          → [nf, nloc, nnei, nnei]
    let rr_t = g.transpose_(rr_xyz, vec![0, 1, 3, 2]);
    let env_ij = g.mm(rr_xyz, rr_t);

    // ss = env_ij[..., None]              → [nf, nloc, nnei, nnei, 1]
    let env_5d_shape = Shape::new(&[nf, nloc, nnei, nnei, 1], DType::F32);
    let env_5d = g.reshape(
        env_ij,
        vec![nf as i64, nloc as i64, nnei as i64, nnei as i64, 1],
        env_5d_shape,
    );

    // Gather neighbor type embeddings: t_nei = T[nei_atype] → [nf,nloc,nnei,tebd].
    let t_nei = g.gather_(inputs.type_embedding, inputs.nei_atype, 0);

    let gg = match cfg.tebd_input_mode {
        TebdInputMode::Concat => {
            // Tile t_nei along the two neighbor axes:
            //   t_i shape [nf, nloc, nnei, 1, tebd]  (insert axis after nnei_i)
            //   t_j shape [nf, nloc, 1, nnei, tebd]
            // Concat with ss → [nf, nloc, nnei, nnei, 1 + 2*tebd]
            let t_i_shape = Shape::new(&[nf, nloc, nnei, 1, tebd], DType::F32);
            let t_i = g.reshape(
                t_nei,
                vec![nf as i64, nloc as i64, nnei as i64, 1, tebd as i64],
                t_i_shape,
            );
            let t_j_shape = Shape::new(&[nf, nloc, 1, nnei, tebd], DType::F32);
            let t_j = g.reshape(
                t_nei,
                vec![nf as i64, nloc as i64, 1, nnei as i64, tebd as i64],
                t_j_shape,
            );
            // Broadcast to the full 5D shape by adding zero tensors of
            // matching size, so the concat axis aligns.
            let zero_i_shape = Shape::new(&[nf, nloc, nnei, nnei, tebd], DType::F32);
            let zero_i = zero_tensor(g, &zero_i_shape);
            let t_i_b = g.add(t_i, zero_i);
            let zero_j_shape = Shape::new(&[nf, nloc, nnei, nnei, tebd], DType::F32);
            let zero_j = zero_tensor(g, &zero_j_shape);
            let t_j_b = g.add(t_j, zero_j);

            let concat_shape =
                Shape::new(&[nf, nloc, nnei, nnei, 1 + 2 * tebd], DType::F32);
            let ss_concat = g.concat(vec![env_5d, t_i_b, t_j_b], 4, concat_shape);

            // Main pair-embedding net.
            let embedding_prefix = format!("{}.embedding", cfg.param_prefix);
            let mlp = MlpSpec {
                param_prefix: &embedding_prefix,
                in_dim: 1 + 2 * tebd,
                neuron: &cfg.neuron,
                activation,
                resnet_dt: cfg.resnet_dt,
            };
            embedding_mlp(g, &mlp, ss_concat) // [nf, nloc, nnei, nnei, ng]
        }
        TebdInputMode::Strip => {
            // gg_s = MLP_main(env_5d)         → [nf, nloc, nnei, nnei, ng]
            let embedding_prefix = format!("{}.embedding", cfg.param_prefix);
            let mlp_main = MlpSpec {
                param_prefix: &embedding_prefix,
                in_dim: 1,
                neuron: &cfg.neuron,
                activation,
                resnet_dt: cfg.resnet_dt,
            };
            let gg_s = embedding_mlp(g, &mlp_main, env_5d);

            // Build the (ntypes_with_pad²) type-pair table from the
            // type embedding.  We treat the table as a graph constant
            // computed once via MLP_strip on concat(t_i_all, t_j_all).
            let rows = ntypes_with_pad_from_shape(g, inputs.type_embedding);
            let pair_in_shape = Shape::new(&[rows * rows, 2 * tebd], DType::F32);
            let tt_pair = build_pair_table(g, inputs.type_embedding, rows, tebd)?;
            // Run the strip MLP over the pair concat → [N², ng].
            let strip_prefix = format!("{}.embedding_strip", cfg.param_prefix);
            let mlp_strip = MlpSpec {
                param_prefix: &strip_prefix,
                in_dim: 2 * tebd,
                neuron: &cfg.neuron,
                activation,
                resnet_dt: cfg.resnet_dt,
            };
            let _ = pair_in_shape;
            let tt_full = embedding_mlp(g, &mlp_strip, tt_pair); // [N², ng]

            // Compose pair index from runtime neighbor types:
            //   pair_idx = nei_type_i * rows + nei_type_j           [nf, nloc, nnei, nnei]
            let rows_const = scalar_i32_const(g, rows as i32);
            let ti_shape = Shape::new(&[nf, nloc, nnei, 1], DType::I32);
            let nei_i_4d = g.reshape(
                inputs.nei_atype,
                vec![nf as i64, nloc as i64, nnei as i64, 1],
                ti_shape,
            );
            let tj_shape = Shape::new(&[nf, nloc, 1, nnei], DType::I32);
            let nei_j_4d = g.reshape(
                inputs.nei_atype,
                vec![nf as i64, nloc as i64, 1, nnei as i64],
                tj_shape,
            );
            // i_scaled = nei_i_4d * rows  (broadcast w/ scalar)
            let i_scaled = g.binary(
                rlx_ir::op::BinaryOp::Mul,
                nei_i_4d,
                rows_const,
                g.shape(nei_i_4d).clone(),
            );
            // pair_idx_4d = i_scaled + nei_j_4d → [nf, nloc, nnei, nnei]
            // (rely on standard broadcast: [nf,nloc,nnei,1] + [nf,nloc,1,nnei])
            let pair_idx_shape = Shape::new(&[nf, nloc, nnei, nnei], DType::I32);
            let pair_idx_4d =
                g.binary(rlx_ir::op::BinaryOp::Add, i_scaled, nei_j_4d, pair_idx_shape);

            // Flatten + gather: [nf*nloc*nnei*nnei] → [..., ng]
            let flat_total = nf * nloc * nnei * nnei;
            let flat_shape = Shape::new(&[flat_total], DType::I32);
            let pair_idx_flat = g.reshape(pair_idx_4d, vec![flat_total as i64], flat_shape);
            let gg_t_flat = g.gather_(tt_full, pair_idx_flat, 0); // [flat_total, ng]
            let gg_t_shape = Shape::new(&[nf, nloc, nnei, nnei, ng], DType::F32);
            let gg_t = g.reshape(
                gg_t_flat,
                vec![
                    nf as i64,
                    nloc as i64,
                    nnei as i64,
                    nnei as i64,
                    ng as i64,
                ],
                gg_t_shape,
            );

            let mut gg_t = gg_t;
            if cfg.smooth {
                if let Some(sw) = inputs.sw {
                    let sw_i_shape = Shape::new(&[nf, nloc, nnei, 1, 1], DType::F32);
                    let sw_i = g.reshape(
                        sw,
                        vec![nf as i64, nloc as i64, nnei as i64, 1, 1],
                        sw_i_shape,
                    );
                    let sw_j_shape = Shape::new(&[nf, nloc, 1, nnei, 1], DType::F32);
                    let sw_j = g.reshape(
                        sw,
                        vec![nf as i64, nloc as i64, 1, nnei as i64, 1],
                        sw_j_shape,
                    );
                    gg_t = g.mul(gg_t, sw_i);
                    gg_t = g.mul(gg_t, sw_j);
                }
            }

            // gg = gg_s * gg_t + gg_s
            let prod = g.mul(gg_s, gg_t);
            g.add(prod, gg_s)
        }
    };

    // res_ij = Σ (env_ij[..., None] * gg) over (nnei_i, nnei_j) → [nf, nloc, ng]
    let weighted = g.mul(env_5d, gg);
    let sum_shape = Shape::new(&[nf, nloc, ng], DType::F32);
    let summed = g.reduce(weighted, ReduceOp::Sum, vec![2, 3], false, sum_shape);

    let inv_nnei2 = scalar_const(g, 1.0 / (nnei as f32 * nnei as f32));
    let res = g.mul(summed, inv_nnei2);
    Ok(SeTTebdDescriptor {
        descriptor: res,
        dim_out: ng,
    })
}

fn zero_tensor(g: &mut Graph, shape: &Shape) -> NodeId {
    let n: usize = shape
        .dims()
        .iter()
        .map(|d| match d {
            rlx_ir::Dim::Static(n) => *n,
            _ => 0,
        })
        .product();
    let bytes = vec![0u8; n * 4];
    g.add_node(
        rlx_ir::op::Op::Constant { data: bytes },
        vec![],
        shape.clone(),
    )
}

fn scalar_i32_const(g: &mut Graph, v: i32) -> NodeId {
    let bytes = v.to_le_bytes().to_vec();
    g.add_node(
        rlx_ir::op::Op::Constant { data: bytes },
        vec![],
        Shape::new(&[1], DType::I32),
    )
}

fn ntypes_with_pad_from_shape(g: &Graph, table: NodeId) -> usize {
    match g.shape(table).dim(0) {
        rlx_ir::Dim::Static(n) => n,
        _ => panic!("type embedding table must have static row count"),
    }
}

/// Build a `[rows², 2*tebd]` tensor whose row `i*rows + j` is
/// `concat(T[i], T[j])`.  Used by `tebd_input_mode = "strip"`.
fn build_pair_table(
    g: &mut Graph,
    table: NodeId,
    rows: usize,
    tebd: usize,
) -> Result<NodeId> {
    // Build host-time index tensors:
    //   i_idx[k] = k / rows
    //   j_idx[k] = k % rows
    // for k in 0..rows²
    let mut i_data = Vec::with_capacity(rows * rows);
    let mut j_data = Vec::with_capacity(rows * rows);
    for i in 0..rows {
        for j in 0..rows {
            i_data.push(i as i32);
            j_data.push(j as i32);
        }
    }
    let i_bytes: Vec<u8> = i_data.iter().flat_map(|v| v.to_le_bytes()).collect();
    let j_bytes: Vec<u8> = j_data.iter().flat_map(|v| v.to_le_bytes()).collect();
    let i_idx = g.add_node(
        rlx_ir::op::Op::Constant { data: i_bytes },
        vec![],
        Shape::new(&[rows * rows], DType::I32),
    );
    let j_idx = g.add_node(
        rlx_ir::op::Op::Constant { data: j_bytes },
        vec![],
        Shape::new(&[rows * rows], DType::I32),
    );

    let t_i = g.gather_(table, i_idx, 0); // [rows², tebd]
    let t_j = g.gather_(table, j_idx, 0); // [rows², tebd]
    let out_shape = Shape::new(&[rows * rows, 2 * tebd], DType::F32);
    Ok(g.concat(vec![t_i, t_j], 1, out_shape))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn se_t_tebd_concat_builds() {
        let cfg = SeTTebdConfig {
            rcut: 6.0,
            rcut_smth: 0.5,
            sel: vec![20, 20],
            ntypes: 2,
            neuron: vec![16, 32],
            tebd_dim: 8,
            tebd_input_mode: TebdInputMode::Concat,
            resnet_dt: false,
            activation_function: "tanh".into(),
            smooth: false,
            param_prefix: "descriptor".into(),
        };
        let mut g = Graph::new("se_t_tebd_concat");
        let nf = 1;
        let nloc = 4;
        let nnei = cfg.nnei();
        let env_mat = g.input("env_mat", Shape::new(&[nf, nloc, nnei, 4], DType::F32));
        let atype = g.input("atype", Shape::new(&[nf, nloc], DType::I32));
        let nei_atype = g.input("nei_atype", Shape::new(&[nf, nloc, nnei], DType::I32));
        let t_table = g.param(
            "type_embed.table",
            Shape::new(&[cfg.ntypes + 1, cfg.tebd_dim], DType::F32),
        );
        let inputs = SeTTebdInputs {
            env_mat_raw: env_mat,
            atype_loc: atype,
            nei_atype,
            type_embedding: t_table,
            sw: None,
            exclude_mask: None,
        };
        let out = build_se_t_tebd_descriptor(&mut g, &cfg, inputs, nf, nloc)
            .expect("build");
        assert_eq!(out.dim_out, cfg.dim_out());
        assert!(g.len() > 20);
    }

    #[test]
    fn se_t_tebd_strip_builds() {
        let cfg = SeTTebdConfig {
            rcut: 6.0,
            rcut_smth: 0.5,
            sel: vec![10, 10],
            ntypes: 2,
            neuron: vec![8, 16],
            tebd_dim: 4,
            tebd_input_mode: TebdInputMode::Strip,
            resnet_dt: false,
            activation_function: "tanh".into(),
            smooth: true,
            param_prefix: "descriptor".into(),
        };
        let mut g = Graph::new("se_t_tebd_strip");
        let nf = 1;
        let nloc = 2;
        let nnei = cfg.nnei();
        let env_mat = g.input("env_mat", Shape::new(&[nf, nloc, nnei, 4], DType::F32));
        let atype = g.input("atype", Shape::new(&[nf, nloc], DType::I32));
        let nei_atype = g.input("nei_atype", Shape::new(&[nf, nloc, nnei], DType::I32));
        let sw = g.input("sw", Shape::new(&[nf, nloc, nnei], DType::F32));
        let t_table = g.param(
            "type_embed.table",
            Shape::new(&[cfg.ntypes + 1, cfg.tebd_dim], DType::F32),
        );
        let inputs = SeTTebdInputs {
            env_mat_raw: env_mat,
            atype_loc: atype,
            nei_atype,
            type_embedding: t_table,
            sw: Some(sw),
            exclude_mask: None,
        };
        let out = build_se_t_tebd_descriptor(&mut g, &cfg, inputs, nf, nloc)
            .expect("build");
        assert_eq!(out.dim_out, cfg.dim_out());
        assert!(g.len() > 30);
    }
}