ducuibing
ducuibing
## detail | 详细描述 | 詳細な説明 src\cpu.cpp:190:8: error: 'LONG' does not name a type; did you mean 'SING'? static LONG CALLBACK catch_sigill(struct _EXCEPTION_POINTERS* ExceptionInfo) ^~~~ SING C:\Users\DELL\Downloads\ncnn-20240102\src\cpu.cpp: In function 'int...
onnx_model = onnx.load(path_onnx) model_shape = {"input": [1,3,224,224]} model, params = relay.frontend.from_onnx(onnx_model, model_shape) target = "llvm -mtriple=mipsel-linux-gnu" compiler = "path/to/mips-linux-gnu/bin/mips-linux-gnu-gcc" with tvm.transform.PassContext(opt_level=3): lib = relay.build(model, target=target, params=params) lib.export_library(args.tvm, cc=compiler, options=options) Traceback...
Thanks for participating in the TVM community! We use https://discuss.tvm.ai for any general usage questions and discussions. The issue tracker is used for actionable items such as feature proposals discussion,...
how to use c++ api of deepsparse to deploy my optimized model
我的模型结构就这么简单,也遇到了类似报错:  ``` E/tnn: std::shared_ptr tnn::optimizer::NetOptimizerInsertLayoutReformat::GetLayoutsByLayerType(tnn::LayerType) [File source/tnn/optimizer/net_optimizer_insert_layout_reformat.cc][Line 126] NetOptimizerInsertLayoutReformat Error: empty adaptor device layouts of 333 E/tnn: virtual tnn::Status tnn::optimizer::NetOptimizerInsertLayoutReformat::Optimize(tnn::NetStructure *, tnn::NetResource *) [File source/tnn/optimizer/net_optimizer_insert_layout_reformat.cc][Line 246] NetOptimizerInsertLayoutReformat Error: empty...