From a2b8207cdae866d6f948ac9715f59db588c189fe Mon Sep 17 00:00:00 2001 From: Zhao Liang Date: Mon, 16 Jan 2023 12:56:14 +0800 Subject: [PATCH] [Doc] Fix C++ tutorial does not display on doc site (#7174) This PR fixes the problem that `depolyment/tutorial.md` does not display on the doc site. --- docs/lang/articles/deployment/tutorial.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/lang/articles/deployment/tutorial.md b/docs/lang/articles/deployment/tutorial.md index 0d32503783a77..1862310bc0edc 100644 --- a/docs/lang/articles/deployment/tutorial.md +++ b/docs/lang/articles/deployment/tutorial.md @@ -1,3 +1,7 @@ +--- +sidebar_position: 1 +--- + # Tutorial: Run Taichi programs in C++ application Taichi makes it easy to write high-performance programs with efficient parallelism, but in many applications we cannot simply deploy the Python scripts. Taichi offers a runtime library (TiRT) with a C interface so that your Taichi kernels can be launched in any native application. In this tutorial, we'll walkthrough the steps to deploy a Taichi program in a C++ application.