Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.74 KB | None | 0 0
  1. $ docker run arraiy/torchgeometry /bin/bash -c "source path.bash.inc && pytest test/"
  2. ============================= test session starts ==============================
  3. platform linux -- Python 3.7.1, pytest-4.1.1, py-1.7.0, pluggy-0.8.1
  4. rootdir: /torchgeometry, inifile:
  5. collected 158 items
  6. test/smoke_test.py ...                                                   [  1%]
  7. test/test_conversions.py .............................................   [ 30%]
  8. test/test_depth_warper.py .                                              [ 31%]
  9. test/test_homography_warper.py ...................                       [ 43%]
  10. test/test_image.py .........................................             [ 68%]
  11. test/test_imgwarp.py ..............                                      [ 77%]
  12. test/test_jit_tracing.py ..                                              [ 79%]
  13. test/test_losses.py ............                                         [ 86%]
  14. test/test_pinhole.py .................                                   [ 97%]
  15. test/test_utils.py ....                                                  [100%]
  16. =============================== warnings summary ===============================
  17. test/test_jit_tracing.py::test_jit_tracing[True-cpu]
  18.   /torchgeometry/torchgeometry/imgwarp.py:21: TracerWarning: torch.Tensor results are registered as constants in the trace. You can safely ignore this warning if you use this function to create tensors out of constant variables that would be the same every time you call this function. In any other case, this might cause the trace to be incorrect.
  19.     [0.0, 0.0, 1.0]])  # 1x3x3
  20.   /torchgeometry/torchgeometry/conversions.py:147: TracerWarning: Converting a tensor to a Python boolean might cause the trace to be incorrect. We can't record the data flow of Python values, so this value will be treated as a constant in the future. This means that the trace might not generalize to other inputs!
  21.    if not dst_pose_src.shape[0] == points_src.shape[0]:
  22.  /torchgeometry/torchgeometry/conversions.py:149: TracerWarning: Converting a tensor to a Python boolean might cause the trace to be incorrect. We can't record the data flow of Python values, so this value will be treated as a constant in the future. This means that the trace might not generalize to other inputs!
  23.     if not dst_pose_src.shape[-1] == (points_src.shape[-1] + 1):
  24. test/test_jit_tracing.py::test_jit_tracing[False-cpu]
  25.   /torchgeometry/torchgeometry/imgwarp.py:21: TracerWarning: torch.Tensor results are registered as constants in the trace. You can safely ignore this warning if you use this function to create tensors out of constant variables that would be the same every time you call this function. In any other case, this might cause the trace to be incorrect.
  26.     [0.0, 0.0, 1.0]])  # 1x3x3
  27.   /torchgeometry/torchgeometry/conversions.py:147: TracerWarning: Converting a tensor to a Python boolean might cause the trace to be incorrect. We can't record the data flow of Python values, so this value will be treated as a constant in the future. This means that the trace might not generalize to other inputs!
  28.    if not dst_pose_src.shape[0] == points_src.shape[0]:
  29.  /torchgeometry/torchgeometry/conversions.py:149: TracerWarning: Converting a tensor to a Python boolean might cause the trace to be incorrect. We can't record the data flow of Python values, so this value will be treated as a constant in the future. This means that the trace might not generalize to other inputs!
  30.     if not dst_pose_src.shape[-1] == (points_src.shape[-1] + 1):
  31. -- Docs: https://docs.pytest.org/en/latest/warnings.html
  32. =================== 158 passed, 6 warnings in 54.66 seconds ====================
  33. The command "docker run arraiy/torchgeometry /bin/bash -c "source path.bash.inc && pytest test/"" exited with 0.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement