aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
Commit message (Collapse)AuthorAge
* Merge commit for internal changesGravatar Jianwei Xie2018-03-26
|\
| * Convert the eager SPINN example to use tf.keras.Model and object-based ↵Gravatar Allen Lavoie2018-03-25
| | | | | | | | | | | | | | | | checkpointing. Uses a more recursive/functional tracking style which avoids numbering layers. Maybe this is too magical and we should adapt tf.keras.Sequential first? Let me know what you think. PiperOrigin-RevId: 190282346
* | [WIP] MKL repos download for mac and windows + update to MKL(-DNN) 0.12 (#17396)Gravatar Anton Matosov2018-03-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix MKL build on MacOS * Fix invalid return type, user_memory_->set_data_handle(buf) returns void. * Fix type mismatch * Implement downloading and linking of MKL repo on mac and windows * Rework the way MKL libs are binded to avoid warnings and simplify code * Switch to matching version of MKL-DNN * Add mirror links * Add renamed license file * Add -fopenmp flag for linux mkl build as Slice op kernel is optimized using OpenMP * Use clean_dep in the entire file for consistency * Fix build. Constants are declrared as static in header outside the class scope now * Reworked fix for `-openmp` flag using the suggestion from @gunan Original version here https://github.com/gunan/tensorflow/commit/b4d39c5226e8bbafe084b1dfc35f4644f2d906c2
| * Merge changes from github.Gravatar Benoit Steiner2018-03-22
| | | | | | | | PiperOrigin-RevId: 190161440
* | Resolve merge conflictsGravatar Sourabh Bajaj2018-03-22
|\|
| * Allow to download clang and use clang for CPU builds.Gravatar Ilya Biryukov2018-03-22
| | | | | | | | | | | | | | | | | | | | | | Previously we only allowed to download clang when doing GPU builds. The added skylark files use bazel's autoconf scripts, which were only added in 0.10.0. To provide nice error message for older versions of bazel (i.e. 'version is less than 0.10' vs 'can't load @bazel_tools/cpp/...'), we move the bazel version check into WORKSPACE file from workspace.bzl. PiperOrigin-RevId: 190050798
* | Merge pull request #17551 from lukeiwanski/fix/197Gravatar Benoit Steiner2018-03-21
|\ \ | | | | | | SYCL with ComputeCpp: local_config_sycl has multiple matches
| | * Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | | | | | | | | | PiperOrigin-RevId: 189945839
* | | Merge commit for internal changesGravatar Sourabh Bajaj2018-03-20
|\ \ \ | | |/ | |/|
| * | Fix build breakage with downloadable clang and -fopenmp.Gravatar Ilya Biryukov2018-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By disabling openmp when building with clang. If we want to enable openmp with clang, we'll probably have to have libomp as an explicit dependency. This fixes a breakage found by OS CI: https://ci.tensorflow.org/view/Nightly/job/nightly-matrix-linux-gpu-clang/215/ PiperOrigin-RevId: 189644968
| * | Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | | | | | | | | | PiperOrigin-RevId: 189258641
| * | Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | | | | | | | | | PiperOrigin-RevId: 189231636
* | | TensorRT support for ARM architectures (#17409)Gravatar Mustafa Kasap2018-03-14
| | | | | | | | | i.e. without this modification Tensorflow under Nvidia Jetpack 3.2 is not compiling. Else condition in if-then-else block generates a path "%s/../include" which results in "/usr/lib/include" but it must be "/usr/include/aarch64-linux-gnu"... So this fix targets ARM architectures and with this fix, Tensorflow 1.6rc compiles fine with TensorRT support.
* | | jpeg.BUILD: Using --cpu instead of --android_cpu (#17508)Gravatar Yun Peng2018-03-12
| | |
* | | Merge commit for internal changesGravatar Akshay Modi2018-03-09
|\| |
| * | update docker containers used for remote CPU/GPU builds and the ↵Gravatar A. Unique TensorFlower2018-03-08
| | | | | | | | | | | | | | | | | | corresponding script. PiperOrigin-RevId: 188324090
| | * Fixes automergeGravatar Luke Iwanski2018-03-08
| | |
* | | Fix build issue with KafkaDataset (#17418)Gravatar Yong Tang2018-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix build issue with KafkaDataset This fix tries to address the issue raised in 17210 where error of `NotFoundError: Op type not registered 'KafkaDataset' in binary.` returned from kafka ops. The issue was that the inclusion of kafka ops was removed due to the conflict merge from the other PR. This fix fixes the issue. This fix fixes 17210. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Change `import readers.Dataset` to `import dataset_ops.Dataset`, due to the changes in some other places. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix library dependency issues in bazel Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add dependency to bazel rules Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add license to lib and pip package Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Remove unneeded changes in bazel Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Address review feedback Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix sanity check Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add zlib dependency and include path Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add copts in bazel to address the discrepancy in clang and gcc Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* | | Merge commit for internal changesGravatar Akshay Modi2018-03-06
|\| | | | | | | | | | | o Fixed simple merge issue in tf/contrib/timeseries/python/timeseries/BUILD
* | | Windows: Use cc_import to import python lib properly (#17474)Gravatar Yun Peng2018-03-06
| |/ |/| | | | | | | Previously, we put python.lib in data attribute of a cc_library and manually added the link option. That caused the build to be non-hermetic. This change fixed the problem.
| * Add alternative paths for CUDA installation.Gravatar A. Unique TensorFlower2018-03-05
| | | | | | | | | | | | This detects negativo17's CUDA packages for Fedora. PiperOrigin-RevId: 187923472
* | Merge commit for internal changesGravatar Jonathan Hseu2018-03-03
|\|
| * Updating toolchain configs for GPU buildsGravatar A. Unique TensorFlower2018-03-02
| | | | | | | | PiperOrigin-RevId: 187643585
* | Merge commit for internal changesGravatar Shanqing Cai2018-03-02
|\|
| * Make crosstools ready for introduction of c++-link-nodeps-dynamic-libraryGravatar A. Unique TensorFlower2018-02-27
| | | | | | | | PiperOrigin-RevId: 187191730
* | Merge commit for internal changesGravatar Gunhan Gulsoy2018-02-26
|\|
| * * CUB updated to 1.8.0Gravatar A. Unique TensorFlower2018-02-23
| | | | | | | | | | | | * updated ShuffleIndex because of API change PiperOrigin-RevId: 186822637
| * Merge changes from github.Gravatar Yifei Feng2018-02-22
| | | | | | | | PiperOrigin-RevId: 186674197
* | Merge commit for internal changesGravatar Yifei Feng2018-02-22
|\|
| * Fix compile errors by patching eigen locally.Gravatar Ilya Biryukov2018-02-22
| | | | | | | | PiperOrigin-RevId: 186592198
| * Merge changes from github.Gravatar Ankur Taly2018-02-16
| | | | | | | | PiperOrigin-RevId: 186073337
* | Merge commit for internal changesGravatar Yifei Feng2018-02-16
|\|
| * TFE SPINN example: use tensor instead of numpy arrayGravatar Shanqing Cai2018-02-15
| | | | | | | | | | | | in inference output. PiperOrigin-RevId: 185939805
* | Merge commit for internal changesGravatar Yifei Feng2018-02-14
|\|
| * tfe SPINN example: Add inference; fix serializationGravatar Shanqing Cai2018-02-13
| | | | | | | | | | | | * Also de-flake a test. PiperOrigin-RevId: 185637742
* | Merge pull request #16253 from samikama/tensorrtGravatar Yifei Feng2018-02-12
|\ \ | | | | | | Introducing TensorRT operator
* \ \ Merge commit for internal changesGravatar Yifei Feng2018-02-12
|\ \ \ | | |/ | |/|
| * | Update llvm revision to r324720. This is needed because r324700 introduces ↵Gravatar A. Unique TensorFlower2018-02-09
| | | | | | | | | | | | | | | | | | an Orc API change. PiperOrigin-RevId: 185185088
| * | Patch cub on download to fix compilation error with clang.Gravatar Ilya Biryukov2018-02-08
| | | | | | | | | | | | | | | | | | | | | The same patch was sent via PR to cub upstream: https://github.com/NVlabs/cub/pull/125 PiperOrigin-RevId: 184975304
* | | Merge commit for internal changesGravatar Michael Case2018-02-08
|\| |
| * | Merge changes from github.Gravatar Michael Case2018-02-07
| | | | | | | | | | | | PiperOrigin-RevId: 184897758
| | * Revert "Remove LICENSE file. It will be added internally instead."Gravatar gracehoney2018-02-06
| | | | | | | | | | | | This reverts commit d0c2b84c2d6cd3c235671e67f22e3639b4b2b54c.
| | * Fix some BUILD filesGravatar gracehoney2018-02-06
| | |
| | * Merge branch 'master' of https://github.com/tensorflow/tensorflow into ↵Gravatar gracehoney2018-02-05
| | |\ | |_|/ |/| | | | | tensorrt to fix some of the failed tests.
* | | Ensure bash is invoked as a login shell on windows otherwise fixups fail. ↵Gravatar Andy Kernahan2018-02-05
| | | | | | | | | | | | (#16580)
| | * Remove LICENSE file. It will be added internally instead.Gravatar gracehoney2018-02-05
| | |
| | * Fix issues with the tests and add mistakenly taken out macro backGravatar Sami Kama2018-02-02
| | |
| | * Fixes for PR comments and build failuresGravatar Sami Kama2018-02-02
| | |
* | | Remove all_files rule from com_google_absl.BUILDGravatar Yifei Feng2018-02-02
| | |
* | | Merge pull request #16680 from yifeif/branch_184220615Gravatar Amit Patankar2018-02-01
|\ \ \ | | | | | | | | Branch 184220615