Skip to content

Commit 82bb03c

Browse files
committed
update readme
1 parent b9238da commit 82bb03c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The proof is **transparent** (no trusted setup), **post-quantum** (hash-based, n
7575
## Quick Start
7676

7777
```bash
78-
git clone https://github.com/abdel/transformer-vm-rs && cd transformer-vm-rs
78+
git clone https://github.com/AbdelStark/llm-provable-computer && cd llm-provable-computer
7979

8080
# Run a program
8181
cargo run --bin tvm -- programs/fibonacci.tvm

scripts/validate_onnx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
"""Validate exported transformer-vm ONNX programs with ONNX Runtime."""
2+
"""Validate exported llm-provable-computer ONNX programs with ONNX Runtime."""
33

44
from __future__ import annotations
55

@@ -357,7 +357,7 @@ def parse_bool(value: str) -> bool:
357357

358358
def parse_args(argv: list[str]) -> argparse.Namespace:
359359
parser = argparse.ArgumentParser(
360-
description="Validate transformer-vm ONNX exports with onnxruntime."
360+
description="Validate llm-provable-computer ONNX exports with onnxruntime."
361361
)
362362
parser.add_argument("export_path", help="Export directory or metadata.json path")
363363
parser.add_argument("--max-steps", type=int, default=4096, help="Maximum execution steps")

src/bin/tvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use llm_provable_computer::{BurnExecutionRuntime, BurnTransformerVm};
2626
type CliBurnBackend = NdArray<f64>;
2727

2828
#[derive(Debug, Parser)]
29-
#[command(name = "tvm", about = "Run deterministic transformer-vm programs.")]
29+
#[command(name = "tvm", about = "Run deterministic llm-provable-computer programs.")]
3030
struct Cli {
3131
#[command(subcommand)]
3232
command: Command,

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl TransformerVmConfig {
105105
}
106106
if self.head_dim() != 2 {
107107
return Err(VmError::InvalidConfig(format!(
108-
"transformer-vm requires head_dim=2, got {}",
108+
"llm-provable-computer requires head_dim=2, got {}",
109109
self.head_dim()
110110
)));
111111
}

src/onnx_export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ fn export_instruction_onnx(
440440
model.domain = "com.llm_provable_computer".to_string();
441441
model.model_version = FORMAT_VERSION as i64;
442442
model.doc_string =
443-
"Per-instruction transformer-vm feed-forward export with explicit flag outputs".to_string();
443+
"Per-instruction llm-provable-computer feed-forward export with explicit flag outputs".to_string();
444444
model.graph = MessageField::some(graph);
445445
model
446446
}

0 commit comments

Comments
 (0)