aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build/Dockerfile.gpu
Commit message (Collapse)AuthorAge
* Enable TensorRT in ci docker build.Gravatar Guangda Lai2018-09-04
| | | | PiperOrigin-RevId: 211500190
* Remove no-op COMPUTE_CAPABILITIES variableGravatar Austin Anderson2018-08-30
| | | | | | The COMPUTE_CAPABILITES var gets set during our build scripts, and the default here probably doesn't actually work if left alone. PiperOrigin-RevId: 210929650
* Remove install of NCCL 2.xGravatar Toby Boyd2018-07-25
| | | | | | NCCL 2.x already exists in the base docker from NVIDIA. Installing just the runtime for some reasons results in the header file being removed from /usr/include/nccl.h. PiperOrigin-RevId: 206019917
* Merge pull request #20981 from case540:nccl_configure_cherrypickGravatar TensorFlower Gardener2018-07-20
|\ | | | | | | PiperOrigin-RevId: 205475673
* | Fix clang builds for NCCL error.Gravatar Amit Patankar2018-07-19
| | | | | | | | PiperOrigin-RevId: 205330050
| * Link lib and header where ./configure expectsGravatar Toby Boyd2018-07-19
|/
* Upgrade cuda to 9 and cudnn version to 7. (#14773)Gravatar Gunhan Gulsoy2017-12-07
| | | | | | | | | | | | * Upgrade cuda to 9 and cudnn version to 7. * Also update XLA build script. * Fix typos. * Fix botched conflict resolution. * Disable transpose_op_test in opensource until the timeouts are fixed.
* Use 'LABEL maintainer=' in Dockerfile (#13961)Gravatar Yong Tang2017-10-24
| | | | | | | | | | | | | | | | | * Use 'LABEL maintainer=' in Dockerfile This fix is a follow up of 13661 to replace `MAINTAINER` with `LABEL maintainer=` in Dockerfile. The keyword `MAINTAINER` has long been deprecated and is replaced by `LABEL`, which is much more flexible and is easily searchable through `docker inspect`. This fix replaces remaining `MAINTAINER` with `LABEL`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Additional `MAITAINER` -> `LABEL` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update docker to cudnn6. (#10307)Gravatar Yifei Feng2017-06-05
| | | | | | | | | | | | | | | | * Update docker to cudnn6. * Update Dockerfile.gpu * Add --expunge to bazel clean to make cuda_configure run again and update TF_CUDNN_VERSION. * Remove expunge and set CUDA and CUDNN version default in configure. * Update configure * Only set --action_env once * Update prints for default version.
* Automated g4 rollback of changelist 155505438Gravatar A. Unique TensorFlower2017-05-15
| | | | PiperOrigin-RevId: 156053314
* Adding pointer to .tf_configure.bazelrc in the default bazelrc file used by ↵Gravatar A. Unique TensorFlower2017-05-10
| | | | | | TF containers PiperOrigin-RevId: 155505438
* Merge changes from github.Gravatar Martin Wicke2017-03-23
| | | | Change: 151046259
* Go: Run tests during continuous integrationGravatar Asim Shankar2017-02-17
| | | | | | | | | | | TensorFlow uses bazel to build and test. However, the TensorFlow Go API is targeted for use with the 'go' tool. This commit: - Adds a shell test so that usage with the 'go' tool can be tested with 'bazel test //tensorflow/go/...' - Installs Go in the images used in the continuous build Change: 147864583
* Update CI Docker images to Ubuntu 16.04Gravatar Jonathan Hseu2017-02-15
| | | | Change: 147596183
* Upgrade tensorflow to cuda 8.0Gravatar A. Unique TensorFlower2016-10-14
| | | | Change: 136158550
* Merge changes from github.Gravatar A. Unique TensorFlower2016-08-26
| | | | Change: 131437429
* Merge changes from github.Gravatar A. Unique TensorFlower2016-08-25
| | | | Change: 131310818
* Merge changes from github.Gravatar Benoit Steiner2016-08-16
| | | | Change: 130451359
* Fix LD_LIBRARY_PATH for ci_build GPU tests.Gravatar A. Unique TensorFlower2016-05-02
| | | | | | | LD_LIBRARY_PATH is configured correctly in the Dockerfile.gpu container, but the environment variable was being removed by the sudo command we use to switch to the CI_BUILD_USER. This CL also adds a path for libcupti.so. Change: 121313103
* Merge changes from github.Gravatar Illia Polosukhin2016-04-18
| | | | Change: 120185825
* Rollforward of "Merge changes from github."Gravatar Geoffrey Irving2016-03-16
| | | | Change: 117375570
* Rollback of: "Merge changes from github."Gravatar Vijay Vasudevan2016-03-16
| | | | Change: 117304114
* Merge changes from github.Gravatar Martin Wicke2016-03-16
| | | | Change: 117301677
* Fix dependencies bugsGravatar Eugene Brevdo2016-03-11
| | | | Change: 116925769
* Running our linter on a lot of files.Gravatar Vijay Vasudevan2016-01-24
| | | | Change: 112920860
* some linting fixes to changes brought in from the public.Gravatar Vijay Vasudevan2016-01-07
| | | | Change: 111621725
* ci_build: update dockerfilesGravatar Jan Prach2015-12-16
| | | | | | | * copy to get .bazelrc and add --verbose_failures * copy install scripts one by one (it is no longer needed to re-run all the scripts when only the last one changes) Change: 110398445
* TensorFlow: merge changes from internalGravatar Vijay Vasudevan2015-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 110055925 Clean up interface for adjust_contrast and adjust_brightness. - Simplify kernel for adjust_contrast and remove all min/max and casts. - Change semantics of delta arg to adjust_brightness (always in [0,1)), and adjust users. - Add saturate_cast for casting images without over/underflow problems. - Add new numbers for adjust_contrast benchmark. This CL makes two changes to the public API: - It changes the semantics of the delta parameter of adjust_brightness, which was in the same range as the input image before, and now is always in [0,1). - It changes the semantics of adjust_contrast (the cc op), which wasn't hidden, but was shadowed by the python wrapper in image_ops. It's a little questionable whether this function was part of the public API. It definitely shouldn't have been. It is now hidden, although now it could be part of the public API, albeit with a different name. Change 110054427 update ci_build * add PYTHON_BIN_PATH and always run ./configure in ci_build * rename ci_build cache directory to bazel-ci_build-cache * sync ci_build/Dockerfile.cpu with docker/Dockerfile.devel * use "FROM nvidia/cuda:..." for gpu container * therefore no need of the tensorflow_extra_deps directory anymore * share install code between containers using ./install/*.sh scripts * do not inherit (and override FROM clausule in dockerfiles anymore) * print bazel test errors to stderr Change 110047126 Update ops.pbtxt. Change 110046428 Simplify the example for the Fill op. Base CL: 110056265
* TensorFlow: upstream changes to git.Gravatar Vijay Vasudevan2015-12-03
Change 109321497 Move all images to images directory to make docs versioning easier - adjust all paths in the docs to point to the new locations - remove some now redundant section-order tags added for the old website Change 109317807 Added a kernel op to compute the eigendecomposition of a self-adjoint matrix. Added a new kernel op called self_adjoint_eig (and a batch_self_adjoint_eig) that computes the eigendecomposition of a self-adjoint matrix. The return value is the concatenation of the eigenvalues as a row vector, and the eigenvectors. Change 109310773 Change `_read32()` in the MNIST input example to return an int. Currently we return a 1-D numpy array with 1 element. Numpy has recently deprecated the ability to treat this as a scalar, and as a result this tutorial fails. The fix returns the 0th element of the array instead. Change 109301269 Re-arrange TensorBoard demo files. Change 109273589 add ci_build for ci.tensorflow.org Change 109260293 Speed up NodeDef -> OpKernel process by not spending time generating an error message for missing "_kernel" attr that will be thrown away. Change 109257179 TensorFlow:make event_file_loader_test hermetic by using tempfile instead of fixed filenames. Without this change, running event_file_loader_test twice in the same client (locally) causes it to fail, because it writes into the same file and appends another event, instead of starting from scratch. Change 109256464 Minor cleanup in TensorBoard server code Change 109255382 Change to reduce critical section times in gpu_event_mgr.h: (1) Call stream->ThenRecordEvent outside the EventMgr critical section (2) Do memory deallocation outside the critical section Speeds up one configuration of ptb_word_lm from 2924 words per second (wps) to 3278 wps on my desktop machine with a Titan X. Change 109254843 Fix use of uninitialized memory in test. Change 109250995 python_config.sh needs a license header Otherwise the license test fails. Change 109249914 add ci_build for ci.tensorflow.org Change 109249397 Fixes reduce_sum (complex) on GPU segfaults. Fixes #357 Change 109245652 add ci_build for ci.tensorflow.org Base CL: 109321563