Spaces:
Sleeping
Sleeping
File size: 470 Bytes
dc2106c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <string>
#include "onnx/defs/schema.h"
namespace ONNX_NAMESPACE {
void ClearShape(TypeProto& input_type);
int handle_negative_axis_validate(const std::string& attrib, int axis, int rank);
void IfInferenceFunction(InferenceContext& ctx);
void LoopInferenceFunction(InferenceContext& ctx);
void ScanInferenceFunction(InferenceContext& ctx);
} // namespace ONNX_NAMESPACE
|