summaryrefslogtreecommitdiff
path: root/candle-wasm-examples/llama2-c/src/lib.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-07-24 12:36:02 +0100
committerGitHub <noreply@github.com>2023-07-24 12:36:02 +0100
commit5a26cba7339e326eaca7a10ee99f6af948da2677 (patch)
treee7ce4f569f3d620bd73c0bbb00198031345723b2 /candle-wasm-examples/llama2-c/src/lib.rs
parent550a13a5472fd3aa3975c2453eff4bff6ac1d0bd (diff)
downloadcandle-5a26cba7339e326eaca7a10ee99f6af948da2677.tar.gz
candle-5a26cba7339e326eaca7a10ee99f6af948da2677.tar.bz2
candle-5a26cba7339e326eaca7a10ee99f6af948da2677.zip
Re-organize the wasm examples (#231)
* Move the whisper example. * More renaming. * Add llama2 as a new wasm example. * Live generation. * More of the llama wasm example. * Formatting.
Diffstat (limited to 'candle-wasm-examples/llama2-c/src/lib.rs')
-rw-r--r--candle-wasm-examples/llama2-c/src/lib.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/candle-wasm-examples/llama2-c/src/lib.rs b/candle-wasm-examples/llama2-c/src/lib.rs
new file mode 100644
index 00000000..61154d04
--- /dev/null
+++ b/candle-wasm-examples/llama2-c/src/lib.rs
@@ -0,0 +1,30 @@
+#![allow(dead_code)]
+
+pub const WITH_TIMER: bool = true;
+
+struct Timer {
+ label: &'static str,
+}
+
+impl Timer {
+ fn new(label: &'static str) -> Self {
+ if WITH_TIMER {
+ web_sys::console::time_with_label(label);
+ }
+ Self { label }
+ }
+}
+
+impl Drop for Timer {
+ fn drop(&mut self) {
+ if WITH_TIMER {
+ web_sys::console::time_end_with_label(self.label)
+ }
+ }
+}
+
+mod app;
+mod model;
+mod worker;
+pub use app::App;
+pub use worker::Worker;