-
Device: Hailo-8L, HailoRT , DFC
-
HEF input (parse-hef) is NHWC. Feeding NHWC works.
The guide says NHCW is the native HW format. My data comes from another device, so I’d like to feed NHCW directly and skip the NHWC→NHCW conversion.
Tried (InferModel, Python):
infer_model.input().set_format_order(FormatOrder.NHCW) # also NCHW
→ error: “Unsupported input stream transformation from NHCW to NHWC,
HAILO_INVALID_OPERATION(6)”Questions:
- Can the Dataflow Compiler compile a HEF whose host input is NHCW (so no conversion)? If yes, which option controls it?
- If not, where does the NHWC→NHCW conversion run — host or NN-Core?