aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/bazel.rc
Commit message (Collapse)AuthorAge
* Merge pull request #20576 from Intel-tensorflow:mabuzain/avx-performance-fixGravatar TensorFlower Gardener2018-07-13
|\ | | | | | | PiperOrigin-RevId: 204530874
* | Add CROSSTOOL for Windows GPU build with nvcc compilerGravatar A. Unique TensorFlower2018-07-11
| | | | | | | | | | | | | | | | | | | | After this change, to build TensorFlow with GPU support on Windows, you just need to follow the same procedure as Linux. Also re-enable remote cache since the bug in b/111106393 has been fixed by the new wrapper script. The clean-up of the wrapper scripts also made the build around 5 mins faster than using Bazel's msvc wrapper script. PiperOrigin-RevId: 204105368
| * Fixing AVX performance issueGravatar Mahmoud Abuzaina2018-07-05
|/
* Remove --distinct_host_configuration=false from tools/bazel.rcGravatar Amit Patankar2018-06-04
| | | | | | | | Don't use --distinct_host_configuration=false by default, because it would break cross compiling, like android build and Raspberry Pi build. Instead, we add it for builds that we know they have the same host and target platforms. PiperOrigin-RevId: 199194260
* Adding --distinct_host_configuration=false in tools/bazel.rcGravatar A. Unique TensorFlower2018-05-15
| | | | | | | | When building TensorFlow, the host and target platforms are usually the same. So we don't have to distinct them by default. This helps avoid building the same targets twice. If we need to do cross compilation, add --config=cross-compile to distinct them. PiperOrigin-RevId: 196673728
* 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
* Add --fat_apk_cpu=arm64-v8a for arm64 Android buildsGravatar Austin Anderson2018-01-10
| | | | | | | | Bazel silently uses the wrong build settings for --config=android_arm64 (--cpu=arm64-v8a is not enough), and actually still uses armeabi-v7a in at least some cases. --fat_apk_cpu fixes this. See #15581 for more. PiperOrigin-RevId: 181525260
* Move some build configs to tools/bazel.rc from configure.pyGravatar Michael Case2018-01-05
| | | | | | | | | | Moving --config=android_arm --config=mkl and --config=monolithic build configs into tools/bazel.rc. These options are just always written the same way to .bazelrc when configure.py is run. This should trim down the scope of configure.py and make it easier to build TF without running configure.py prior. PiperOrigin-RevId: 180973131
* Merge changes from github.Gravatar Yifei Feng2017-11-22
| | | | PiperOrigin-RevId: 176695926
* Automated g4 rollback of changelist 176615107Gravatar Yifei Feng2017-11-22
| | | | PiperOrigin-RevId: 176622438
* Merge changes from github.Gravatar Yifei Feng2017-11-21
| | | | PiperOrigin-RevId: 176615107
* Upgrade gRPC version used in OSS. Fix-forward of #14262. Remove ↵Gravatar A. Unique TensorFlower2017-11-13
| | | | | | namespace-compatibility hack. PiperOrigin-RevId: 175586521
* Clean up some redundant and unused build settings.Gravatar Michael Case2017-11-10
| | | | | | | | --copts are passed to both c++ and c (so is redundent with --cxxopts). Configs passed to "bazel build" are inherited by "bazel run" and "bazel test". Also removed some unused configs. PiperOrigin-RevId: 175326697
* Merge changes from github.Gravatar Jonathan Hseu2017-07-19
| | | | | | | | | | | | | | | | | END_PUBLIC --- Commit daa67ad17 authored by Jonathan Hseu<vomjom@vomjom.net> Committed by Frank Chen<frankchn@gmail.com>: Remove unittest import (#11596) --- Commit 491beb74c authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by TensorFlower Gardener<gardener@tensorflow.org>: BEGIN_PUBLIC Automated g4 rollback of changelist 162423171 PiperOrigin-RevId: 162541442
* Fix issue related to empty bazel.rc file.Gravatar A. Unique TensorFlower2017-05-02
| | | | Change: 154840138
* Remove unused files.Gravatar Yifei Feng2016-09-19
|
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108