| 29 | namespace gpu { |
| 30 | #if MIGRAPHX_USE_MIOPEN |
| 31 | shape miopen_lrn::compute_shape(const std::vector<shape>& inputs) const |
| 32 | { |
| 33 | check_shapes{inputs, *this}.has(2).not_broadcasted(); |
| 34 | return inputs.at(1); |
| 35 | } |
| 36 | |
| 37 | argument miopen_lrn::compute(context& ctx, |
| 38 | const shape& output_shape, |
no test coverage detected