mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
fe66882827
This allows for some simplification (e.g., we can now remove arguments with a dict entry) and for much more powerful transformations. This passes all tests with no destructive test changes (though there are cosmetic test changes). Also adds transformations for tf.to_dtype -> tf.cast(..., dtype=...). PiperOrigin-RevId: 227934801
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
# Description: Pasta, AST based python refactoring.
|
|
|
|
licenses(["notice"]) # Apache2
|
|
|
|
filegroup(
|
|
name = "LICENSE",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
py_library(
|
|
name = "pasta",
|
|
visibility = ["//visibility:public"],
|
|
)
|