diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-16 18:49:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 18:49:08 +0100 |
commit | c5f45887dc32bc6575c9d55135def391b949ce98 (patch) | |
tree | b738a79158c49e7968275d7a9a04423bd47681ee /candle-examples/examples/llama | |
parent | fa4590d7fd2b21ee811dba735851b6ec487f3cee (diff) | |
download | candle-c5f45887dc32bc6575c9d55135def391b949ce98.tar.gz candle-c5f45887dc32bc6575c9d55135def391b949ce98.tar.bz2 candle-c5f45887dc32bc6575c9d55135def391b949ce98.zip |
Add some tracing to the quantized example. (#473)
Diffstat (limited to 'candle-examples/examples/llama')
-rw-r--r-- | candle-examples/examples/llama/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/candle-examples/examples/llama/main.rs b/candle-examples/examples/llama/main.rs index def5eb20..e3d2550e 100644 --- a/candle-examples/examples/llama/main.rs +++ b/candle-examples/examples/llama/main.rs @@ -89,7 +89,6 @@ fn main() -> Result<()> { let args = Args::parse(); let _guard = if args.tracing { - println!("tracing..."); let (chrome_layer, guard) = ChromeLayerBuilder::new().build(); tracing_subscriber::registry().with(chrome_layer).init(); Some(guard) |