Skip to content

Commit 314b3b9

Browse files
Refine language for clarity in profiling documentation
1 parent cecdcef commit 314b3b9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/learning-paths/servers-and-cloud-computing/performix-mcp-agent/1-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can ask your AI assistant direct questions and it will invoke the `apx_recip
3636
Run the Code Hotspots recipe on /home/ec2-user/Mandelbrot-Example/build/mandelbrot_single_thread_debug and tell me which functions are the hottest
3737
```
3838

39-
This is useful for quick, exploratory checks. It works well when you already know the binary path and just want a fast hotspot summary before committing to deeper analysis.
39+
Direct chat is useful for quick, exploratory checks. It works well when you already know the binary path and just want a fast hotspot summary before committing to deeper analysis.
4040

4141
### Prompt files
4242

content/learning-paths/servers-and-cloud-computing/performix-mcp-agent/3-run-hotspot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Run the Code Hotspots recipe using a GitHub Copilot agent
2+
title: Run Code Hotspots with an AI agent
33
weight: 4
44

55
### FIXED, DO NOT MODIFY

content/learning-paths/servers-and-cloud-computing/performix-mcp-agent/4-optimize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The fix is to replace `std::complex<double>` in `getIterations` with plain `doub
4747
$$re_{new} = re_z^2 - im_z^2 + re_c$$
4848
$$im_{new} = 2 \cdot re_z \cdot im_z + im_c$$
4949

50-
This eliminates every `std::complex` method call from the inner loop. If the agent hasn't already proposed this change, use the following prompt to direct it:
50+
The fix eliminates every `std::complex` method call from the inner loop. If the agent hasn't already proposed this change, use the following prompt to direct it:
5151

5252
```text
5353
On the remote server, rewrite the getIterations function in

0 commit comments

Comments
 (0)