From caaac937734e5cc7311d17e6a673602c24c0b5ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= Date: Mon, 6 Nov 2023 17:54:13 -0500 Subject: [PATCH] ci: fix GPU benches 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),