aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Three fixes to the gRPC services.Gravatar Derek Murray2016-06-15
| | | | | | | | | | | | | | | 1. Re-disable fail-fast for the GrpcWorkerService. This was broken in the change to a newer version of gRPC. Session initialization and recovery relies on worker calls blocking until a response is received. 2. Move the serialization specialization to the *_impl.h files, so that they are picked up when sending responses. 3. Raise an error when the ByteSize of a message to be serialized is negative. Change: 124302956
* Ensure that all RunManyGraphs calls complete before returning from cancellation.Gravatar Derek Murray2016-06-15
| | | | | | | This fixes a potential race condition and segfault, where the response buffer could be deallocated with an RPC in flight. This would happen if a step was cancelled before its master blocked on the RunGraph RPCs. Change: 124255996
* Merge iOS and Pi changes into 0.9 branch (#2857)Gravatar Pete Warden2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Updated iOS settings (#2694) * Added linker options to armv7 in iOS makefile * Updated Eigen version in Xcode iOS examples * Updated iOS link flags * Fixes for Raspberry Pi compilation (#2701) * Added linker options to armv7 in iOS makefile * Updated Eigen version in Xcode iOS examples * Updated iOS link flags * Added support for Raspberry Pi * Updated Pi documentation and Eigen version in makefile (#2743) * Updated Pi compilation documentation * Updated Eigen version in makefile * Updated documentation link * Updated Pi documentation * Updated Pi build settings * Fix for build issue #2742; (#2749) (1) Additionally added linking against pthread for linux machines * Missing space; (#2762) (1) bash file check will fail without the space; * Updated Eigen include paths for iOS examples (#2841) * Updated Eigen hashes * Updated Eigen paths to a permanent link * Merged Eigen header changes * Merged Eigen header changes
* Merge pull request #2824 from martinwicke/r0.9Gravatar Martin Wicke2016-06-13
|\ | | | | Shrink iOS binaries
| * Change some kernels to use TF_CALL* macros, so that the instantiations for someGravatar A. Unique TensorFlower2016-06-12
| | | | | | | | | | types can be avoided on mobile platform. Change: 124172890
| * Change register_types.h to support individual TF_CALL_float, TF_CALL_half, etc.Gravatar A. Unique TensorFlower2016-06-12
|/ | | | | | | | | macros, and change the call-many macros to use those. This will let us change some other kernels to use TF_CALL*, for cases where no existing subset of types is what the kernel wants. This can help size on IOS. Change: 124166009
* Merge pull request #2786 from danmane/cherry-pick-tb-0.9Gravatar Vijay Vasudevan2016-06-10
|\ | | | | Cherry pick dist/tf-tensorboard.html update onto r0.9
* | update gpu docker containers documentation (#2795)Gravatar Jan Prach2016-06-10
| |
| * Update distributed tf-tensorboard bundle.Gravatar Dan Mané2016-06-10
| | | | | | | | Change: 124375656
| * Fixed Tensorboard minimap not being drawn on Safari (OS X, iOS) (#2302)Gravatar SunYeop Lee2016-06-10
|/
* added complex128 to release notes (#2720)Gravatar Martin Wicke2016-06-07
|
* Add mesos integration and placer work to roadmap.md (#2707)Gravatar Martin Wicke2016-06-07
|
* Remove sudo in virtualenv during installation (#2692)Gravatar Isaac Yang2016-06-06
|
* Merge pull request #2684 from caisq/r0.9-verGravatar caisq2016-06-06
|\ | | | | parameterized_docker_build includes three CUDA capabilities
| * parameterized_docker_build includes three CUDA capabilitiesGravatar Shanqing Cai2016-06-06
| |
* | Reorganize installation instructionsGravatar Martin Wicke2016-06-05
|/ | | Avoid too much duplication (still, three sections are almost copied) when specifying installation instructions. Added 3.5 linux binaries.
* Merge pull request #2676 from caisq/r0.9-verGravatar caisq2016-06-05
|\ | | | | Replace assertEquals in graph_io_test; disable a session_bundle test
| * Replace assertEquals in graph_io_test; disable a session_bundle testGravatar Shanqing Cai2016-06-05
|/ | | | assertEquals is deprecated and causes Python 3.5 test failures.
* Merge pull request #2673 from jendap/disable-session_bundleGravatar Jan Prach2016-06-05
|\ | | | | temporarily disable contrib/session_bundle
| * temporarily disable contrib/session_bundleGravatar Jan Prach2016-06-05
|/ | | | | The genrule makes problems in integration testing. We disable it for now and fix it after 0.9 release.
* update release and roadmap (#2656)Gravatar Martin Wicke2016-06-04
| | | | | added 0.9 release notes. added contributors Removed completed items, added new features on the horizon
* Merge pull request #2650 from gunan/r0.9Gravatar caisq2016-06-03
|\ | | | | Bump version to 0.9.0rc0
| * Bump version to 0.9.0rc0Gravatar Gunhan Gulsoy2016-06-03
|/
* Merge pull request #2649 from martinwicke/branch_124012080Gravatar Martin Wicke2016-06-03
|\ | | | | Branch 124012080
| * Disable failing test.Gravatar Martin Wicke2016-06-03
| |
* | Added licenses to makefile sh scripts (#2647)Gravatar Pete Warden2016-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added Raspberry Pi cross-compilation support to makefile * Fixed makefile linking problem with Pi * Added documentation for Pi compilation * Added live camera iOS example * Updated Eigen version in makefile, and added more iOS compile flags * Added licenses to makefile sh scripts, fixed simple iOS example setting
| * Merge makefileGravatar Martin Wicke2016-06-03
|/|
| * Merge changes from github.Gravatar Martin Wicke2016-06-03
| | | | | | | | Change: 124012080
| * Add a ReaderReadUpTo OpGravatar Ben Lee2016-06-03
| | | | | | | | | | | | | | | | - Add a ReadUpTo method to ReaderInterface - Add ReadUpToLocked to ReaderBase w/ default implementation. Readers may override this method to achieve better batched I/O performance. Change: 124012016
| * Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | Change: 124007278
| * Specializes the implementation of the gRPC Master and Worker services.Gravatar Derek Murray2016-06-03
| | | | | | | | | | | | | | | | | | | | | | This takes previously generated code, and includes it in the repository. The main advantage of doing this is that we can specialize the deserialization routines for various protobuf types that tend to be large, and thereby avoid the problem where we brush up against the default protobuf limits. Fixes #2233. Change: 124007049
| * Cleanup: Get rid of unused copy of simple threadpool implementation. The ↵Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | | | | | implementation is identical to the simple threadpool in Eigen (can be selected by not defining EIGEN_USE_NONBLOCKING_THREAD_POOL), which also has had all the same tracing calls added via the hooks in EigenEnvironment. Change: 124006070
| * Add android_tensorflow_test_lib target and consistently use if_android in ↵Gravatar Andrew Harp2016-06-03
| | | | | | | | | | | | tensorflow/core/BUILD. Change: 124005557
| * Fix the constructors of DNNClassifier and DNNREgressor.Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | Change: 124003810
| * Fixed shape error seen in tutorial.Gravatar Mustafa Ispir2016-06-03
| | | | | | | | Change: 124003630
| * Add the following ops to android_extended_ops groupsGravatar A. Unique TensorFlower2016-06-03
| | | | | | | | | | | | | | | | * conv_grad_ops.cc * cwise_op_inverse.cc * cwise_op_squared_difference.cc * resize_bilinear_op.cc Change: 123999923
* | Merge pull request #2644 from caisq/permission-fix-1Gravatar caisq2016-06-03
|\ \ | | | | | | Add x permission back to test_tutorials.sh
| | * Used Fingerprint function in sparse_feature_cross instead of Hash64.Gravatar Mustafa Ispir2016-06-03
| | | | | | | | | | | | Change: 123998188
* | | Updated Eigen version in Makefile (#2643)Gravatar Pete Warden2016-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added Raspberry Pi cross-compilation support to makefile * Fixed makefile linking problem with Pi * Added documentation for Pi compilation * Added live camera iOS example * Updated Eigen version in makefile, and added more iOS compile flags
| | * Changing API for monitors step_begin to only take step and return list of ↵Gravatar Illia Polosukhin2016-06-03
| | | | | | | | | | | | | | | | | | tensors to run. Support distributed training in EveryN monitor. Change: 123996408
* | | Enable GPU for L2Loss float64 (#2352)Gravatar Siddharth Agrawal2016-06-03
| | | | | | | | | | | | | | | | | | * Enable GPU for L2Loss float64 * Enable GPU for L2Loss float64
| * | Add x permission back to test_tutorials.shGravatar Shanqing Cai2016-06-03
|/ /
| * Fix the flaky test in nonlinear_test.Gravatar Illia Polosukhin2016-06-03
| | | | | | | | Change: 123989954
| * Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | Change: 123989187
| * distributions API updateGravatar A. Unique TensorFlower2016-06-03
| | | | | | | | | | | | | | | | Make mean a method in distributions. Add variance/std/mode as method to the base class. Make existing distributions conformant. Add log_likelihood to ContinuousDistribution/DiscreteDistribution. Change: 123988053
| * Support for passing params into Estimator that will be passed to the ↵Gravatar Illia Polosukhin2016-06-03
| | | | | | | | | | | | function call of model_fn. Note, params are only passed if model_fn takes 4 arguments, otherwise it works the same way. Change: 123985980
| * Register GPU kernels for placeholder to make placer happy.Gravatar Yuan Yu2016-06-03
| | | | | | | | Change: 123984360
| * Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | Change: 123983886
| * Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2016-06-03
| | | | | | | | Change: 123983409
| * Introduce IS_MOBILE_PLATFORM macro, defined in platform.h, and use this forGravatar A. Unique TensorFlower2016-06-03
| | | | | | | | | | only registering some types on android and ios (instead of __ANDROID__ macro). Change: 123983258