# Differences with torch.log2 [![View Source On Gitee](https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/r2.3.q1/resource/_static/logo_source_en.svg)](https://gitee.com/mindspore/docs/blob/r2.3.q1/docs/mindspore/source_en/note/api_mapping/pytorch_diff/log2.md) ## torch.log2 ```text torch.log2(input, *, out=None) -> Tensor ``` For more information, see [torch.log2](https://pytorch.org/docs/1.8.1/generated/torch.log2.html). ## mindspore.ops.log2 ```text mindspore.ops.log2(input) -> Tensor ``` For more information, see [mindspore.ops.log2](https://www.mindspore.cn/docs/en/r2.3.0rc1/api_python/ops/mindspore.ops.log2.html). ## Differences MindSpore API function is consistent with that of PyTorch, with differences in the data types supported by the parameters. PyTorch: The dtype of the parameter `input` can be ``int`` or ``float``. MindSpore: The dtype of the parameter `input` can be ``float16``, ``float32`` or ``float64`` on CPU platform, while the dtype of the parameter `input` can be ``float16`` or ``float32`` on Ascend platform. | Categories | Subcategories |PyTorch | MindSpore | Difference | | --- | --- | --- | --- |--- | | Parameters | Parameter 1 | input | input | Both are Tensor, and the dtype of the parameter `input` in torch.log2 can be ``int`` or ``float``. The dtype of the parameter `input` in mindspore.ops.log2 can be ``float16``, ``float32``, ``float64`` on CPU platform, while ``float16`` or ``float32`` on Ascend platform.| | | Parameter 2 | out | - | For detailed, refer to [General Difference Parameter Table](https://www.mindspore.cn/docs/en/r2.3.0rc1/note/api_mapping/pytorch_api_mapping.html#general-difference-parameter-table). |