Program Listing for File invert_permutation.h

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

#ifndef MINDSPORE_CORE_OPS_INVERT_PERMUTATION_H_
#define MINDSPORE_CORE_OPS_INVERT_PERMUTATION_H_
#include <memory>
#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameInvertPermutation = "InvertPermutation";
class MIND_API InvertPermutation : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(InvertPermutation);
  InvertPermutation() : BaseOperator(kNameInvertPermutation) {}
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_INVERT_PERMUTATION_H_