Program Listing for File call.h

Return to documentation for file (include/converter/include/ops/call.h)

#ifndef MINDSPORE_CORE_OPS_CALL_H_
#define MINDSPORE_CORE_OPS_CALL_H_
#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameCall = "call";
class MIND_API Call : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(Call);
  Call() : BaseOperator(kNameCall) {}
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_CALL_H_