From 957c146288abeff22181d1dcb0d7e0d61c7166f5 Mon Sep 17 00:00:00 2001 From: chetanr-25 Date: Tue, 8 Sep 2026 03:17:43 +0530 Subject: [PATCH] Fix missing language tags in markdown code blocks Added missing language tags to code blocks in gpu_performance_analysis.md and create_op.md to improve syntax highlighting and fix markdown formatting. --- site/en/guide/create_op.md | 2 +- site/en/guide/gpu_performance_analysis.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/en/guide/create_op.md b/site/en/guide/create_op.md index fa4f573fa32..9aa2dfa337c 100644 --- a/site/en/guide/create_op.md +++ b/site/en/guide/create_op.md @@ -553,7 +553,7 @@ or that can't change from step-to-step. You define an attr when you register the op, by specifying its name and type using the `Attr` method, which expects a spec of the form: -``` +```text : ``` diff --git a/site/en/guide/gpu_performance_analysis.md b/site/en/guide/gpu_performance_analysis.md index 2832686d8f1..b679bd4b37e 100644 --- a/site/en/guide/gpu_performance_analysis.md +++ b/site/en/guide/gpu_performance_analysis.md @@ -454,7 +454,7 @@ prevent any overheads. The time to AllReduce should be approximately the same as: -``` +```text (number of parameters * 4bytes)/ (communication bandwidth) ```