* Rounds elements of input to the nearest integer. * @returns {Tensor} the output tensor.
()
| 768 | * @returns {Tensor} the output tensor. |
| 769 | */ |
| 770 | round() { |
| 771 | return this.clone().round_(); |
| 772 | } |
| 773 | |
| 774 | mean(dim = null, keepdim = false) { |
| 775 | return mean(this, dim, keepdim); |
no test coverage detected