aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/type_index.h
Commit message (Collapse)AuthorAge
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Enable type_index on Windows (#8377)Gravatar Changming Sun2017-03-14
|
* Adds a resource reference dtype to TF.Gravatar A. Unique TensorFlower2016-10-14
| | | | Change: 136199499
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Fix build in no-rtti mode (without this, the new DebugString inGravatar A. Unique TensorFlower2016-05-01
| | | | | resource_mgr fails). Change: 121227875
* Moving the type_index implementation from resource_mgr.h to a separate file.Gravatar Yangqing Jia2016-01-12
This enables tensorflow to be built with no rtti on all platforms if one chooses to. Previously RTTI is only disabled with Android builds. To build, one need to pass in explicitly two flags, using bazel: --copt "-DGOOGLE_PROTOBUF_NO_RTTI" --cxxopt "-fno-rtti" Change: 111963304