chore: commit local changes before node reformat

This commit is contained in:
Omar Sobh
2026-05-10 14:11:34 -07:00
parent ae53983c03
commit ff81df62ce
5 changed files with 19 additions and 2 deletions
@@ -0,0 +1,5 @@
//! rtx-onnx-import -- ONNX model import tool
fn main() {
eprintln!("rtx-onnx-import: ONNX import functionality not yet implemented");
std::process::exit(1);
}
@@ -0,0 +1,4 @@
//! Compare kernel implementations
fn main() {
eprintln!("compare-kernels: not yet implemented");
}
@@ -0,0 +1,4 @@
//! rtx-kernel-bench main entry point
fn main() {
eprintln!("rtx-kernel-bench: not yet implemented");
}
@@ -0,0 +1,4 @@
//! Benchmark backends for distributed training
fn main() {
eprintln!("benchmark-backends: not yet implemented");
}
+2 -2
View File
@@ -30,8 +30,8 @@ pub mod sample_data;
use cardiosim_shared::{ use cardiosim_shared::{
APDMap, ActivationMap, ArrhythmiaEvent, ArrhythmiaType, ECGRequest, ECGResult, HeartMesh, APDMap, ActivationMap, ArrhythmiaEvent, ArrhythmiaType, ECGRequest, ECGResult, HeartMesh,
NeuralOperatorConfig, Point3D, SimulationRequest, SimulationResult, SimulationStats, NeuralOperatorConfig, Point3D, SimulationConfig, SimulationRequest, SimulationResult,
VoltageField, SimulationStats, VoltageField,
}; };
use thiserror::Error; use thiserror::Error;