From 655de43cd44436169c4c98e4232f32df52612af3 Mon Sep 17 00:00:00 2001 From: Luca Ferranti <49938764+lucaferranti@users.noreply.github.com> Date: Wed, 15 May 2024 21:31:33 +0300 Subject: [PATCH] fix link to installation guide from getting_started (#25) --- content/getting_started/UsingEnzyme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/getting_started/UsingEnzyme.md b/content/getting_started/UsingEnzyme.md index bbbf444..9830b48 100644 --- a/content/getting_started/UsingEnzyme.md +++ b/content/getting_started/UsingEnzyme.md @@ -65,7 +65,7 @@ entry: ``` ## Performing AD Enzyme -We can now run Enzyme to differentiate our LLVM IR. The following command will load Enzyme and run the differentiation transformation pass. Note that `opt` should be the path to whatever opt was creating by the LLVM you built Enzyme against. If you see a segfault when trying to run opt, this is likely an issue in LLVM's plugin infrasture. Please see [the installation guide](/getting_started/Installation) for more information on how to resolve this. For LLVM 13 or a higher version, please see [FAQ](/getting_started/Faq). +We can now run Enzyme to differentiate our LLVM IR. The following command will load Enzyme and run the differentiation transformation pass. Note that `opt` should be the path to whatever opt was creating by the LLVM you built Enzyme against. If you see a segfault when trying to run opt, this is likely an issue in LLVM's plugin infrasture. Please see [the installation guide](/Installation) for more information on how to resolve this. For LLVM 13 or a higher version, please see [FAQ](/getting_started/Faq). ```sh opt input.ll -load=/path/to/Enzyme/enzyme/build/Enzyme/LLVMEnzyme-.so -enzyme -o output.ll -S