├── LICENSE ├── README.md ├── example.json ├── search ├── anneal.py ├── bone.py ├── collie.py ├── engine.py ├── hardware.py ├── logger.py └── space.py └── traffic_engine ├── Makefile ├── README.md ├── context.cpp ├── context.hpp ├── endpoint.cpp ├── endpoint.hpp ├── helper.cpp ├── helper.hpp ├── main.cpp ├── memory.cpp └── memory.hpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/README.md -------------------------------------------------------------------------------- /example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/example.json -------------------------------------------------------------------------------- /search/anneal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/anneal.py -------------------------------------------------------------------------------- /search/bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/bone.py -------------------------------------------------------------------------------- /search/collie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/collie.py -------------------------------------------------------------------------------- /search/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/engine.py -------------------------------------------------------------------------------- /search/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/hardware.py -------------------------------------------------------------------------------- /search/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/logger.py -------------------------------------------------------------------------------- /search/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/search/space.py -------------------------------------------------------------------------------- /traffic_engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/Makefile -------------------------------------------------------------------------------- /traffic_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/README.md -------------------------------------------------------------------------------- /traffic_engine/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/context.cpp -------------------------------------------------------------------------------- /traffic_engine/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/context.hpp -------------------------------------------------------------------------------- /traffic_engine/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/endpoint.cpp -------------------------------------------------------------------------------- /traffic_engine/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/endpoint.hpp -------------------------------------------------------------------------------- /traffic_engine/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/helper.cpp -------------------------------------------------------------------------------- /traffic_engine/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/helper.hpp -------------------------------------------------------------------------------- /traffic_engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/main.cpp -------------------------------------------------------------------------------- /traffic_engine/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/memory.cpp -------------------------------------------------------------------------------- /traffic_engine/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Collie/HEAD/traffic_engine/memory.hpp --------------------------------------------------------------------------------