Changes: - Updates to op documentation and index by Josh - More changes to BUILD files for python 3 support by @girving - Fix to Eigen to use DenseIndex everywhere by @jiayq - Enable configuration for cuda compute capability by @zheng-xq, including updates to docs. - Route aggregation method through optimizer by schuster - Updates to install instructions for bazel 0.1.1. Base CL: 107702099
14 lines
243 B
Plaintext
14 lines
243 B
Plaintext
genrule(
|
|
name = "copy_six",
|
|
srcs = ["six-1.10.0/six.py"],
|
|
outs = ["six.py"],
|
|
cmd = "cp $< $(@)",
|
|
)
|
|
|
|
py_library(
|
|
name = "six",
|
|
srcs = ["six.py"],
|
|
visibility = ["//visibility:public"],
|
|
srcs_version = "PY2AND3",
|
|
)
|