mirror of
https://github.com/geoffsee/predict-otron-9001.git
synced 2025-09-08 22:46:44 +00:00
16 lines
303 B
Rust
16 lines
303 B
Rust
#[cfg(feature = "accelerate")]
|
|
extern crate accelerate_src;
|
|
#[cfg(feature = "mkl")]
|
|
extern crate intel_mkl_src;
|
|
mod gemma_api;
|
|
mod gemma_cli;
|
|
|
|
use anyhow::Error;
|
|
|
|
use crate::gemma_cli::run_cli;
|
|
|
|
/// just a placeholder, not used for anything
|
|
fn main() -> std::result::Result<(), Error> {
|
|
run_cli()
|
|
}
|