| 26 | } |
| 27 | |
| 28 | Maybe<void> CheckStepShapeInCtx(user_op::InferContext* ctx) { |
| 29 | JUST(CheckStepShape(&ctx->InputShape("step", 0))); |
| 30 | return Maybe<void>::Ok(); |
| 31 | } |
| 32 | |
| 33 | Maybe<void> CheckInAndStepScalar(user_op::InferContext* ctx) { |
| 34 | const Shape& in_shape = ctx->InputShape("in", 0); |
no test coverage detected