Skip to content

add faq #3129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 12, 2021
Merged

add faq #3129

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/paddle/faq/others_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@
+ 答复:Windows环境下,遇到程序报错不会详细跟踪内存报错内容。这些信息对底层开发者更有帮助,普通开发者不必关心这类警告。如果想得到完整内存追踪错误信息,可以尝试更换至Linux系统。

----------


##### 问题:报错信息C++栈如何打开?

+ 答复:在2.0正式版中,我们默认将报错信息中的C++栈进行隐藏,如果您仍需要C++栈进行debug,请设置环境变量FLAGS_call_stack_level 为2。设置方法为:
方法1、导入为环境变量: ```export FLAGS_call_stack_level=2```
方法2、执行之前声明:```FLAGS_call_stack_level=2 python xxx.py```

----------