mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-03 03:58:54 +00:00
Build error int to bool
This commit is contained in:
parent
6db6ee5710
commit
7de86d39d3
1 changed files with 1 additions and 1 deletions
|
|
@ -1142,7 +1142,7 @@ namespace OperatorHelper
|
|||
|
||||
std::vector<uint32_t> inputShape = shapeInformation.GetInputTensorShape(0);
|
||||
HandleNegativeAxes(/*inout*/ m_axes, gsl::narrow_cast<uint32_t>(inputShape.size()));
|
||||
HandleEmptyAxes(/*inout*/ m_axes, inputShape, m_noopWithEmptyAxes);
|
||||
HandleEmptyAxes(/*inout*/ m_axes, inputShape, bool(m_noopWithEmptyAxes));
|
||||
}
|
||||
|
||||
std::vector<EdgeShapes> ReduceHelperBase::GetOutputShapes(const MLShapeInferenceContext& shapeInfo) const
|
||||
|
|
|
|||
Loading…
Reference in a new issue