From fc495987b972a3736da3d9146e56155920c06036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= <4142+huitseeker@users.noreply.github.com> Date: Mon, 6 Nov 2023 18:34:51 -0500 Subject: [PATCH] ci: fix GPU benches (#857) https://github.com/lurk-lab/lurk-rs/actions/runs/6773544195/job/18408644257 This resulted in: ``` thread 'main' panicked at benches/fibonacci_lem.rs:67:33: not yet implemented ``` This makes sure the `todo!()` at this line is no longer there to be found. --- benches/fibonacci_lem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/fibonacci_lem.rs b/benches/fibonacci_lem.rs index 69775f79a8..efcbe04b3d 100644 --- a/benches/fibonacci_lem.rs +++ b/benches/fibonacci_lem.rs @@ -64,7 +64,7 @@ impl ProveParams { format!("fib-branch={}", env!("VERGEN_GIT_BRANCH")), format!("num-{}", self.fib_n), ), - "gh-pages" => todo!(), + // TODO: refine "gh-pages", _ => ( "fib".into(), format!("num-{}-{}-{}", self.fib_n, self.sha, self.date),