14 lines
196 B
C++
14 lines
196 B
C++
#pragma once
|
|
|
|
namespace mlir {
|
|
class Operation;
|
|
}
|
|
|
|
namespace onnx_mlir {
|
|
|
|
bool isShapingOnlyOp(mlir::Operation *op);
|
|
|
|
bool isPureIndexComputationOp(mlir::Operation *op);
|
|
|
|
} // namespace onnx_mlir
|