本文簡要介紹python語言中 torch.result_type
的用法。
用法:
torch.result_type(tensor1, tensor2) → dtype
返回對提供的輸入張量執行算術運算所產生的
torch.dtype
。有關類型提升邏輯的更多信息,請參閱類型提升文檔。例子:
>>> torch.result_type(torch.tensor([1, 2], dtype=torch.int), 1.0) torch.float32 >>> torch.result_type(torch.tensor([1, 2], dtype=torch.uint8), torch.tensor(1)) torch.uint8
相關用法
- Python PyTorch reshape用法及代碼示例
- Python PyTorch resolve_neg用法及代碼示例
- Python PyTorch resolve_conj用法及代碼示例
- Python PyTorch renorm用法及代碼示例
- Python PyTorch real用法及代碼示例
- Python PyTorch repeat_interleave用法及代碼示例
- Python PyTorch remove用法及代碼示例
- Python PyTorch read_vec_flt_ark用法及代碼示例
- Python PyTorch register_kl用法及代碼示例
- Python PyTorch read_vec_int_ark用法及代碼示例
- Python PyTorch remainder用法及代碼示例
- Python PyTorch register_module_forward_pre_hook用法及代碼示例
- Python PyTorch remote用法及代碼示例
- Python PyTorch register_module_full_backward_hook用法及代碼示例
- Python PyTorch remove_spectral_norm用法及代碼示例
- Python PyTorch record用法及代碼示例
- Python PyTorch remove_weight_norm用法及代碼示例
- Python PyTorch retinanet_resnet50_fpn用法及代碼示例
- Python PyTorch read_vec_flt_scp用法及代碼示例
- Python PyTorch register_parametrization用法及代碼示例
- Python PyTorch reciprocal用法及代碼示例
- Python PyTorch replace_pattern用法及代碼示例
- Python PyTorch register_module_forward_hook用法及代碼示例
- Python PyTorch read_mat_scp用法及代碼示例
- Python PyTorch read_mat_ark用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.result_type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。