Sign in
android
/
platform
/
external
/
pytorch
/
47766e648f
/
.
/
test
/
test_module
/
future_div.py
blob: 2cdbf9ca129bd2248536a0e9546608c53f800c26 [
file
] [
log
] [
blame
]
from
__future__
import
division
import
torch
# noqa: F401
def
div_int_future
():
return
1
/
2
def
div_float_future
():
return
3.14
/
0.125