CompileNpuOptions
ascendebug提供了CompileNpuOptions结构体,用于存储NPU编译相关的可选配置信息。
具体定义如下:
@dataclass class CompileNpuOptions(): dump_mode: str = "" simulator: bool = False pipe_all: bool = False
关于结构体中成员的详细说明请参见表1。
属性名 |
属性类型 |
默认值 |
属性说明 |
---|---|---|---|
dump_mode |
str |
"" |
printf/PRINTF/DumpTensor/DumpAccChkPoint/assert打印功能的模式配置。
|
simulator |
bool |
False |
是否开启仿真功能。默认关闭。
说明:
仅性能仿真调测场景的编译阶段才需开启本属性,否则影响后续执行过程。 |
pipe_all |
bool |
False |
是否开启PIPE_ALL功能。默认关闭。 |
父主题: 数据结构