cythamubis

Results 3 comments of cythamubis

> 机器是 x64-avx2 ? 最新版本上结果对么? 处理器amd r7 6800H ,要怎么样知道MNN是否使用avx2指令集? 最新版本结果和当前情况一样

@jxt1234 testMNNFromONNX加debug后显示First Error Node is : Resize_709, 模型里的UpsampleLayer使用bicubic插值 部分cpp代码如下 //配置 MNN::BackendConfig backendConfig; backendConfig.precision = backendConfig.Precision_Low; backendConfig.memory = backendConfig.Memory_High; backendConfig.power = backendConfig.Power_Normal; MNN::ScheduleConfig config; config.numThread = 4; config.backendConfig = &backendConfig; config.type...

bicubic改成bilinear后结果正常,看到之前有个类似的问题 #1837