├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── benchmark.py ├── setup.py ├── src ├── Makefile ├── libzmqop.cc ├── pybind11 ├── zmq_conn.h └── zmq_pull_op.cc ├── test-pull-op.py ├── vendor └── NOTE.txt └── zmq_ops ├── __init__.py ├── common.py └── zmq_ops.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/benchmark.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/setup.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/libzmqop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/src/libzmqop.cc -------------------------------------------------------------------------------- /src/pybind11: -------------------------------------------------------------------------------- 1 | ../vendor/pybind11/include/pybind11/ -------------------------------------------------------------------------------- /src/zmq_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/src/zmq_conn.h -------------------------------------------------------------------------------- /src/zmq_pull_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/src/zmq_pull_op.cc -------------------------------------------------------------------------------- /test-pull-op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/test-pull-op.py -------------------------------------------------------------------------------- /vendor/NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/vendor/NOTE.txt -------------------------------------------------------------------------------- /zmq_ops/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | from .zmq_ops import * 5 | -------------------------------------------------------------------------------- /zmq_ops/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/zmq_ops/common.py -------------------------------------------------------------------------------- /zmq_ops/zmq_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorpack/zmq_ops/HEAD/zmq_ops/zmq_ops.py --------------------------------------------------------------------------------