From 0be7099f8a2258e438207826ea9679dbdb5b84f9 Mon Sep 17 00:00:00 2001 From: ImageBuilder1837 Date: Sun, 23 Jun 2024 11:36:30 +0800 Subject: [PATCH] feat: add viztracer report to python gitignore VizTracer is a logging/debugging/profiling tool for Python. A `result.json` file will be generated as a report when using VizTracer. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 82f92755..9dab3890 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -160,3 +160,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# VizTracer report +result.json