| 10 | namespace imperative { |
| 11 | namespace meshgrid { |
| 12 | SmallVector<VarNode::LayoutConstraintCallback> get_input_layout_constraint( |
| 13 | const OpDef& def, const SmallVector<TensorPtr>& inputs) { |
| 14 | return SmallVector<VarNode::LayoutConstraintCallback>(inputs.size()); |
| 15 | } |
| 16 | |
| 17 | std::tuple<SmallVector<LogicalTensorDesc>, bool> infer_output_attrs_fallible( |
| 18 | const OpDef& def, const SmallVector<LogicalTensorDesc>& inputs) { |
nothing calls this directly
no test coverage detected