├── .gitignore ├── README.md ├── datasets └── README.md ├── model ├── README.md ├── coord.py ├── hyperparameters.txt ├── mp_progressive_nn.py ├── nn_primitives.py ├── pgraph.py ├── pp_item.py ├── progressive_nn.py ├── progressive_placer.py ├── progressive_placer_test.py ├── rl_agent.py ├── rl_params.py ├── simple_graphs.py └── simple_nn.py └── sim ├── README.md ├── tf_placement ├── __init__.py ├── tf_env.py └── tf_placement.py └── tf_placement_sim ├── __init__.py ├── tf_pl_simulator.py └── tf_sim.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/README.md -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/datasets/README.md -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/README.md -------------------------------------------------------------------------------- /model/coord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/coord.py -------------------------------------------------------------------------------- /model/hyperparameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/hyperparameters.txt -------------------------------------------------------------------------------- /model/mp_progressive_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/mp_progressive_nn.py -------------------------------------------------------------------------------- /model/nn_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/nn_primitives.py -------------------------------------------------------------------------------- /model/pgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/pgraph.py -------------------------------------------------------------------------------- /model/pp_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/pp_item.py -------------------------------------------------------------------------------- /model/progressive_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/progressive_nn.py -------------------------------------------------------------------------------- /model/progressive_placer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/progressive_placer.py -------------------------------------------------------------------------------- /model/progressive_placer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/progressive_placer_test.py -------------------------------------------------------------------------------- /model/rl_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/rl_agent.py -------------------------------------------------------------------------------- /model/rl_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/rl_params.py -------------------------------------------------------------------------------- /model/simple_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/simple_graphs.py -------------------------------------------------------------------------------- /model/simple_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/model/simple_nn.py -------------------------------------------------------------------------------- /sim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/sim/README.md -------------------------------------------------------------------------------- /sim/tf_placement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sim/tf_placement/tf_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/sim/tf_placement/tf_env.py -------------------------------------------------------------------------------- /sim/tf_placement/tf_placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/sim/tf_placement/tf_placement.py -------------------------------------------------------------------------------- /sim/tf_placement_sim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sim/tf_placement_sim/tf_pl_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/sim/tf_placement_sim/tf_pl_simulator.py -------------------------------------------------------------------------------- /sim/tf_placement_sim/tf_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravic/generalizable-device-placement/HEAD/sim/tf_placement_sim/tf_sim.py --------------------------------------------------------------------------------