| 34 | namespace gpu { |
| 35 | |
| 36 | shape hip_logsoftmax::compute_shape(const std::vector<shape>& inputs) const |
| 37 | { |
| 38 | check_shapes{inputs, *this}.has(2).standard(); |
| 39 | return op.normalize_compute_shape({inputs.at(0)}); |
| 40 | } |
| 41 | |
| 42 | argument |
| 43 | hip_logsoftmax::compute(context& ctx, const shape&, const std::vector<argument>& args) const |
nothing calls this directly
no test coverage detected