├── README.md ├── coordinate_roiwarp ├── BUILD ├── roi_warping_op.cc ├── roi_warping_op_gpu.cu.cc └── roi_warping_op_gpu.h ├── feature_maskpool ├── BUILD ├── mask_pooling_op.cc ├── mask_pooling_op_gpu.cu.cc ├── mask_pooling_op_gpu.h └── mask_pooling_op_grad.py ├── feature_roiwarp ├── BUILD ├── roi_warping_op.cc ├── roi_warping_op_gpu.cu.cc └── roi_warping_op_gpu.h ├── girshick_roipool ├── BUILD ├── roi_pooling_op.cc ├── roi_pooling_op_gpu.cu.cc ├── roi_pooling_op_gpu.h └── roi_pooling_op_grad.py ├── mask_resize ├── BUILD ├── mask_resize_op.cc ├── mask_resize_op_gpu.cu.cc ├── mask_resize_op_gpu.h └── mask_resize_op_grad.py ├── maskpool ├── BUILD ├── mask_pooling_op.cc ├── mask_pooling_op_gpu.cu.cc └── mask_pooling_op_gpu.h ├── ps_roipool ├── BUILD ├── psroi_pooling_op.cc ├── psroi_pooling_op_gpu.cu.cc └── psroi_pooling_op_gpu.h ├── roiwarp ├── BUILD ├── roi_warping_op.cc ├── roi_warping_op_gpu.cu.cc └── roi_warping_op_gpu.h └── user_ops_tests ├── mask_pooling_test ├── mask_pool_op_test.py ├── mask_pooling_op.py ├── mask_pooling_op.pyc ├── mask_pooling_op_grad.py └── mask_pooling_op_grad.pyc ├── mask_resize_test ├── mask_resize_op.py ├── mask_resize_op.pyc ├── mask_resize_op_grad.py ├── mask_resize_op_grad.pyc └── mask_resize_op_test.py ├── psroi_pooling_test ├── psroi_pooling_op.py ├── psroi_pooling_op.pyc ├── psroi_pooling_op_grad.py ├── psroi_pooling_op_grad.pyc └── psroi_pooling_op_test.py ├── roi_coordinate_warping_test ├── roi_warping_op.py ├── roi_warping_op.pyc ├── roi_warping_op_grad.py ├── roi_warping_op_grad.pyc └── roi_warping_op_test.py ├── roi_feature_warping_test ├── roi_warping_op.py ├── roi_warping_op.pyc ├── roi_warping_op_grad.py ├── roi_warping_op_grad.pyc └── roi_warping_op_test.py ├── roi_girshick_pool_test ├── roi_pooling_op.py ├── roi_pooling_op.pyc ├── roi_pooling_op_grad.py ├── roi_pooling_op_grad.pyc └── roi_pooling_op_test.py └── roi_warping_test ├── roi_warping_op.py ├── roi_warping_op.pyc ├── roi_warping_op_grad.py ├── roi_warping_op_grad.pyc └── roi_warping_op_test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/README.md -------------------------------------------------------------------------------- /coordinate_roiwarp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/coordinate_roiwarp/BUILD -------------------------------------------------------------------------------- /coordinate_roiwarp/roi_warping_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/coordinate_roiwarp/roi_warping_op.cc -------------------------------------------------------------------------------- /coordinate_roiwarp/roi_warping_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/coordinate_roiwarp/roi_warping_op_gpu.cu.cc -------------------------------------------------------------------------------- /coordinate_roiwarp/roi_warping_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/coordinate_roiwarp/roi_warping_op_gpu.h -------------------------------------------------------------------------------- /feature_maskpool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_maskpool/BUILD -------------------------------------------------------------------------------- /feature_maskpool/mask_pooling_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_maskpool/mask_pooling_op.cc -------------------------------------------------------------------------------- /feature_maskpool/mask_pooling_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_maskpool/mask_pooling_op_gpu.cu.cc -------------------------------------------------------------------------------- /feature_maskpool/mask_pooling_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_maskpool/mask_pooling_op_gpu.h -------------------------------------------------------------------------------- /feature_maskpool/mask_pooling_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_maskpool/mask_pooling_op_grad.py -------------------------------------------------------------------------------- /feature_roiwarp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_roiwarp/BUILD -------------------------------------------------------------------------------- /feature_roiwarp/roi_warping_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_roiwarp/roi_warping_op.cc -------------------------------------------------------------------------------- /feature_roiwarp/roi_warping_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_roiwarp/roi_warping_op_gpu.cu.cc -------------------------------------------------------------------------------- /feature_roiwarp/roi_warping_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/feature_roiwarp/roi_warping_op_gpu.h -------------------------------------------------------------------------------- /girshick_roipool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/girshick_roipool/BUILD -------------------------------------------------------------------------------- /girshick_roipool/roi_pooling_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/girshick_roipool/roi_pooling_op.cc -------------------------------------------------------------------------------- /girshick_roipool/roi_pooling_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/girshick_roipool/roi_pooling_op_gpu.cu.cc -------------------------------------------------------------------------------- /girshick_roipool/roi_pooling_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/girshick_roipool/roi_pooling_op_gpu.h -------------------------------------------------------------------------------- /girshick_roipool/roi_pooling_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/girshick_roipool/roi_pooling_op_grad.py -------------------------------------------------------------------------------- /mask_resize/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/mask_resize/BUILD -------------------------------------------------------------------------------- /mask_resize/mask_resize_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/mask_resize/mask_resize_op.cc -------------------------------------------------------------------------------- /mask_resize/mask_resize_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/mask_resize/mask_resize_op_gpu.cu.cc -------------------------------------------------------------------------------- /mask_resize/mask_resize_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/mask_resize/mask_resize_op_gpu.h -------------------------------------------------------------------------------- /mask_resize/mask_resize_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/mask_resize/mask_resize_op_grad.py -------------------------------------------------------------------------------- /maskpool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/maskpool/BUILD -------------------------------------------------------------------------------- /maskpool/mask_pooling_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/maskpool/mask_pooling_op.cc -------------------------------------------------------------------------------- /maskpool/mask_pooling_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/maskpool/mask_pooling_op_gpu.cu.cc -------------------------------------------------------------------------------- /maskpool/mask_pooling_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/maskpool/mask_pooling_op_gpu.h -------------------------------------------------------------------------------- /ps_roipool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/ps_roipool/BUILD -------------------------------------------------------------------------------- /ps_roipool/psroi_pooling_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/ps_roipool/psroi_pooling_op.cc -------------------------------------------------------------------------------- /ps_roipool/psroi_pooling_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/ps_roipool/psroi_pooling_op_gpu.cu.cc -------------------------------------------------------------------------------- /ps_roipool/psroi_pooling_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/ps_roipool/psroi_pooling_op_gpu.h -------------------------------------------------------------------------------- /roiwarp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/roiwarp/BUILD -------------------------------------------------------------------------------- /roiwarp/roi_warping_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/roiwarp/roi_warping_op.cc -------------------------------------------------------------------------------- /roiwarp/roi_warping_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/roiwarp/roi_warping_op_gpu.cu.cc -------------------------------------------------------------------------------- /roiwarp/roi_warping_op_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/roiwarp/roi_warping_op_gpu.h -------------------------------------------------------------------------------- /user_ops_tests/mask_pooling_test/mask_pool_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_pooling_test/mask_pool_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/mask_pooling_test/mask_pooling_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_pooling_test/mask_pooling_op.py -------------------------------------------------------------------------------- /user_ops_tests/mask_pooling_test/mask_pooling_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_pooling_test/mask_pooling_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/mask_pooling_test/mask_pooling_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_pooling_test/mask_pooling_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/mask_pooling_test/mask_pooling_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_pooling_test/mask_pooling_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/mask_resize_test/mask_resize_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_resize_test/mask_resize_op.py -------------------------------------------------------------------------------- /user_ops_tests/mask_resize_test/mask_resize_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_resize_test/mask_resize_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/mask_resize_test/mask_resize_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_resize_test/mask_resize_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/mask_resize_test/mask_resize_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_resize_test/mask_resize_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/mask_resize_test/mask_resize_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/mask_resize_test/mask_resize_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/psroi_pooling_test/psroi_pooling_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/psroi_pooling_test/psroi_pooling_op.py -------------------------------------------------------------------------------- /user_ops_tests/psroi_pooling_test/psroi_pooling_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/psroi_pooling_test/psroi_pooling_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/psroi_pooling_test/psroi_pooling_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/psroi_pooling_test/psroi_pooling_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/psroi_pooling_test/psroi_pooling_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/psroi_pooling_test/psroi_pooling_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/psroi_pooling_test/psroi_pooling_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/psroi_pooling_test/psroi_pooling_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/roi_coordinate_warping_test/roi_warping_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_coordinate_warping_test/roi_warping_op.py -------------------------------------------------------------------------------- /user_ops_tests/roi_coordinate_warping_test/roi_warping_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_coordinate_warping_test/roi_warping_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_coordinate_warping_test/roi_warping_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_coordinate_warping_test/roi_warping_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/roi_coordinate_warping_test/roi_warping_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_coordinate_warping_test/roi_warping_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_coordinate_warping_test/roi_warping_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_coordinate_warping_test/roi_warping_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/roi_feature_warping_test/roi_warping_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_feature_warping_test/roi_warping_op.py -------------------------------------------------------------------------------- /user_ops_tests/roi_feature_warping_test/roi_warping_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_feature_warping_test/roi_warping_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_feature_warping_test/roi_warping_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_feature_warping_test/roi_warping_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/roi_feature_warping_test/roi_warping_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_feature_warping_test/roi_warping_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_feature_warping_test/roi_warping_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_feature_warping_test/roi_warping_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/roi_girshick_pool_test/roi_pooling_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_girshick_pool_test/roi_pooling_op.py -------------------------------------------------------------------------------- /user_ops_tests/roi_girshick_pool_test/roi_pooling_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_girshick_pool_test/roi_pooling_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_girshick_pool_test/roi_pooling_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_girshick_pool_test/roi_pooling_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/roi_girshick_pool_test/roi_pooling_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_girshick_pool_test/roi_pooling_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_girshick_pool_test/roi_pooling_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_girshick_pool_test/roi_pooling_op_test.py -------------------------------------------------------------------------------- /user_ops_tests/roi_warping_test/roi_warping_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_warping_test/roi_warping_op.py -------------------------------------------------------------------------------- /user_ops_tests/roi_warping_test/roi_warping_op.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_warping_test/roi_warping_op.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_warping_test/roi_warping_op_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_warping_test/roi_warping_op_grad.py -------------------------------------------------------------------------------- /user_ops_tests/roi_warping_test/roi_warping_op_grad.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_warping_test/roi_warping_op_grad.pyc -------------------------------------------------------------------------------- /user_ops_tests/roi_warping_test/roi_warping_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsolink/tensorflow_user_ops/HEAD/user_ops_tests/roi_warping_test/roi_warping_op_test.py --------------------------------------------------------------------------------