.. |
protobuf
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
__init__.py
|
|
|
all_util.py
|
Replace instances of "whitelist" with "allowlist" where possible. See Google Developer guidelines at https://developers.google.com/style/word-list#blacklist for more information.
|
2020-07-08 10:13:43 -07:00 |
BUILD
|
Fix AbstractStackTrace::GetLastFrame on Windows
|
2020-12-21 15:35:00 -08:00 |
compat_internal.py
|
Merge remote-tracking branch 'gtf/r1.6'
|
2018-02-15 22:50:04 -08:00 |
compat.py
|
Fix docstring
|
2020-07-08 14:27:10 +02:00 |
decorator_utils_test.py
|
|
|
decorator_utils.py
|
|
|
deprecation_test.py
|
Support classes in deprecation.
|
2020-10-16 06:22:06 -07:00 |
deprecation_wrapper.py
|
|
|
deprecation.py
|
Simplify the stack walking in deprecation.py. Remove dependency on tf_stack.
|
2020-11-16 16:14:07 -08:00 |
dispatch_test.py
|
The linalg.LinearOperator* Module APIs do not support top-level dispatching because they are classes w/ methods instead of top-level methods in TF's APIs. But, their class methods call out to APIs that do support dispatching.
|
2020-08-04 10:21:58 -07:00 |
dispatch.py
|
Export dispatch related function to tf.__internal__ API.
|
2020-11-02 20:26:44 -08:00 |
example_parser_configuration_test.py
|
|
|
example_parser_configuration.py
|
|
|
function_parameter_canonicalizer_binding_for_test.cc
|
Implement fast C++ Python function parameter canonicalizer util.
|
2020-09-14 09:32:55 -07:00 |
function_parameter_canonicalizer_test.py
|
add BUILD file for python/util and refactor python/BUILD
|
2020-12-15 11:43:18 -08:00 |
function_parameter_canonicalizer.cc
|
Fix return type of PyUnicodeAsUtf8Compat to const char* to precisely match to the return type of PyUnicode_AsUTF8 .
|
2020-09-18 12:38:00 -07:00 |
function_parameter_canonicalizer.h
|
Implement fast C++ Python function parameter canonicalizer util.
|
2020-09-14 09:32:55 -07:00 |
function_utils_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
function_utils.py
|
Fix incorrect assumption that all methods have a positional first argument.
|
2019-06-06 09:48:11 -07:00 |
future_api.py
|
Seal *_ops interfaces.
|
2016-11-12 11:07:12 -08:00 |
is_in_graph_mode.py
|
Add python/util/is_in_graph_mode.py
|
2018-02-10 11:27:22 -08:00 |
keras_deps.py
|
Remove keras completely from lite.py
|
2020-10-27 20:42:36 -07:00 |
kernel_registry_wrapper.cc
|
systemlibs: unbundle pybind11
|
2020-04-08 03:38:38 +08:00 |
kernel_registry.cc
|
Log a warning instead of silently ignoring errors during kernel lookup.
|
2020-09-21 14:10:37 -07:00 |
kernel_registry.h
|
Remove THIRD_PARTY_ from #include guards
|
2018-01-24 14:31:28 -08:00 |
keyword_args_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
keyword_args.py
|
Add a decorator to enforce function be called with keyworded args (only).
|
2016-12-07 16:43:36 -08:00 |
lazy_loader.py
|
|
|
lock_util_test.py
|
Guard ops modification and Session.run with a group lock. This lock allows multiple ops modifications to happen at the same time, but no Session.run can happen until the modifications are done. And vice-versa.
|
2018-06-25 15:23:14 -07:00 |
lock_util.py
|
Use __slots__ for small classes
|
2020-06-28 18:41:22 +02:00 |
memory.py
|
Use WeakKeyDictionaries for global Keras {graph->...} maps
|
2018-09-12 13:37:15 -07:00 |
module_wrapper_test.py
|
Module of the same name was imported twice.
|
2020-11-01 12:01:35 +01:00 |
module_wrapper.py
|
Move stack more of the trace mappers and filters to C++. Simplify the API surface of extract_stack, and clean up its docstring.
|
2020-12-21 06:45:42 -08:00 |
nest_test.py
|
Merge pull request #42397 from yongtang:42329-tf.nest.assert_same_structure-crash
|
2020-08-19 17:46:17 -07:00 |
nest.py
|
add BUILD file for python/util and refactor python/BUILD
|
2020-12-15 11:43:18 -08:00 |
object_identity_test.py
|
Provide mechanism for registering custom resource tensor resolvers for ACD.
|
2020-01-16 07:35:22 -08:00 |
object_identity.py
|
Fork the object_identity related class to Keras.
|
2020-10-30 15:17:53 -07:00 |
port_wrapper.cc
|
systemlibs: unbundle pybind11
|
2020-04-08 03:38:38 +08:00 |
py_checkpoint_reader_wrapper.cc
|
throwTypeError -> ThrowTypeError
|
2020-04-16 10:46:01 -07:00 |
serialization_test.py
|
Move the serialization_test to keras/tests
|
2020-06-16 09:35:18 -07:00 |
serialization.py
|
Add a convert_to_tensor to the start of Tensor.__getitem__ (_slice_helper) to make sure it dispatches directly, rather than letting the nested tf.strided_slice trigger dispatching.
|
2020-07-22 14:51:41 -07:00 |
stack_trace.cc
|
[NFC] Optimize getting the last stack frame + stack frame conversion
|
2020-12-10 22:55:07 -08:00 |
stack_trace.h
|
[NFC] Optimize getting the last stack frame + stack frame conversion
|
2020-12-10 22:55:07 -08:00 |
stat_summarizer_wrapper.cc
|
systemlibs: unbundle pybind11
|
2020-04-08 03:38:38 +08:00 |
tensor_float_32.cc
|
Use TensorFloat-32 instead of TF32 in comments and symbols.
|
2020-09-08 17:38:28 -07:00 |
tf_contextlib_test.py
|
|
|
tf_contextlib.py
|
|
|
tf_decorator_test.py
|
|
|
tf_decorator.py
|
Don't use the heavyweight tf_stack in tf_decorator, which only needs the name of the parent frame. Remove package dependency.
|
2020-11-12 15:42:00 -08:00 |
tf_export_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
tf_export.py
|
Add a mechanism internally in tf_export to allow grabbing symbols from their canonical names. This will be used internally inside TF for serializing to/from symbols by their exported tf api name.
|
2020-05-28 15:04:22 -07:00 |
tf_inspect_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
tf_inspect.py
|
minor spelling tweaks
|
2020-02-11 15:09:21 +09:00 |
tf_should_use_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
tf_should_use.py
|
More compatibility fixes for typing.Generic:
|
2020-06-16 12:43:09 -07:00 |
tf_stack_test.py
|
Move stack more of the trace mappers and filters to C++. Simplify the API surface of extract_stack, and clean up its docstring.
|
2020-12-21 06:45:42 -08:00 |
tf_stack.cc
|
Fix AbstractStackTrace::GetLastFrame on Windows
|
2020-12-21 15:35:00 -08:00 |
tf_stack.py
|
Move stack more of the trace mappers and filters to C++. Simplify the API surface of extract_stack, and clean up its docstring.
|
2020-12-21 06:45:42 -08:00 |
tfprof_wrapper.cc
|
systemlibs: unbundle pybind11
|
2020-04-08 03:38:38 +08:00 |
transform_graph_wrapper.cc
|
systemlibs: unbundle pybind11
|
2020-04-08 03:38:38 +08:00 |
util_wrapper.cc
|
Automated g4 rollback of changelist 322239438.
|
2020-07-20 20:08:49 -07:00 |
util.cc
|
Split Safe_PyObjectPtr into its own header file (that doesn't depend on any other TensorFlow libraries.)
|
2020-08-28 10:57:56 -07:00 |
util.h
|
Add helper to test whether an object implements the tf.DispatchableType protocol.
|
2020-07-30 09:23:54 -07:00 |