From bb749922ad06f307275207895cee2c801056359a Mon Sep 17 00:00:00 2001 From: Chase Fleming <1666730+chasefleming@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:38:00 -0800 Subject: [PATCH 1/2] Fix prereq --- docs/build/cadence/advanced-concepts/computation-profiling.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/build/cadence/advanced-concepts/computation-profiling.md b/docs/build/cadence/advanced-concepts/computation-profiling.md index 63d8575508..797e00c7c8 100644 --- a/docs/build/cadence/advanced-concepts/computation-profiling.md +++ b/docs/build/cadence/advanced-concepts/computation-profiling.md @@ -32,9 +32,7 @@ The Flow Emulator provides two complementary tools for this purpose: | **Computation Reporting** | JSON report with detailed intensities | Quick numerical analysis, CI/CD integration, automated testing | | **Computation Profiling** | pprof profile | Visual analysis (e.g. flame graphs), deep-dive debugging, call stack exploration | -## Prerequisites - -1. **Flow CLI** installed ([installation guide](../../tools/flow-cli/install.md)) +Before getting started, make sure you have the [Flow CLI installed](../../tools/flow-cli/install.md). ## Computation Reporting From aef8d80541abe517f2afcabe52546420282cf33a Mon Sep 17 00:00:00 2001 From: Chase Fleming <1666730+chasefleming@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:40:05 -0800 Subject: [PATCH 2/2] Add cli note --- docs/build/cadence/advanced-concepts/computation-profiling.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/build/cadence/advanced-concepts/computation-profiling.md b/docs/build/cadence/advanced-concepts/computation-profiling.md index 797e00c7c8..0e4ded3c0f 100644 --- a/docs/build/cadence/advanced-concepts/computation-profiling.md +++ b/docs/build/cadence/advanced-concepts/computation-profiling.md @@ -32,8 +32,12 @@ The Flow Emulator provides two complementary tools for this purpose: | **Computation Reporting** | JSON report with detailed intensities | Quick numerical analysis, CI/CD integration, automated testing | | **Computation Profiling** | pprof profile | Visual analysis (e.g. flame graphs), deep-dive debugging, call stack exploration | +:::note + Before getting started, make sure you have the [Flow CLI installed](../../tools/flow-cli/install.md). +::: + ## Computation Reporting Computation reporting provides a JSON-based view of computational costs for all executed transactions and scripts.