diff --git a/data/GUIDE.md b/data/GUIDE.md new file mode 100644 index 0000000000000000000000000000000000000000..7658efbc6dbee8d91ee059965ec83f31a1f0787e --- /dev/null +++ b/data/GUIDE.md @@ -0,0 +1,379 @@ +# Building TensorFlow for Raspberry Pi: a Step-By-Step Guide + +_[Back to readme](README.md)_ + +## What You Need + +* Raspberry Pi 2 or 3 Model B +* An SD card running Raspbian with several GB of free space + * An 8 GB card with a fresh install of Raspbian **does not** have enough space. A 16 GB SD card minimum is recommended. + * These instructions may work on Linux distributions other than Raspbian +* Internet connection to the Raspberry Pi +* A USB memory drive that can be installed as swap memory (if it is a flash drive, make sure you don't care about the drive). Anything over 1 GB should be fine +* A fair amount of time + +## Overview + +These instructions were crafted for a [Raspberry Pi 3 Model B](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/) running a vanilla copy of Raspbian 8.0 (jessie). It appears to work on Raspberry Pi 2, but [there are some kinks that are being worked out](https://github.com/tensorflow/tensorflow/issues/445#issuecomment-196021885). If these instructions work for different distributions, let me know! +Updated (2017-09-11) to work with the latest (HEAD) version of tensorflow on Raspbian Strech (Vanilla version september 2017) and Python 3.5. + +Here's the basic plan: build a RPi-friendly version of [Bazel](https://github.com/bazelbuild/bazel) and use it to build TensorFlow. + +### Contents + +1. [Install basic dependencies](#1-install-basic-dependencies) +2. [Install USB Memory as Swap](#2-install-a-memory-drive-as-swap-for-compiling) +3. [Build Bazel](#3-build-bazel) +4. [Compiling TensorFlow](#4-compiling-tensorflow) +5. [Cleaning Up](#5-cleaning-up) +6. [References](#references) + +## The Build + +### 1. Install basic dependencies + +First, update apt-get to make sure it knows where to download everything. + +```shell +sudo apt-get update +``` + +Next, install some base dependencies and tools we'll need later. + +For Bazel: + +```shell +sudo apt-get install pkg-config zip g++ zlib1g-dev unzip +``` + +For TensorFlow: + +``` +# For Python 2.7 +sudo apt-get install python-pip python-numpy swig python-dev +sudo pip install wheel + +# For Python 3.3+ +sudo apt-get install python3-pip python3-numpy swig python3-dev +sudo pip3 install wheel +``` + +To be able to take advantage of certain optimization flags: + +``` +sudo apt-get install gcc-4.8 g++-4.8 +sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 100 +sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 100 +``` + +Finally, for cleanliness, make a directory that will hold the Protobuf, Bazel, and TensorFlow repositories. + +```shell +mkdir tf +cd tf +``` + +### 2. Install a Memory Drive as Swap for Compiling + +In order to succesfully build TensorFlow, your Raspberry Pi needs a little bit more memory to fall back on. Fortunately, this process is pretty straightforward. Grab a USB storage drive that has at least 1GB of memory. I used a flash drive I could live without that carried no important data. That said, we're only going to be using the drive as swap while we compile, so this process shouldn't do too much damage to a relatively new USB drive. + +First, put insert your USB drive, and find the `/dev/XXX` path for the device. + +```shell +sudo blkid +``` + +As an example, my drive's path was `/dev/sda1` + +Once you've found your device, unmount it by using the `umount` command. + +```shell +sudo umount /dev/XXX +``` + +Then format your device to be swap: + +```shell +sudo mkswap /dev/XXX +``` + +If the previous command outputted an alphanumeric UUID, copy that now. Otherwise, find the UUID by running `blkid` again. Copy the UUID associated with `/dev/XXX` + +```shell +sudo blkid +``` + +Now edit your `/etc/fstab` file to register your swap file. (I'm a Vim guy, but Nano is installed by default) + +```shell +sudo nano /etc/fstab +``` + +On a separate line, enter the following information. Replace the X's with the UUID (without quotes) + +```bash +UUID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX none swap sw,pri=5 0 0 +``` + +Save `/etc/fstab`, exit your text editor, and run the following command: + +```shell +sudo swapon -a +``` + +If you get an error claiming it can't find your UUID, go back and edit `/etc/fstab`. Replace the `UUID=XXX..` bit with the original `/dev/XXX` information. + +```shell +sudo nano /etc/fstab +``` + +```bash +# Replace the UUID with /dev/XXX +/dev/XXX none swap sw,pri=5 0 0 +``` + +Alright! You've got swap! Don't throw out the `/dev/XXX` information yet- you'll need it to remove the device safely later on. + +### 3. Build Bazel + +To build [Bazel](https://github.com/bazelbuild/bazel), we're going to need to download a zip file containing a distribution archive. Let's do that now and extract it into a new directory called `bazel`: + +```shell +wget https://github.com/bazelbuild/bazel/releases/download/0.4.5/bazel-0.4.5-dist.zip +unzip -d bazel bazel-0.4.5-dist.zip +``` + +Once it's done downloading and extracting, we can move into the directory to make a few changes: + +```shell +cd bazel +``` + +Before building Bazel, we need to set the `javac` maximum heap size for this job, or else we'll get an OutOfMemoryError. To do this, we need to make a small addition to `bazel/scripts/bootstrap/compile.sh`. (Shout-out to @SangManLINUX for [pointing this out.](https://github.com/samjabrahams/tensorflow-on-raspberry-pi/issues/5#issuecomment-210965695). + +```shell +nano scripts/bootstrap/compile.sh +``` + +Move down to line 117, where you'll see the following block of code: + +```shell +run "${JAVAC}" -classpath "${classpath}" -sourcepath "${sourcepath}" \ + -d "${output}/classes" -source "$JAVA_VERSION" -target "$JAVA_VERSION" \ + -encoding UTF-8 "@${paramfile}" +``` + +At the end of this block, add in the `-J-Xmx500M` flag, which sets the maximum size of the Java heap to 500 MB: + +``` +run "${JAVAC}" -classpath "${classpath}" -sourcepath "${sourcepath}" \ + -d "${output}/classes" -source "$JAVA_VERSION" -target "$JAVA_VERSION" \ + -encoding UTF-8 "@${paramfile}" -J-Xmx500M +``` + +Finally, we have to add one thing to `tools/cpp/cc_configure.bzl` - open it up for editing: + +```shell +nano tools/cpp/cc_configure.bzl +``` + +Place the line `return "arm"` around line 133 (at the beginning of the `_get_cpu_value` function): + +```shell +... +"""Compute the cpu_value based on the OS name.""" +return "arm" +... +``` + +In newer Bazel versions, the `_get_cpu_value` function will be found in the file `tools/cpp/lib_cc_configure.bzl`, and the same modification is required. + +Now we can build Bazel! _Note: this also takes some time._ + +```shell +sudo ./compile.sh +``` + +When the build finishes, you end up with a new binary, `output/bazel`. Copy that to your `/usr/local/bin` directory. + +```shell +sudo cp output/bazel /usr/local/bin/bazel +``` + +To make sure it's working properly, run `bazel` on the command line and verify it prints help text. Note: this may take 15-30 seconds to run, so be patient! + +```shell +bazel + +Usage: bazel ... + +Available commands: + analyze-profile Analyzes build profile data. + build Builds the specified targets. + canonicalize-flags Canonicalizes a list of bazel options. + clean Removes output files and optionally stops the server. + dump Dumps the internal state of the bazel server process. + fetch Fetches external repositories that are prerequisites to the targets. + help Prints help for commands, or the index. + info Displays runtime info about the bazel server. + mobile-install Installs targets to mobile devices. + query Executes a dependency graph query. + run Runs the specified target. + shutdown Stops the bazel server. + test Builds and runs the specified test targets. + version Prints version information for bazel. + +Getting more help: + bazel help + Prints help and options for . + bazel help startup_options + Options for the JVM hosting bazel. + bazel help target-syntax + Explains the syntax for specifying targets. + bazel help info-keys + Displays a list of keys used by the info command. +``` + +Move out of the `bazel` directory, and we'll move onto the next step. + +```shell +cd .. +``` + +### 4. Compiling TensorFlow + +First things first, clone the TensorFlow repository and move into the newly created directory. + +```shell +git clone --recurse-submodules https://github.com/tensorflow/tensorflow.git +cd tensorflow +``` + +_Note: if you're looking to build to a specific version or commit of TensorFlow (as opposed to the HEAD at master), you should `git checkout` it now._ + +Once in the directory, we have to write a nifty one-liner that is incredibly important. The next line goes through all files and changes references of 64-bit program implementations (which we don't have access to) to 32-bit implementations. Neat! + +```shell +grep -Rl 'lib64' | xargs sed -i 's/lib64/lib/g' +``` +Updating tensorflow/core/platform/platform.h and WORKSPACE as listed in the previous version is no longer needed with the latest version of tensorflow. +* the IS_MOBILE_PLATFORM check now includes a specific check for the Raspberry +* numeric/1.2.6 is no longer listed WORKSPACE + +Finally, we have to replace the eigen version dependency. The version included in the current tensorflow version may result in an error (near the end of the build): + +```shell +ERROR: /mnt/tensorflow/tensorflow/core/kernels/BUILD:2128:1: C++ compilation of rule '//tensorflow/core/kernels:svd_op' failed: gcc failed: error executing command +...com.google.devtools.build.lib.shell.BadExitStatusException: Process exited with status 1. +... +external/eigen_archive/Eigen/src/Jacobi/Jacobi.h:359:55: error: 'struct Eigen::internal::conj_helper<__vector(4) __builtin_neon_sf, Eigen::internal::Packet2cf, false, false>' has no member named 'pmul' +``` + +to resolve this + +```shell +sudo nano tensorflow/workspace.bzl +``` + +Replace the following + +``` + native.new_http_archive( + name = "eigen_archive", + urls = [ + "http://mirror.bazel.build/bitbucket.org/eigen/eigen/get/f3a22f35b044.tar.gz", + "https://bitbucket.org/eigen/eigen/get/f3a22f35b044.tar.gz", + ], + sha256 = "ca7beac153d4059c02c8fc59816c82d54ea47fe58365e8aded4082ded0b820c4", + strip_prefix = "eigen-eigen-f3a22f35b044", + build_file = str(Label("//third_party:eigen.BUILD")), + ) +``` + +with + +``` + native.new_http_archive( + name = "eigen_archive", + urls = [ + "http://mirror.bazel.build/bitbucket.org/eigen/eigen/get/d781c1de9834.tar.gz", + "https://bitbucket.org/eigen/eigen/get/d781c1de9834.tar.gz", + ], + sha256 = "a34b208da6ec18fa8da963369e166e4a368612c14d956dd2f9d7072904675d9b", + strip_prefix = "eigen-eigen-d781c1de9834", + build_file = str(Label("//third_party:eigen.BUILD")), + ) +``` + +Reference: https://stackoverflow.com/questions/44418657/how-to-build-eigen-with-arm-neon-compile-error-for-tensorflow + +**These options have changed with exception of jemalloc use No for all** +Now let's configure the build: + +```shell +./configure + +Please specify the location of python. [Default is /usr/bin/python]: /usr/bin/python +Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is -march=native]: +Do you wish to use jemalloc as the malloc implementation? [Y/n] Y +Do you wish to build TensorFlow with Google Cloud Platform support? [y/N] N +Do you wish to build TensorFlow with Hadoop File System support? [y/N] N +Do you wish to build TensorFlow with the XLA just-in-time compiler (experimental)? [y/N] N +Please input the desired Python library path to use. Default is [/usr/local/lib/python2.7/dist-packages] +Do you wish to build TensorFlow with OpenCL support? [y/N] N +Do you wish to build TensorFlow with CUDA support? [y/N] N +``` + +_Note: if you want to build for Python 3, specify `/usr/bin/python3` for Python's location and `/usr/local/lib/python3.5/dist-packages` for the Python library path._ + +Bazel will now attempt to clean. This takes a really long time (and often ends up erroring out anyway), so you can send some keyboard interrupts (CTRL-C) to skip this and save some time. + +Now we can use it to build TensorFlow! **Warning: This takes a really, really long time. Several hours.** + +```shell +bazel build -c opt --copt="-mfpu=neon-vfpv4" --copt="-funsafe-math-optimizations" --copt="-ftree-vectorize" --copt="-fomit-frame-pointer" --local_resources 1024,1.0,1.0 --verbose_failures tensorflow/tools/pip_package:build_pip_package +``` + +_Note: I toyed around with telling Bazel to use all four cores in the Raspberry Pi, but that seemed to make compiling more prone to completely locking up. This process takes a long time regardless, so I'm sticking with the more reliable options here. If you want to be bold, try using `--local_resources 1024,2.0,1.0` or `--local_resources 1024,4.0,1.0`_ + +When you wake up the next morning and it's finished compiling, you're in the home stretch! Use the built binary file to create a Python wheel. + +```shell +bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg +``` + +And then install it! + +```shell +sudo pip install /tmp/tensorflow_pkg/tensorflow-1.1.0-cp27-none-linux_armv7l.whl +``` + +### 5. Cleaning Up + +There's one last bit of house-cleaning we need to do before we're done: remove the USB drive that we've been using as swap. + +First, turn off your drive as swap: + +```shell +sudo swapoff /dev/XXX +``` + +Finally, remove the line you wrote in `/etc/fstab` referencing the device + +``` +sudo nano /etc/fstab +``` + +Then reboot your Raspberry Pi. + +**And you're done!** You deserve a break. + +## References + +1. [Building TensorFlow for Jetson TK1](http://cudamusing.blogspot.com/2015/11/building-tensorflow-for-jetson-tk1.html) (an update to this post is available [here](http://cudamusing.blogspot.com/2016/06/tensorflow-08-on-jetson-tk1.html)) +2. [Turning a USB Drive into swap](http://askubuntu.com/questions/173676/how-to-make-a-usb-stick-swap-disk) +3. [Safely removing USB swap space](http://askubuntu.com/questions/616437/is-it-safe-to-delete-a-swap-partition-on-a-usb-install) + +--- + +_[Back to top](#building-tensorflow-for-raspberry-pi-a-step-by-step-guide)_ diff --git a/data/ISSUE_TEMPLATE.md b/data/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000000000000000000000000000000000..6f2db1272f3535e4addbbd14184a2b1d9cc67ce3 --- /dev/null +++ b/data/ISSUE_TEMPLATE.md @@ -0,0 +1,16 @@ +### Describe the Issue + +### Steps to Reproduce + +### Hardware/Software Info + +Please provide the following information about your Raspberry Pi setup: + +* Raspberry Pi model: +* Operating System used: +* Version of Python used: +* SD card memory size: +* Size of USB/other device used as swap (if building from source): +* TensorFlow git commit hash (if building from source): + +### Relevant Console Output/Logs \ No newline at end of file diff --git a/data/LICENSE b/data/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4a147e3d6c7eb8ad6f6a86b24ca7fa32044b473b --- /dev/null +++ b/data/LICENSE @@ -0,0 +1,13 @@ +Copyright 2016 Sam Abrahams + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/data/TENSORFLOW_LICENSE b/data/TENSORFLOW_LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d3da228420e973edaf4123d5eeb42210f4450b0c --- /dev/null +++ b/data/TENSORFLOW_LICENSE @@ -0,0 +1,203 @@ +Copyright 2015 The TensorFlow Authors. All rights reserved. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2015, The TensorFlow Authors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/data/benchmarks/inceptionv3/classify_image_timed.py b/data/benchmarks/inceptionv3/classify_image_timed.py new file mode 100644 index 0000000000000000000000000000000000000000..3dfc6761389dd101e6d0312e4104a2deaf0dfd58 --- /dev/null +++ b/data/benchmarks/inceptionv3/classify_image_timed.py @@ -0,0 +1,236 @@ +# Copyright 2015 Google Inc. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============================================================================== + +"""Simple image classification with Inception. + +Run image classification with Inception trained on ImageNet 2012 Challenge data +set. + +This program creates a graph from a saved GraphDef protocol buffer, +and runs inference on an input JPEG image. It outputs human readable +strings of the top 5 predictions along with their probabilities. + +Change the --image_file argument to any jpg image to compute a +classification of that image. + +Please see the tutorial and website for a detailed description of how +to use this script to perform image recognition. + +https://tensorflow.org/tutorials/image_recognition/ + +This file has been modified by Sam Abrahams to print out basic run-time +information. These modifications have been surrounded with the comments: +"MODIFICATION BY SAM ABRAHAMS" and "END OF MODIFICATION" +""" + +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import os.path +import re +import sys +import tarfile + +# MODIFICATION BY SAM ABRAHAMS +import time +# END OF MODIFICATION + +import numpy as np +from six.moves import urllib +import tensorflow as tf + +FLAGS = tf.app.flags.FLAGS + +# classify_image_graph_def.pb: +# Binary representation of the GraphDef protocol buffer. +# imagenet_synset_to_human_label_map.txt: +# Map from synset ID to a human readable string. +# imagenet_2012_challenge_label_map_proto.pbtxt: +# Text representation of a protocol buffer mapping a label to synset ID. +tf.app.flags.DEFINE_string( + 'model_dir', '/tmp/imagenet', + """Path to classify_image_graph_def.pb, """ + """imagenet_synset_to_human_label_map.txt, and """ + """imagenet_2012_challenge_label_map_proto.pbtxt.""") +tf.app.flags.DEFINE_string('image_file', '', + """Absolute path to image file.""") +tf.app.flags.DEFINE_integer('num_top_predictions', 5, + """Display this many predictions.""") +# MODIFICATION BY SAM ABRAHAMS +tf.app.flags.DEFINE_integer('warmup_runs', 10, + "Number of times to run Session before starting test") +tf.app.flags.DEFINE_integer('num_runs', 25, + "Number of sample runs to collect benchmark statistics") +# END OF MODIFICATION + +# pylint: disable=line-too-long +DATA_URL = 'http://download.tensorflow.org/models/image/imagenet/inception-2015-12-05.tgz' +# pylint: enable=line-too-long + + +class NodeLookup(object): + """Converts integer node ID's to human readable labels.""" + + def __init__(self, + label_lookup_path=None, + uid_lookup_path=None): + if not label_lookup_path: + label_lookup_path = os.path.join( + FLAGS.model_dir, 'imagenet_2012_challenge_label_map_proto.pbtxt') + if not uid_lookup_path: + uid_lookup_path = os.path.join( + FLAGS.model_dir, 'imagenet_synset_to_human_label_map.txt') + self.node_lookup = self.load(label_lookup_path, uid_lookup_path) + + def load(self, label_lookup_path, uid_lookup_path): + """Loads a human readable English name for each softmax node. + + Args: + label_lookup_path: string UID to integer node ID. + uid_lookup_path: string UID to human-readable string. + + Returns: + dict from integer node ID to human-readable string. + """ + if not tf.gfile.Exists(uid_lookup_path): + tf.logging.fatal('File does not exist %s', uid_lookup_path) + if not tf.gfile.Exists(label_lookup_path): + tf.logging.fatal('File does not exist %s', label_lookup_path) + + # Loads mapping from string UID to human-readable string + proto_as_ascii_lines = tf.gfile.GFile(uid_lookup_path).readlines() + uid_to_human = {} + p = re.compile(r'[n\d]*[ \S,]*') + for line in proto_as_ascii_lines: + parsed_items = p.findall(line) + uid = parsed_items[0] + human_string = parsed_items[2] + uid_to_human[uid] = human_string + + # Loads mapping from string UID to integer node ID. + node_id_to_uid = {} + proto_as_ascii = tf.gfile.GFile(label_lookup_path).readlines() + for line in proto_as_ascii: + if line.startswith(' target_class:'): + target_class = int(line.split(': ')[1]) + if line.startswith(' target_class_string:'): + target_class_string = line.split(': ')[1] + node_id_to_uid[target_class] = target_class_string[1:-2] + + # Loads the final mapping of integer node ID to human-readable string + node_id_to_name = {} + for key, val in node_id_to_uid.items(): + if val not in uid_to_human: + tf.logging.fatal('Failed to locate: %s', val) + name = uid_to_human[val] + node_id_to_name[key] = name + + return node_id_to_name + + def id_to_string(self, node_id): + if node_id not in self.node_lookup: + return '' + return self.node_lookup[node_id] + + +def create_graph(): + """Creates a graph from saved GraphDef file and returns a saver.""" + # Creates graph from saved graph_def.pb. + with tf.gfile.FastGFile(os.path.join( + FLAGS.model_dir, 'classify_image_graph_def.pb'), 'rb') as f: + graph_def = tf.GraphDef() + graph_def.ParseFromString(f.read()) + _ = tf.import_graph_def(graph_def, name='') + + +def run_inference_on_image(image): + """Runs inference on an image. + + Args: + image: Image file name. + + Returns: + Nothing + """ + if not tf.gfile.Exists(image): + tf.logging.fatal('File does not exist %s', image) + image_data = tf.gfile.FastGFile(image, 'rb').read() + + # Creates graph from saved GraphDef. + start_time = time.time() + create_graph() + graph_time = time.time() - start_time + + with tf.Session() as sess: + # Some useful tensors: + # 'softmax:0': A tensor containing the normalized prediction across + # 1000 labels. + # 'pool_3:0': A tensor containing the next-to-last layer containing 2048 + # float description of the image. + # 'DecodeJpeg/contents:0': A tensor containing a string providing JPEG + # encoding of the image. + # Runs the softmax tensor by feeding the image_data as input to the graph. + softmax_tensor = sess.graph.get_tensor_by_name('softmax:0') + # MODIFICATION BY SAM ABRAHAMS + for i in range(FLAGS.warmup_runs): + predictions = sess.run(softmax_tensor, + {'DecodeJpeg/contents:0': image_data}) + runs = [] + for i in range(FLAGS.num_runs): + start_time = time.time() + predictions = sess.run(softmax_tensor, + {'DecodeJpeg/contents:0': image_data}) + runs.append(time.time() - start_time) + for i, run in enumerate(runs): + print('Run %03d:\t%0.4f seconds' % (i, run)) + print('---') + print('Best run: %0.4f' % min(runs)) + print('Worst run: %0.4f' % max(runs)) + print('Average run: %0.4f' % float(sum(runs) / len(runs))) + print('Build graph time: %0.4f' % graph_time) + print('Number of warmup runs: %d' % FLAGS.warmup_runs) + print('Number of test runs: %d' % FLAGS.num_runs) + # END OF MODIFICATION + +def maybe_download_and_extract(): + """Download and extract model tar file.""" + dest_directory = FLAGS.model_dir + if not os.path.exists(dest_directory): + os.makedirs(dest_directory) + filename = DATA_URL.split('/')[-1] + filepath = os.path.join(dest_directory, filename) + if not os.path.exists(filepath): + def _progress(count, block_size, total_size): + sys.stdout.write('\r>> Downloading %s %.1f%%' % ( + filename, float(count * block_size) / float(total_size) * 100.0)) + sys.stdout.flush() + filepath, _ = urllib.request.urlretrieve(DATA_URL, filepath, + reporthook=_progress) + print() + statinfo = os.stat(filepath) + print('Succesfully downloaded', filename, statinfo.st_size, 'bytes.') + tarfile.open(filepath, 'r:gz').extractall(dest_directory) + + +def main(_): + maybe_download_and_extract() + image = (FLAGS.image_file if FLAGS.image_file else + os.path.join(FLAGS.model_dir, 'cropped_panda.jpg')) + run_inference_on_image(image) + + +if __name__ == '__main__': + tf.app.run() diff --git a/data/old_readme.md b/data/old_readme.md new file mode 100644 index 0000000000000000000000000000000000000000..2c224e178e0eec6f312427b8d472bd143d203261 --- /dev/null +++ b/data/old_readme.md @@ -0,0 +1,130 @@ +# Old README, for posterity. + +## Intro + +If you're looking to run [fully featured TensorFlow](https://github.com/tensorflow/tensorflow) or [Bazel](https://github.com/bazelbuild/bazel) on a Raspberry Pi 3, you're in the right place. This repo contains step-by-step instructions for installing TensorFlow from source using Bazel (which is also compiled from-scratch), as well as pre-built TensorFlow binaries. + +_As a quick note, if you're looking for officially supported TensorFlow/Raspberry Pi functionality, you can also check out using the [Makefile contrib module](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/makefile). It builds a static C++ library instead of the standard Python library, but is very powerful._ + +### Contents + +* [Installing from pip (easy)](#installing-from-pip) +* [Building from source (hard)](#building-from-source) +* [Docker image](#docker-image) +* [Credits](#credits) +* [License](#license) + +## Installing from Pip + +**Note: These are unofficial binaries (though built from the minimally modified official source), and thus there is no expectation of support from the TensorFlow team. Please don't create issues for these files in the official TensorFlow repository.** + +This is the easiest way to get TensorFlow onto your Raspberry Pi 3. Note that currently, the pre-built binary is targeted for Raspberry Pi 3 running Raspbian 8.0 ("Jessie"), so this may or may not work for you. The specific OS release is the following: + +``` +Raspbian 8.0 "Jessie" +Release: March 2, 2017 +Installed via NOOBS 2.3 +``` + +First, install the dependencies for TensorFlow: + +```shell +sudo apt-get update + +# For Python 2.7 +sudo apt-get install python-pip python-dev + +# For Python 3.3+ +sudo apt-get install python3-pip python3-dev +``` + +Next, download the wheel file from this repository and install it: + +```shell +# For Python 2.7 +wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.1.0/tensorflow-1.1.0-cp27-none-linux_armv7l.whl +sudo pip install tensorflow-1.1.0-cp27-none-linux_armv7l.whl + +# For Python 3.4 +wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.1.0/tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl +sudo pip3 install tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl +``` + +Finally, we need to reinstall the `mock` library to keep it from throwing an error when we import TensorFlow: + +```shell +# For Python 2.7 +sudo pip uninstall mock +sudo pip install mock + +# For Python 3.3+ +sudo pip3 uninstall mock +sudo pip3 install mock +``` + +And that should be it! + +### Docker image + +Instructions on setting up a Docker image to run on Raspberry Pi are being maintained by @romilly [here](https://github.com/romilly/rpi-docker-tensorflow), and a pre-built image is hosted on DockerHub [here](https://hub.docker.com/r/romilly/rpi-docker-tensorflow/). Woot! + +### Troubleshooting + +_This section will attempt to maintain a list of remedies for problems that may occur while installing from `pip`_ + +#### "tensorflow-1.1.0-cp27-none-linux_armv7l.whl is not a supported wheel on this platform." + +This wheel was built with Python 2.7, and can't be installed with a version of `pip` that uses Python 3. If you get the above message, try running the following command instead: + +``` +sudo pip2 install tensorflow-1.1.0-cp27-none-linux_armv7l.whl +``` + +Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-1.1.0-cp34-cp34m-any.whl is not a supported wheel on this platform.", try this command: + +``` +sudo pip3 install tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl +``` + +**Note: the provided binaries are for Python 2.7 and 3.4 _only_. If you've installed Python 3.5/3.6 from source on your machine, you'll need to either explicitly install these wheels for 3.4, or you'll need to build TensorFlow [from source](GUIDE.md). Once there's an officially supported installation of Python 3.5+, this repo will start including wheels for those versions.** + +## Building from Source + +[_Step-by-step guide_](GUIDE.md) + +If you aren't able to make the wheel file from the previous section work, you may need to build from source. Additionally, if you want to use features that have not been included in an official release, such as the [initial distributed runtime](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/distributed_runtime), you'll have to build from source. Don't worry, as we've figured out most of the quirks of getting it right. The guide will be updated as needed to be as correct as possible. + +See the [step-by-step guide here](GUIDE.md). **Warning: it takes a while.** + +## Non-Raspberry Pi Model 3 builds + +There are numerous single-board computers available on the market, but binaries and build instructions aren't necessarily compatible with what's available in this repository. This is a list of resources to help those with non-RPi3 (or RPi 2) computers get up and running: + +* ODROID + * [Issue thread for ODROID](https://github.com/samjabrahams/tensorflow-on-raspberry-pi/issues/41) + * [NeoTitans guide to building on ODROID C2](https://www.neotitans.net/install-tensorflow-on-odroid-c2.html) + +## Credits + +While the final pieces of grunt work were done primarily by myself and @petewarden, this effort has been going on for almost as long as TensorFlow has been open-source, and involves work that spans multiple months in separate codebases. This is an incomprehensive list of people and their work I ran across while working on this. + +The majority of the source-building guide is a modified version of [these instructions for compiling TensorFlow on a Jetson TK1](http://cudamusing.blogspot.com/2015/11/building-tensorflow-for-jetson-tk1.html). Massimiliano, you are the real MVP. _Note: the TK1 guide was [updated on June 17, 2016](http://cudamusing.blogspot.com/2016/06/tensorflow-08-on-jetson-tk1.html)_ + +@vmayoral put a huge amount of time and effort trying to put together the pieces to build TensorFlow, and was the first to get something close to a working binary. + +A bunch of awesome Googlers working in both the TensorFlow and Bazel repositories helped make this possible. In no particular order: @vrv, @damienmg, @petewarden, @danbri, @ulfjack, @girving, and @nlothian + +_Issue threads of interest:_ + +* [Initial issue for building Bazel on ARMv7l](https://github.com/bazelbuild/bazel/issues/606) +* [First thread about running TensorFlow on RPi](https://github.com/tensorflow/tensorflow/issues/254) +* [Parallel thread on building TensorFlow on ARMv7l](https://github.com/tensorflow/tensorflow/issues/445) + * This is where the most recent conversation is located + +## License + +Subdirectories contained within the `third_party` directory each contain relevant licenses for the code and software within those subdirectories. + +The file TENSORFLOW_LICENSE applies to the binaries distributed in the [releases.](https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases) + +The file LICENSE applies to other files in this repository. I want to stress that a majority of the lines of code found in the guide of this repository was created by others. If any of those original authors want more prominent attribution, please contact me and we can figure out how to make it acceptable. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/console_output.txt b/data/testlogs/python27/2016_07_17/console_output.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab037c280c884e0a9d6f888455472d6b3742bec9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/console_output.txt @@ -0,0 +1,192 @@ +INFO: Elapsed time: 2787.383s, Critical Path: 1811.71s +//tensorflow/python/kernel_tests:argmax_op_test PASSED in 50.8s +//tensorflow/python/kernel_tests:as_string_op_test PASSED in 12.3s +//tensorflow/python/kernel_tests:attention_ops_test PASSED in 18.5s +//tensorflow/python/kernel_tests:batch_matrix_band_part_op_test PASSED in 64.6s + Stats over 50 runs: max = 64.6s, min = 7.2s, avg = 18.1s, dev = 14.5s +//tensorflow/python/kernel_tests:bcast_ops_test PASSED in 15.1s +//tensorflow/python/kernel_tests:benchmark_test PASSED in 17.5s +//tensorflow/python/kernel_tests:bias_op_test PASSED in 19.8s +//tensorflow/python/kernel_tests:bitcast_op_test PASSED in 12.3s +//tensorflow/python/kernel_tests:candidate_sampler_ops_test PASSED in 10.9s +//tensorflow/python/kernel_tests:check_ops_test PASSED in 19.8s +//tensorflow/python/kernel_tests:cholesky_op_test PASSED in 30.7s +//tensorflow/python/kernel_tests:clip_ops_test PASSED in 14.8s +//tensorflow/python/kernel_tests:conv_ops_3d_test PASSED in 39.7s + Stats over 50 runs: max = 39.7s, min = 6.7s, avg = 10.3s, dev = 6.6s +//tensorflow/python/kernel_tests:conv_ops_test PASSED in 95.0s +//tensorflow/python/kernel_tests:cross_grad_test PASSED in 11.1s +//tensorflow/python/kernel_tests:ctc_decoder_ops_test PASSED in 12.5s +//tensorflow/python/kernel_tests:decode_csv_op_test PASSED in 11.4s +//tensorflow/python/kernel_tests:decode_png_op_test PASSED in 12.2s +//tensorflow/python/kernel_tests:decode_raw_op_test PASSED in 17.7s +//tensorflow/python/kernel_tests:denormal_test PASSED in 12.0s +//tensorflow/python/kernel_tests:dense_update_ops_no_tsan_test PASSED in 12.0s +//tensorflow/python/kernel_tests:dense_update_ops_test PASSED in 15.1s +//tensorflow/python/kernel_tests:depthtospace_op_test PASSED in 19.1s +//tensorflow/python/kernel_tests:division_future_test PASSED in 58.1s +//tensorflow/python/kernel_tests:division_past_test PASSED in 47.7s +//tensorflow/python/kernel_tests:dynamic_partition_op_test PASSED in 13.2s +//tensorflow/python/kernel_tests:dynamic_stitch_op_test PASSED in 22.7s +//tensorflow/python/kernel_tests:edit_distance_op_test PASSED in 11.4s +//tensorflow/python/kernel_tests:extract_image_patches_op_test PASSED in 24.3s +//tensorflow/python/kernel_tests:fft_ops_test PASSED in 13.1s +//tensorflow/python/kernel_tests:fifo_queue_test PASSED in 37.4s +//tensorflow/python/kernel_tests:gather_nd_op_test PASSED in 16.8s +//tensorflow/python/kernel_tests:gather_op_test PASSED in 15.0s +//tensorflow/python/kernel_tests:gradient_correctness_test PASSED in 22.5s +//tensorflow/python/kernel_tests:identity_op_py_test PASSED in 11.3s +//tensorflow/python/kernel_tests:init_ops_test PASSED in 21.9s +//tensorflow/python/kernel_tests:io_ops_test PASSED in 14.0s +//tensorflow/python/kernel_tests:linalg_grad_test PASSED in 21.0s + Stats over 50 runs: max = 21.0s, min = 8.4s, avg = 12.2s, dev = 2.8s +//tensorflow/python/kernel_tests:linalg_ops_test PASSED in 23.1s +//tensorflow/python/kernel_tests:listdiff_op_test PASSED in 15.0s +//tensorflow/python/kernel_tests:logging_ops_test PASSED in 11.9s +//tensorflow/python/kernel_tests:lrn_op_test PASSED in 25.4s +//tensorflow/python/kernel_tests:matmul_op_test PASSED in 18.7s +//tensorflow/python/kernel_tests:matrix_inverse_op_test PASSED in 12.5s +//tensorflow/python/kernel_tests:matrix_solve_ls_op_test PASSED in 11.9s +//tensorflow/python/kernel_tests:matrix_solve_op_test PASSED in 17.0s +//tensorflow/python/kernel_tests:matrix_triangular_solve_op_test PASSED in 50.8s +//tensorflow/python/kernel_tests:morphological_ops_test PASSED in 32.9s +//tensorflow/python/kernel_tests:multinomial_op_test PASSED in 17.8s +//tensorflow/python/kernel_tests:numerics_test PASSED in 17.1s +//tensorflow/python/kernel_tests:one_hot_op_test PASSED in 18.4s +//tensorflow/python/kernel_tests:pack_op_test PASSED in 19.9s +//tensorflow/python/kernel_tests:pad_op_test PASSED in 13.2s +//tensorflow/python/kernel_tests:padding_fifo_queue_test PASSED in 28.1s +//tensorflow/python/kernel_tests:parameterized_truncated_normal_op_test PASSED in 45.5s +//tensorflow/python/kernel_tests:parsing_ops_test PASSED in 18.4s +//tensorflow/python/kernel_tests:partitioned_variables_test PASSED in 35.2s +//tensorflow/python/kernel_tests:pooling_ops_test PASSED in 37.6s +//tensorflow/python/kernel_tests:priority_queue_test PASSED in 50.1s +//tensorflow/python/kernel_tests:random_crop_test PASSED in 18.6s +//tensorflow/python/kernel_tests:random_gamma_test PASSED in 70.9s +//tensorflow/python/kernel_tests:random_shuffle_queue_test PASSED in 24.0s +//tensorflow/python/kernel_tests:reader_ops_test PASSED in 14.7s +//tensorflow/python/kernel_tests:reduce_join_op_test PASSED in 59.0s +//tensorflow/python/kernel_tests:relu_op_test PASSED in 16.5s +//tensorflow/python/kernel_tests:reshape_op_test PASSED in 15.2s +//tensorflow/python/kernel_tests:reverse_sequence_op_test PASSED in 12.3s +//tensorflow/python/kernel_tests:rnn_cell_test PASSED in 24.5s +//tensorflow/python/kernel_tests:save_restore_ops_test PASSED in 24.3s +//tensorflow/python/kernel_tests:scalar_strict_test PASSED in 16.7s +//tensorflow/python/kernel_tests:scan_ops_test PASSED in 57.5s +//tensorflow/python/kernel_tests:scatter_ops_test PASSED in 150.4s +//tensorflow/python/kernel_tests:segment_reduction_ops_test PASSED in 22.0s +//tensorflow/python/kernel_tests:self_adjoint_eig_op_test PASSED in 19.5s +//tensorflow/python/kernel_tests:session_ops_test PASSED in 13.7s +//tensorflow/python/kernel_tests:shape_ops_test PASSED in 36.2s +//tensorflow/python/kernel_tests:softmax_op_test PASSED in 9.5s +//tensorflow/python/kernel_tests:softplus_op_test PASSED in 9.9s +//tensorflow/python/kernel_tests:spacetobatch_op_test PASSED in 18.1s +//tensorflow/python/kernel_tests:spacetodepth_op_test PASSED in 25.6s +//tensorflow/python/kernel_tests:sparse_add_op_test PASSED in 18.9s +//tensorflow/python/kernel_tests:sparse_concat_op_test PASSED in 13.5s +//tensorflow/python/kernel_tests:sparse_reorder_op_test PASSED in 30.4s +//tensorflow/python/kernel_tests:sparse_reshape_op_test PASSED in 19.6s +//tensorflow/python/kernel_tests:sparse_serialization_ops_test PASSED in 9.9s +//tensorflow/python/kernel_tests:sparse_split_op_test PASSED in 11.9s +//tensorflow/python/kernel_tests:sparse_tensor_dense_matmul_grad_test PASSED in 30.3s +//tensorflow/python/kernel_tests:sparse_tensor_dense_matmul_op_test PASSED in 85.2s +//tensorflow/python/kernel_tests:sparse_to_dense_op_py_test PASSED in 11.7s +//tensorflow/python/kernel_tests:sparse_xent_op_test PASSED in 13.1s +//tensorflow/python/kernel_tests:sparsemask_op_test PASSED in 11.5s +//tensorflow/python/kernel_tests:split_op_test PASSED in 15.9s +//tensorflow/python/kernel_tests:stack_ops_test PASSED in 17.6s +//tensorflow/python/kernel_tests:string_join_op_test PASSED in 9.4s +//tensorflow/python/kernel_tests:string_to_hash_bucket_op_test PASSED in 17.4s +//tensorflow/python/kernel_tests:string_to_number_op_test PASSED in 14.1s +//tensorflow/python/kernel_tests:summary_image_op_test PASSED in 57.8s +//tensorflow/python/kernel_tests:summary_ops_test PASSED in 22.3s +//tensorflow/python/kernel_tests:template_test PASSED in 16.4s +//tensorflow/python/kernel_tests:topk_op_test PASSED in 15.2s +//tensorflow/python/kernel_tests:trace_op_test PASSED in 10.1s +//tensorflow/python/kernel_tests:transpose_op_test PASSED in 43.1s +//tensorflow/python/kernel_tests:unique_op_test PASSED in 17.0s +//tensorflow/python/kernel_tests:unpack_op_test PASSED in 25.8s +//tensorflow/python/kernel_tests:variable_scope_test PASSED in 21.4s +//tensorflow/python/kernel_tests:variables_test PASSED in 18.3s +//tensorflow/python/kernel_tests:where_op_test PASSED in 11.3s +//tensorflow/python/kernel_tests:zero_division_test PASSED in 11.2s +//tensorflow/python/kernel_tests:array_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/array_ops_test/test.log +//tensorflow/python/kernel_tests:barrier_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/barrier_ops_test/test.log +//tensorflow/python/kernel_tests:batch_matmul_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log +//tensorflow/python/kernel_tests:batchtospace_op_test TIMEOUT in 72.6s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batchtospace_op_test/test.log +//tensorflow/python/kernel_tests:control_flow_ops_py_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log +//tensorflow/python/kernel_tests:depthwise_conv_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log +//tensorflow/python/kernel_tests:diag_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/diag_op_test/test.log +//tensorflow/python/kernel_tests:in_topk_op_test TIMEOUT in 65.2s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/in_topk_op_test/test.log +//tensorflow/python/kernel_tests:pooling_ops_3d_test TIMEOUT in 68.5s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log +//tensorflow/python/kernel_tests:random_ops_test TIMEOUT in 67.7s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/random_ops_test/test.log +//tensorflow/python/kernel_tests:rnn_test TIMEOUT in 305.1s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/rnn_test/test.log +//tensorflow/python/kernel_tests:seq2seq_test TIMEOUT in 305.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/seq2seq_test/test.log +//tensorflow/python/kernel_tests:slice_op_test TIMEOUT in 306.9s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/slice_op_test/test.log +//tensorflow/python/kernel_tests:summary_audio_op_test TIMEOUT in 71.1s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/summary_audio_op_test/test.log +//tensorflow/python/kernel_tests:tensor_array_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log +//tensorflow/python/kernel_tests:variable_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/variable_ops_test/test.log +//tensorflow/python/kernel_tests:xent_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/xent_op_test/test.log +//tensorflow/python/kernel_tests:cast_op_test FAILED in 20.4s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cast_op_test/test.log +//tensorflow/python/kernel_tests:concat_op_test FAILED in 169.6s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/concat_op_test/test.log +//tensorflow/python/kernel_tests:constant_op_test FAILED in 21.5s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/constant_op_test/test.log +//tensorflow/python/kernel_tests:ctc_loss_op_test FAILED in 24.3s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log +//tensorflow/python/kernel_tests:cwise_ops_test FAILED in 16 out of 50 in 96.7s + Stats over 50 runs: max = 96.7s, min = 13.6s, avg = 43.1s, dev = 19.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log +//tensorflow/python/kernel_tests:determinant_op_test FAILED in 10.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/determinant_op_test/test.log +//tensorflow/python/kernel_tests:embedding_ops_test FAILED in 1 out of 50 in 72.1s + Stats over 50 runs: max = 72.1s, min = 4.7s, avg = 11.8s, dev = 14.7s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log +//tensorflow/python/kernel_tests:functional_ops_test FAILED in 49.9s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/functional_ops_test/test.log +//tensorflow/python/kernel_tests:py_func_test FAILED in 30.4s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/py_func_test/test.log +//tensorflow/python/kernel_tests:reduction_ops_test FAILED in 55.8s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/reduction_ops_test/test.log +//tensorflow/python/kernel_tests:softsign_op_test FAILED in 11.6s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/softsign_op_test/test.log +//tensorflow/python/kernel_tests:sparse_matmul_op_test FAILED in 18.4s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log +//tensorflow/python/kernel_tests:sparse_ops_test FAILED in 47.5s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_ops_test/test.log + +Executed 138 out of 138 tests: 108 tests pass and 30 fail locally. +There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..24c3c3b0897eced270ed15fc63720d7e01f94217 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/argmax_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..da297ea399354afae2d96bdeeb55f50326ebbc2f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Reduction axis 0 is empty in shape [0] + [[Node: ArgMin = ArgMin[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](ArgMin/input, ArgMin/dimension)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reduction axis 0 is empty in shape [0] + [[Node: ArgMax = ArgMax[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](ArgMax/input, ArgMax/dimension)]] +..... +---------------------------------------------------------------------- +Ran 6 tests in 2.950s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2772390ddb2c08334d663d61c4098a5ad04fe4af --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d97c791c1de56f747f1f2c9874a377190a8f2fac Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..3f047eadcd93e9632e00166147b99a3303b5d4e0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log @@ -0,0 +1,5 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.............E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Input 1 needs to have rank 1: ] [2] + [[Node: meshgrid_28/Assert_1 = Assert[T=[DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](meshgrid_28/Equal_1, meshgrid_28/Assert_1/data_0, meshgrid_28/Rank_3)]] +................... \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..afa2dec25a0d2c8503b9e776b7f6466116222d71 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/as_string_op_test/test.log`` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..471db516cedddc864690bbf3cabb52de2ed70ced --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log @@ -0,0 +1,31 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Cannot select both scientific and shortest notation + [[Node: AsString_7 = AsString[T=DT_COMPLEX64, fill="", precision=-1, scientific=true, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Cannot select both scientific and shortest notation + [[Node: AsString_7 = AsString[T=DT_COMPLEX64, fill="", precision=-1, scientific=true, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Cannot select both scientific and shortest notation + [[Node: AsString_16 = AsString[T=DT_DOUBLE, fill="", precision=-1, scientific=true, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Cannot select both scientific and shortest notation + [[Node: AsString_16 = AsString[T=DT_DOUBLE, fill="", precision=-1, scientific=true, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_1_0)]] +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Fill string must be one or fewer characters + [[Node: AsString_17 = AsString[T=DT_DOUBLE, fill="ab", precision=-1, scientific=false, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Fill string must be one or fewer characters + [[Node: AsString_17 = AsString[T=DT_DOUBLE, fill="ab", precision=-1, scientific=false, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_1_0)]] +.E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: scientific and shortest format not supported for datatype int8 + [[Node: AsString_9 = AsString[T=DT_INT8, fill="", precision=-1, scientific=true, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] scientific and shortest format not supported for datatype int8 + [[Node: AsString_9 = AsString[T=DT_INT8, fill="", precision=-1, scientific=true, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: scientific and shortest format not supported for datatype int8 + [[Node: AsString_10 = AsString[T=DT_INT8, fill="", precision=-1, scientific=false, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] scientific and shortest format not supported for datatype int8 + [[Node: AsString_10 = AsString[T=DT_INT8, fill="", precision=-1, scientific=false, shortest=true, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: precision not supported for datatype int8 + [[Node: AsString_11 = AsString[T=DT_INT8, fill="", precision=0, scientific=false, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] precision not supported for datatype int8 + [[Node: AsString_11 = AsString[T=DT_INT8, fill="", precision=0, scientific=false, shortest=false, width=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_2_0)]] +... +---------------------------------------------------------------------- +Ran 6 tests in 0.707s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9fb5bb86c65459548df9bdede70072877b53c31 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97ebf9efda85a796a8811c2a4f8a462583d5bb96 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status @@ -0,0 +1 @@ +HАR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/attention_ops_test/test.log`А \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..795af94c99b849c92a8cf0eddbe18f80b376228e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............ +---------------------------------------------------------------------- +Ran 12 tests in 2.796s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..af5bc186e38224dcea079d29bba744c104b67b9f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b7653ad95a754f9766b3179e24fceddfe6408ac5 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e1923aa9205397d79b4a38dab484a12caf1c6292 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log @@ -0,0 +1,637 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Barrier _1_B is closed. Pending enqueues cancelled: 1. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_3 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_3/keys, B_BarrierInsertMany_3/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _1_B is closed. Pending enqueues cancelled: 1. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_1_B' is closed and has insufficient elements (requested 3, total size 2) + [[Node: B_BarrierTakeMany_1 = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany_1/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_1_B' is closed and has insufficient elements (requested 2, total size 0) + [[Node: B_BarrierTakeMany = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany/num_elements)]] +.W tensorflow/core/framework/op_kernel.cc:936] Aborted: Barrier _2_B is closed, but attempted to insert a brand new key: f. Pending enqueues cancelled: 0. Insertion index: 0. Number of incomplete keys: 3. +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _2_B is closed, but attempted to insert a brand new key: f. Pending enqueues cancelled: 0. Insertion index: 0. Number of incomplete keys: 3. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _2_B is closed. Pending enqueues cancelled: 0. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_2_B' is closed and has insufficient elements (requested 4, total size 3) + [[Node: B_BarrierTakeMany_1 = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany_1/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_2_B' is closed and has insufficient elements (requested 3, total size 0) + [[Node: B_BarrierTakeMany = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany/num_elements)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_a' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_a' has component types float but requested component types were int32 + [[Node: barrier_1 = Barrier[capacity=-1, component_types=[DT_INT32], container="", shapes=[[]], shared_name="b_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_b' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_b' has component types float but requested component types were float, int32 + [[Node: barrier_3 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[[], []], shared_name="b_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_c' has component shapes [[2,2], [8]] but requested component shapes were [[], []] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_c' has component shapes [[2,2], [8]] but requested component shapes were [[], []] + [[Node: barrier_5 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[], []], shared_name="b_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_d' has component shapes [[], []] but requested component shapes were [[2,2], [8]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_d' has component shapes [[], []] but requested component shapes were [[2,2], [8]] + [[Node: barrier_7 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[2,2], [8]], shared_name="b_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_e' has component shapes [[2,2], [8]] but requested component shapes were [[2,5], [8]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_e' has component shapes [[2,2], [8]] but requested component shapes were [[2,5], [8]] + [[Node: barrier_9 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[2,5], [8]], shared_name="b_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +...E tensorflow/core/client/tensor_c_api.cc:485] Tensors with no elements are not supported _4_B: received shape [3,0] + [[Node: B_BarrierInsertMany = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany/keys, B_BarrierInsertMany/values)]] +...E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_19 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_19/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_31 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_31/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_13 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_13/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_28 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_28/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_17 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_17/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_39 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_39/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_46 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_46/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_45 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_45/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_30 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_30/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_25 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_25/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_32 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_32/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_37 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_37/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_47 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_47/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_49 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_49/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_36 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_36/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_21 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_21/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_40 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_40/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_43 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_43/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_41 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_41/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_34 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_34/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_7 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_7/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_38 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_38/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_42 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_42/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_44 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_44/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_48 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_48/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_75 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_75/keys, barrier_BarrierInsertMany_75/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_76 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_76/keys, barrier_BarrierInsertMany_76/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_79 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_79/keys, barrier_BarrierInsertMany_79/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_77 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_77/keys, barrier_BarrierInsertMany_77/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_81 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_81/keys, barrier_BarrierInsertMany_81/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_85 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_85/keys, barrier_BarrierInsertMany_85/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_84 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_84/keys, barrier_BarrierInsertMany_84/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_78 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_78/keys, barrier_BarrierInsertMany_78/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_92 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_92/keys, barrier_BarrierInsertMany_92/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_80 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_80/keys, barrier_BarrierInsertMany_80/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_33 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_33/keys, barrier_BarrierInsertMany_33/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_82 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_82/keys, barrier_BarrierInsertMany_82/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_86 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_86/keys, barrier_BarrierInsertMany_86/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_91 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_91/keys, barrier_BarrierInsertMany_91/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_98 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_98/keys, barrier_BarrierInsertMany_98/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_99 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_99/keys, barrier_BarrierInsertMany_99/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_93 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_93/keys, barrier_BarrierInsertMany_93/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_95 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_95/keys, barrier_BarrierInsertMany_95/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_89 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_89/keys, barrier_BarrierInsertMany_89/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_40 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_40/keys, barrier_BarrierInsertMany_40/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_94 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_94/keys, barrier_BarrierInsertMany_94/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_97 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_97/keys, barrier_BarrierInsertMany_97/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_87 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_87/keys, barrier_BarrierInsertMany_87/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_96 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_96/keys, barrier_BarrierInsertMany_96/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_38 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_38/keys, barrier_BarrierInsertMany_38/values)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_23 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_23/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_19 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_19/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_4 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_4/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_21 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_21/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_29 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_29/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_36 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_36/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_40 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_40/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_44 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_44/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_8 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_8/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_45 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_45/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_11 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_11/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_15 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_15/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_16 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_16/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_26 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_26/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_13 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_13/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_33 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_33/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_32 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_32/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_35 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_35/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_49 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_49/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_7 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_7/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_20 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_20/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_42 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_42/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_38 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_38/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_12 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_12/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_46 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_46/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_25 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_25/keys, barrier_BarrierInsertMany_25/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_76 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_76/keys, barrier_BarrierInsertMany_76/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_77 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_77/keys, barrier_BarrierInsertMany_77/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_81 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_81/keys, barrier_BarrierInsertMany_81/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_80 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_80/keys, barrier_BarrierInsertMany_80/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_82 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_82/keys, barrier_BarrierInsertMany_82/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_87 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_87/keys, barrier_BarrierInsertMany_87/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_85 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_85/keys, barrier_BarrierInsertMany_85/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_94 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_94/keys, barrier_BarrierInsertMany_94/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_28 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_28/keys, barrier_BarrierInsertMany_28/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_47 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_47/keys, barrier_BarrierInsertMany_47/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_49 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_49/keys, barrier_BarrierInsertMany_49/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_93 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_93/keys, barrier_BarrierInsertMany_93/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_98 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_98/keys, barrier_BarrierInsertMany_98/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_89 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_89/keys, barrier_BarrierInsertMany_89/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_36 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_36/keys, barrier_BarrierInsertMany_36/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_90 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_90/keys, barrier_BarrierInsertMany_90/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_95 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_95/keys, barrier_BarrierInsertMany_95/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_88 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_88/keys, barrier_BarrierInsertMany_88/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_34 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_34/keys, barrier_BarrierInsertMany_34/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_42 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_42/keys, barrier_BarrierInsertMany_42/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_29 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_29/keys, barrier_BarrierInsertMany_29/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_91 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_91/keys, barrier_BarrierInsertMany_91/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_46 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_46/keys, barrier_BarrierInsertMany_46/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_33 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_33/keys, barrier_BarrierInsertMany_33/values)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_0 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_0/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_1 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_1/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_2 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_2/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_3 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_3/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_4 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_4/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_6 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_6/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_5 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_5/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_7 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_7/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_8 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_8/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_11 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_11/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_12 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_12/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_9 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_9/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_14 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_14/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_30 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_30/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_13 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_13/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_24 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_24/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_18 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_18/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_21 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_21/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_23 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_23/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_26 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_26/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_27 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_27/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_43 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_43/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_45 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_45/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_47 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_47/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_49 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_49/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_51 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_51/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_53 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_53/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_55 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_55/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_16 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_16/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_57 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_57/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_19 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_19/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_9_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: take_22 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_22/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_10 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_10/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_31 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_31/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_32 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_32/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_33 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_33/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_34 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_34/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_35 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_35/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_36 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_36/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_38 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_38/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_39 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_39/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_40 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_40/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_41 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_41/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_42 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_42/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_37 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_37/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_15 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_15/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_29 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_29/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_46 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_46/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_50 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_50/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_54 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_54/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_58 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_58/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_20 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_20/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_99 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_99/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_62 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_62/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_61 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_61/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_63 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_63/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_64 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_64/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_65 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_65/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_67 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_67/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_66 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_66/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_68 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_68/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_69 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_69/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_70 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_70/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_71 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_71/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_72 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_72/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_73 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_73/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_74 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_74/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_75 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_75/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_76 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_76/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_77 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_77/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_78 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_78/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_79 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_79/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_80 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_80/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_25 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_25/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_81 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_81/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_82 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_82/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_83 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_83/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_84 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_84/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_85 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_85/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_86 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_86/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_87 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_87/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_88 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_88/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_89 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_89/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_90 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_90/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_91 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_91/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_92 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_92/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_93 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_93/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_94 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_94/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_95 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_95/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_96 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_96/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_98 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_98/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_97 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_97/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_60 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_60/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_28 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_28/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_0 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_0/keys, insert_1_0/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_5 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_5/keys, insert_1_5/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_7 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_7/keys, insert_1_7/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_8 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_8/keys, insert_1_8/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_10 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_10/keys, insert_1_10/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_12 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_12/keys, insert_1_12/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_14 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_14/keys, insert_1_14/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_16 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_16/keys, insert_1_16/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_18 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_18/keys, insert_1_18/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_20 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_20/keys, insert_1_20/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_22 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_22/keys, insert_1_22/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_24 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_24/keys, insert_1_24/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_26 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_26/keys, insert_1_26/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_28 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_28/keys, insert_1_28/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_30 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_30/keys, insert_1_30/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_32 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_32/keys, insert_1_32/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_34 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_34/keys, insert_1_34/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_36 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_36/keys, insert_1_36/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_44 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_44/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_38 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_38/keys, insert_1_38/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_40 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_40/keys, insert_1_40/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_42 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_42/keys, insert_1_42/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_44 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_44/keys, insert_1_44/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_48 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_48/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_52 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_52/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_48 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_48/keys, insert_1_48/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_49 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_49/keys, insert_1_49/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_51 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_51/keys, insert_1_51/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_52 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_52/keys, insert_1_52/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_54 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_54/keys, insert_1_54/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_56 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_56/keys, insert_1_56/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_58 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_58/keys, insert_1_58/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_60 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_60/keys, insert_1_60/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_62 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_62/keys, insert_1_62/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_64 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_64/keys, insert_1_64/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_66 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_66/keys, insert_1_66/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_68 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_68/keys, insert_1_68/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_72 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_72/keys, insert_1_72/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_70 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_70/keys, insert_1_70/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_74 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_74/keys, insert_1_74/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_76 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_76/keys, insert_1_76/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_78 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_78/keys, insert_1_78/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_80 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_80/keys, insert_1_80/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_82 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_82/keys, insert_1_82/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_84 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_84/keys, insert_1_84/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_86 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_86/keys, insert_1_86/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_88 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_88/keys, insert_1_88/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_90 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_90/keys, insert_1_90/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_92 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_92/keys, insert_1_92/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_94 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_94/keys, insert_1_94/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_96 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_96/keys, insert_1_96/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_98 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_98/keys, insert_1_98/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_17 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_17/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_1 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_1/keys, insert_1_1/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_4 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_4/keys, insert_1_4/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_3 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_3/keys, insert_1_3/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_2 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_2/keys, insert_1_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_11 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_11/keys, insert_1_11/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_15 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_15/keys, insert_1_15/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_19 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_19/keys, insert_1_19/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_23 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_23/keys, insert_1_23/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_27 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_27/keys, insert_1_27/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_31 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_31/keys, insert_1_31/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_35 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_35/keys, insert_1_35/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_39 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_39/keys, insert_1_39/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_43 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_43/keys, insert_1_43/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_46 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_46/keys, insert_1_46/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_50 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_50/keys, insert_1_50/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_53 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_53/keys, insert_1_53/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_57 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_57/keys, insert_1_57/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_61 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_61/keys, insert_1_61/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_65 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_65/keys, insert_1_65/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_73 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_73/keys, insert_1_73/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_69 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_69/keys, insert_1_69/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_77 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_77/keys, insert_1_77/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_81 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_81/keys, insert_1_81/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_85 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_85/keys, insert_1_85/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_89 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_89/keys, insert_1_89/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_97 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_97/keys, insert_1_97/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_93 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_93/keys, insert_1_93/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_6 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_6/keys, insert_1_6/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_13 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_13/keys, insert_1_13/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_21 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_21/keys, insert_1_21/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_37 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_37/keys, insert_1_37/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_29 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_29/keys, insert_1_29/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_45 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_45/keys, insert_1_45/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_47 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_47/keys, insert_1_47/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_59 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_59/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_55 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_55/keys, insert_1_55/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_63 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_63/keys, insert_1_63/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_71 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_71/keys, insert_1_71/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_79 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_79/keys, insert_1_79/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_91 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_91/keys, insert_1_91/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_99 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_99/keys, insert_1_99/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_83 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_83/keys, insert_1_83/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_87 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_87/keys, insert_1_87/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_9 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_9/keys, insert_1_9/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_33 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_33/keys, insert_1_33/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_41 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_41/keys, insert_1_41/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_9_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: take_56 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, take_56/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_59 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_59/keys, insert_1_59/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_67 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_67/keys, insert_1_67/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_75 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_75/keys, insert_1_75/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_25 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_25/keys, insert_1_25/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_95 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_95/keys, insert_1_95/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _9_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: insert_1_17 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, insert_1_17/keys, insert_1_17/values)]] +. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..91e2a74bcab6c15246286e84769510b34485a0ed Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..75e45cd0a6b91ec14bcd4e9f1a91f5c9608c54bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b3777975107fb33111a15e69b373d739ae6d1dca --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b0aa907fe385186c9bbe1c5d60898bec327284dd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.328s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b888a599fe9228a3aecfbe782992ca12380a4275 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dbab97e440a29ec75b5078b2118ed22d8a54abd5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.276s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6e78af2492a1661e6e6a2fab42bc3c9204873992 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bfdf71454e86856ab1a03f4b0c56d7a9a863257a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 16.616s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..24319ac722db16c3f308e5baf9b51ced415f0a37 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1d58ca111bb5b5e87b63477fafe8efb25134b2c1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.576s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d7bf32249ce903f59eb629860206d4c601c053ee --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3794c64a4d0553db7eb2f4a71dec7b224faf7d7c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.289s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..84df4b48bdb7c347e31509e73e38d6994ff85721 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2c1b7b8d2f1c2d58ab7d521ec2d50f99bc915b43 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.007s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8d9be1d978d4ef3ef3cce15dc502cb8938692e19 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a5d898b6730d686f8394f0e2152fd2c89c11a4a2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 16.764s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6974c264127222791353c77dccf0e301c04f8b4b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3c3288285810fbb7453e889a555a70651e7703a6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 56.239s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..72057d408ba4b00725860aef2063bd9e94b42da3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5c525a355838dc66851689f53cafecfdf266c33f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 57.026s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..719b49fcb418747a8e6a9af8b88f26d6dc755983 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +HPR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log`P \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..56144df83a10253413ecd416179fbbbb0bd8e9e3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.023s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5af429b91b4d78412f7203a1bbd5e7635b64973d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9f16565b6ef170386a2cec0404d3e092efc44cb5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.804s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e1cad0bccacac5eb5d40ec7e4e9b15b9073b307c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HNR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log`N \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..55341cf069d45b2333ac3cfc007fc19b26897403 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 2.899s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c1d73011d02e446e68b3add7276c4fe45a97f714 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3cd7f808c6024ce2040459c6615b56fac96a94c4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.039s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0ae836282008886ca7661dc8bbfcecdad77136ed --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ff0337d24622293fbcf35390a73d37c2ed99b97b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.929s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f9464f55b816a7a13f77868a599961c46435c28b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ead61d209372e4dfa25e32fb2157bdd329e2f7a5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.878s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..688ef1915ac85a2d69c38c7caa4008918bfc6e4f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b4642299a7a294b3cb251ac5c2f090a82a047ec8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.671s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5f1afbebcb65c6d4971fbbb6c0a62b87dd05b83d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0fc46a99b2c86812e4d7d43db59bde39da87dd89 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.143s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2673af30a35f25cef774dbf1a78ca8906a8eaa61 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..80ef11f4523d824cd860072be361976c16abfd8f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.045s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d419677fc76061db316e21973f0c201b335d4173 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +HnR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log`n \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0bb63c3bf974d9f6f22cc4639e35f09142109de3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 6.412s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d2f99a6ae0dac222cac869f5b958b1526cce1a13 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HkR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log`k \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2ba28f3ce635053224344ffba780fdd1919f1b4d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 6.263s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..20ce47662a1226fc4a1bc193aa95d53de4fa8466 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1a478a98fec0b51318f2f9cd3550a857b0dc9c53 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.458s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..17ba8d12ae2be929a92e9fd8813fb248539f9a7d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log`U \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..06c7aaf40bcbaa285fd73c26d17162a5b8f8246a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.745s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bd4db3b11617220efa4252b4b2549b39a861aac9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..35df8611418fb5bb5cfbc4a933194bbce4f80554 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.043s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..869d0284491d8a8adde2200fe1d59a58480b9832 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..450eb684dbf4ab0afbaa2385afa5d50ed7a01df1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.459s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fe4bb251331fd47703362450c9b2443a45629254 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4d5d2a6c6227b2fe5e646fd860ee343220571ad9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 9.495s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b4c2bf1609fecbd7f944115d6e026c0a41b914f9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5b7163ddb75ed71638c146e6d614db1b2a0a641c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.164s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b47f6437b40210f15291454b97c4db1cf5ef7eb0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f3bdf3dfbe170304ae0b333e4af0022b0c7d96c5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 17.527s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1422d66e09ac53703e75d05a629beaf8084622d1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c461f4a1bc993c653b272aac3686a93ec2cc5920 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 56.432s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4560e411581b66db480bf506b294724c53c6fb3b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c3c62bca1e7f25540c64f4a30eab22494e971e80 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 55.376s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4b7311b30129e0d883b9d91f7e2f77c2291ac9b4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..aca2028d8ee267907685991cf91b79c265d0c35d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.795s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2720aa59e79f71a61b8396a3e9e0271aa64e225b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HDR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log`D \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9f3025aeaa754ccded5bed1f4ed66ecefe3672b9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.564s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4540e0ccea17f924c6b8bcbba5108a24ce4c418f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HDR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log`D \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6f09528c7dbde7175c4559bf8237a39ac84e765e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.487s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..77e4e1c31d55d4c3e046ab153aa6914177b46438 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HbR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log`b \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a0735fece7d311b972d66f59e12bc887ad4f0b82 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.019s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..91873658aa9d9274efba92666809ce1085efa458 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HER/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log`E \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8b3252a1e9be7fec60f5eb71701e49692579803e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.435s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..42c620cb72bff289aed2cf354a1634ef1f4af4ca --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e206c0f683310b84e532543d28524a877e6a057f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.290s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b5220943f87bb647d9835e28e3b549ae8a3a630a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..121848f76451704157850c34469ef55293145b41 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.340s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..acca22bf09c23c24f292ee93f9758d6be938b442 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +H?R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log`? \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dd91dbb1264c611b32367e3cba2715722c6723cf --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.464s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9e7fecdf7e604de503353fce430ba3c9e0e90193 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +H + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..beb430987d6fb67c59719d40b1cc805b42c7594f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..315f7eb8c387a9bef1575145ae9828f7e462a774 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.095s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8b49ea917e10660dba24574c1196e58cffb3e922 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +H;R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log`; \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..931220d43a3f1d43520e30aed3933e38656da785 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.332s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a30ae742b3171946c88cf842e57c654331ad1f05 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HsR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log`s \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..38f521c2053223a49b5086c26366e13cc6e46a68 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.423s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ffd6b7bfc4ceddf352fed4c925ea668225df57cc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HNR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log`N \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..81f03fd95939e163051a8625e717605ada212256 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.274s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a13873c8cbb84bd2257619cc28ceebaf5e69a2c7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +H>R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log`> \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b4dd22241cd048e6d42fe749418517f12282258e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.449s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..caaf1ae6db8bcf5b0d42f71faba1e6feac15c91d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a36518b3974d93bd56ec6fa675f6652644c550cb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.672s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7d484afd9c678bf7ad1e32106e07d51c0a30d369 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..42d6775909b478aee04ef04ad2bfc25866c5669a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.402s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4782c44e352d8b4f60d183e2760abd4acfc75bd7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..68001371e043dcebd5cbc4a214d652ec1b55abf0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.265s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6164857f94e4f79400c2e8c202838ecdedee6222 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HЈR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log`Ј \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cef99ce7c396d746397f4fae95c1ee83d9c37aea --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.380s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..df747e654ae0545e668adae96347e09976483077 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HcR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log`c \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..38e919b43dffd66bc0ceb51741ec9ad52b8e857e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.096s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..952084f7a72ae51161e7447ef80009dacab73b50 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e2f2808d6b9ceb74e5e696dfc8b27c20d5260b62 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.870s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..883bba9b26524cb35950ce751e8a2cdeff8326bd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HrR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log`r \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5be3790f6a0325f87b3bac35a9ff2eba7ff6db5f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 7.155s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e46c297ca1b91214ce2317755d344dcb22515199 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..058c92f1fe087ae0ab76c4bac2a4b004c1d47f11 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 2.889s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e8613162eecb78196e3e996302a12ea13c9eb04c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/bcast_ops_test/test.log`u \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..59d089108c08edff5de3b01ae92652b4a081f608 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.353s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..78b427a2f88a2f96f662f13ca951503207be00a7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d8b37cbc2dcaa7522e85d559ffa0510971cd0e8c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status @@ -0,0 +1 @@ +HɈR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/benchmark_test/test.log`Ɉ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..8f0fd3be22e9d2870ef1325a71f4f4a52b89aec6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 2.310s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..74dbe74cad52777cbd966792b2fe5ff30ac38dba --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..33eb808eae9121fd47c0bd6bc1448468c673f15f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status @@ -0,0 +1 @@ +H͚R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/bias_op_test/test.log`͚ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d37f91be575555f4b42e919f6cf55b7d1080fde8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log @@ -0,0 +1,53 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........... +---------------------------------------------------------------------- +Ran 11 tests in 8.131s + +OK +(0, 0) +(0,) +(0, 0) +(0,) +(2, 0) +(0,) +(2, 0) +(0,) +(0, 2) +(2,) +(0, 2) +(2,) +(4, 3, 0) +(0,) +(4, 3, 0) +(0,) +(4, 0, 3) +(3,) +(4, 0, 3) +(3,) +(0, 4, 3) +(3,) +(0, 4, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..93b6ba26c614aef29981cddb9d1c45e46db8a95c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a5914baa0749e68a3b0c72c3a1a70762bb8136a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/bitcast_op_test/test.log`` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..42106693ca68d342391118f8080e5462f4b8c7b1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 0.146s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..c19dad6dc0e8080526e6e9825e97ed5dd8f045d8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..23769b8434ceb60e4e47845f9f06a4dbc384d980 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log`U \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9f0a835663d2e2de50baa28d81b0caaa5bf41b98 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 1.071s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..59a2332bc257b52163e27040630dbd26fc974510 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f5e5c589419bfcaf882f21e927dba51e80c641fa Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5a5c3a7a2fe0275a0bb3c372d616a0f29a193610 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log @@ -0,0 +1,86 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....F.W tensorflow/core/framework/op_kernel.cc:926] Unimplemented: Cast int32 to string is not supported +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Unimplemented: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +E tensorflow/core/client/tensor_c_api.cc:485] Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +F....... +====================================================================== +FAIL: testInfNan (__main__.CastOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 124, in testInfNan + self._compare(np.inf, np.int32, i4.min, False) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 102, in _compare + dst_dtype(expected)) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 317, in assert_equal + raise AssertionError(msg) +AssertionError: +Items are not equal: + ACTUAL: 2147483647 + DESIRED: -2147483648 + +====================================================================== +FAIL: testNotImplemented (__main__.CastOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 149, in testNotImplemented + "Cast.*int64.*string.*") + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/usr/lib/python2.7/contextlib.py", line 35, in __exit__ + self.gen.throw(type, value, traceback) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/test_util.py", line 528, in assertRaisesWithPredicateMatch + raise AssertionError(e) +AssertionError: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +Caused by op u'Cast', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 205, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 149, in testNotImplemented + "Cast.*int64.*string.*") + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/math_ops.py", line 619, in cast + return gen_math_ops.cast(x, base_type, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/gen_math_ops.py", line 407, in cast + result = _op_def_lib.apply_op("Cast", x=x, DstT=DstT, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 14 tests in 4.557s + +FAILED (failures=2) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d77f1aa9a98d69683b41c7c571466ba4170a415 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..88d9e3563e39f61ee419a371c8fbe6bb4a33de88 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/check_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..259e7186c4ebba521c757830e817fef797cbc5e9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, big, assert_equal/Assert/data_3, assert_equal/Assert/data_4, small)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [small:0] [3 1] [y = ] [big:0] [4 2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, small, assert_equal/Assert/data_3, assert_equal/Assert/data_4, big)]] +...E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [x is not of integer dtype: x = ] [floats:0] [1 2] + [[Node: assert_integer/Assert = Assert[T=[DT_STRING, DT_STRING, DT_FLOAT], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_integer/Assert/condition, assert_integer/Assert/data_0, assert_integer/Assert/data_1, floats)]] +......E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, big, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, small)]] +......E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < y did not hold element-wise: x = ] [small:0] [1 2] [y = ] [small:0] [1 2] + [[Node: assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less/All, assert_less/Assert/data_0, assert_less/Assert/data_1, small, assert_less/Assert/data_3, assert_less/Assert/data_4, small)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less/All, assert_less/Assert/data_0, assert_less/Assert/data_1, big, assert_less/Assert/data_3, assert_less/Assert/data_4, small)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < 0 did not hold element-wise: x = ] [doug:0] [1 2] + [[Node: assert_negative/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_negative/assert_less/All, assert_negative/assert_less/Assert/data_0, assert_negative/assert_less/Assert/data_1, doug)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < 0 did not hold element-wise: x = ] [claire:0] [0] + [[Node: assert_negative/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_negative/assert_less/All, assert_negative/assert_less/Assert/data_0, assert_negative/assert_less/Assert/data_1, claire)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x >= 0 did not hold element-wise: x = ] [zoe:0] [-1 -2] + [[Node: assert_non_negative/assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_non_negative/assert_less_equal/All, assert_non_negative/assert_less_equal/Assert/data_0, assert_non_negative/assert_less_equal/Assert/data_1, zoe)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= 0 did not hold element-wise: x = ] [rachel:0] [0 2] + [[Node: assert_non_positive/assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_non_positive/assert_less_equal/All, assert_non_positive/assert_less_equal/Assert/data_0, assert_non_positive/assert_less_equal/Assert/data_1, rachel)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x > 0 did not hold element-wise: x = ] [freddie:0] [-1 -2] + [[Node: assert_positive/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_positive/assert_less/All, assert_positive/assert_less/Assert/data_0, assert_positive/assert_less/Assert/data_1, freddie)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x > 0 did not hold element-wise: x = ] [meechum:0] [0] + [[Node: assert_positive/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_positive/assert_less/All, assert_positive/assert_less/Assert/data_0, assert_positive/assert_less/Assert/data_1, meechum)]] +..............E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank at least] [2] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/GreaterEqual, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank at least] [1] [Received shape: ] [] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/GreaterEqual, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Rank must be a scalar.Received rank:] [1 2] + [[Node: assert_rank/Assert = Assert[T=[DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/assert_rank/Equal, assert_rank/Assert/data_0, _recv_rank_tensor_0)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [0] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +..E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [2] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [1] [Received shape: ] [] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +................... +---------------------------------------------------------------------- +Ran 92 tests in 7.364s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3c4fe31ed4608752d76609d69e8c5fe826036178 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..69acc3d537a2c1f12af44e2c2c78fbd013638ee6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cholesky_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c4e1c69cc41cb8c951331d63e6027da6807b8351 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.........E tensorflow/core/client/tensor_c_api.cc:485] LLT decomposition was not successful. The input might not be valid. + [[Node: BatchCholesky = BatchCholesky[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchCholesky/input)]] +... +---------------------------------------------------------------------- +Ran 12 tests in 15.175s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..41b1c1e3fcbf18fdf8c5dc394c78f4725c1cbc7c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..11714deee9dd693011dacf66d6e7847f9cb2054a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status @@ -0,0 +1 @@ +HsR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/clip_ops_test/test.log`s \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..02bac9bb4daac74a3747946c9c2d34ef7936ab06 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log @@ -0,0 +1,16 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/clip_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/clip_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +.. +---------------------------------------------------------------------- +Ran 18 tests in 2.127s + +OK +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f3f7c6e5f4bb3e3dc34fb71c41433e3ff40a9b9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..aa7ebaca92af028d8e8709b036ea8b32bda957ea Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1afd145b2e037022da755c9bcae5a5d8c6ba11a8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log @@ -0,0 +1,110 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Concat dim is out of range: 4 vs. 3 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input 1 should contain 3 elements, but got4 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input 1 should be a vector, but got shape [1,3] + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input[1,2] mismatch: 5 vs. 10 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +...W tensorflow/core/framework/op_kernel.cc:926] Invalid argument: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E tensorflow/core/client/tensor_c_api.cc:485] Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E..................... +====================================================================== +ERROR: testConcatLargeTensors (__main__.ConcatOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 429, in testConcatLargeTensors + _ = onezeros.eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op u'ones', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 486, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 423, in testConcatLargeTensors + a = tf.ones([2**31 + 6], dtype=tf.int8) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/ops/array_ops.py", line 1219, in ones + output = constant(1, shape=shape, dtype=dtype, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/constant_op.py", line 167, in constant + attrs={"value": tensor_value, "dtype": dtype_value}, name=name).outputs[0] + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 29 tests in 151.040s + +FAILED (errors=1) +graph = [u'Const', u'concat/concat_dim', u'concat', u'gradients/concat_grad/ShapeN', u'gradients/concat_grad/ConcatOffset', u'gradients/concat_grad/Slice', u'gradients/concat_grad/Slice_1', u'gradients/concat_grad/Slice_2', u'gradients/concat_grad/Slice_3', u'gradients/concat_grad/Slice_4', u'gradients/concat_grad/Slice_5', u'gradients/concat_grad/Slice_6', u'gradients/concat_grad/Slice_7', u'gradients/concat_grad/Slice_8', u'gradients/concat_grad/Slice_9', u'gradients/AddN'] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..aa6f3f9df1e9c8ee1eb6aa882bd28a2daac728c8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5152be62c243585f944800407108a7c890f589f7 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0f753c86436e859dba10cb872f083fde52d5c7df --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log @@ -0,0 +1,40 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......................EE.......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +..................E tensorflow/core/client/tensor_c_api.cc:485] You must feed a value for placeholder tensor 'p' with dtype float + [[Node: p = Placeholder[dtype=DT_FLOAT, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +..E tensorflow/core/client/tensor_c_api.cc:485] You must feed a value for placeholder tensor 'p' with dtype float and shape [10,10] + [[Node: p = Placeholder[dtype=DT_FLOAT, shape=[10,10], _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +................. +====================================================================== +ERROR: testTooLargeConstant (__main__.ConstantTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/kernel_tests/constant_op_test.py", line 164, in testTooLargeConstant + large_array = np.zeros((512, 1024, 1024), dtype=np.float32) +ValueError: array is too big. + +====================================================================== +ERROR: testTooLargeGraph (__main__.ConstantTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/kernel_tests/constant_op_test.py", line 173, in testTooLargeGraph + c = tf.constant(large_array) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/framework/constant_op.py", line 163, in constant + tensor_util.make_tensor_proto(value, dtype=dtype, shape=shape)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/framework/tensor_util.py", line 411, in make_tensor_proto + tensor_proto.tensor_content = nparray.tostring() +MemoryError + +---------------------------------------------------------------------- +Ran 68 tests in 3.140s + +FAILED (errors=2) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..93d81f8d3f3fcdbc561fe61e516e7b3fa1f1d294 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4a75ea9514e6a32054805442bf5d5746cf103595 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d13313efce53ee521b94102d6b157aa2c570b003 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log @@ -0,0 +1,38 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [More than one condition evaluated as True but exclusive=True. Conditions: (Less_3:0, Less_4:0), Values:] [1 1] + [[Node: case_3/Assert = Assert[T=[DT_STRING, DT_BOOL], summarize=2, _device="/job:localhost/replica:0/task:0/cpu:0"](case_3/Less, case_3/Assert/data_0, case_3/preds_c)]] +WARNING:tensorflow:case: Provided dictionary of predicate/fn pairs, but exclusive=False. Order of conditional tests is not guaranteed. +......................E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=8448340679364119266, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +..................E tensorflow/core/client/tensor_c_api.cc:485] The tensor returned for Identity:0 was not valid. +.............WARNING:tensorflow:Tried to colocate gradients/while/Square_grad/mul/f_acc with an op while/Identity that had a different device: /device:GPU:0 vs /device:CPU:0. Ignoring colocation property. +...........................................E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: Variable/read = Identity[T=DT_FLOAT, _class=["loc:@Variable"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.W tensorflow/core/framework/op_kernel.cc:936] Failed precondition: Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=8228077631115786400, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=8228077631115786400, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=80954877802673214, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +...E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1720160156823402135, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1720160156823402135, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_2 + [[Node: _send_Variable_2_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1720160156823402135, tensor_name="Variable_2:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_3 + [[Node: _send_Variable_3_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1720160156823402135, tensor_name="Variable_3:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_3)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-2821117717816974861, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-2821117717816974861, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_2 + [[Node: _send_Variable_2_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-2821117717816974861, tensor_name="Variable_2:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_3 + [[Node: _send_Variable_3_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-2821117717816974861, tensor_name="Variable_3:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_3)]] +.... +---------------------------------------------------------------------- +Ran 107 tests in 40.748s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..01af90b6fddd96dfcacfd5f17fdd45a8fe28707a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HvR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log`v \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..733ecc55ddfba999fa41e69f31d68a99efdd0680 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 8.013s + +OK +conv3d gradient error = 6.82931489138e-12 +conv3d gradient error = 0.00377542 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1b066e07baab990252511c0f56d8aa0b0e243b84 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HbR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log`b \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..af40ef3926a99e768ead5fc58b5e7407270abf83 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 5.040s + +OK +conv3d gradient error = 8.00026711545e-13 +conv3d gradient error = 0.00052762 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3c71713b799989aab01cf1012cba0dd5d6634ef6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..371d957b494f3287cbec6cfc2e99ffac99c91b0c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 1.210s + +OK +conv3d gradient error = 4.1566750042e-13 +conv3d gradient error = 0.000113159 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b48b6ae3816318a477b742a7616b4714214ce5b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +H۫R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log`۫ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c61ca58500ff3bd08fab2aca13a10ad777e56b8d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 14.448s + +OK +conv3d gradient error = 1.74638081774e-12 +conv3d gradient error = 0.000903428 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..23c0644bb99cbccc2df745921a89b6c272c8dea5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HtR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log`t \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0523eaedafc98aff19fac8c69b7a96df198a8848 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 7.733s + +OK +conv3d gradient error = 1.73441816465e-12 +conv3d gradient error = 0.000809789 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6fa9c4cada5aff21cf526c96af8f2880ccd8da62 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HcR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log`c \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4db5c43ef5c3a6ee839d1c2afcce41e9cfd95c74 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 5.585s + +OK +conv3d gradient error = 1.7044143874e-12 +conv3d gradient error = 0.000879884 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..40087dcb7dcf774fb5c57d6971ff7973e99b47b5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8c6af7a8503cd21ca3be7627dde2a6ae694aeade --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 10.497s + +OK +conv3d gradient error = 1.66544555924e-12 +conv3d gradient error = 0.000829667 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..999c02bd5b1eed12c746d82e8c7110d6ae57c64b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HzR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log`z \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ab023fae1f966ce9128399609b5595238a6206da --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 7.981s + +OK +conv3d gradient error = 1.73741576681e-12 +conv3d gradient error = 0.000863731 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bfed6dc2c71da2b598f89362c759fa5d5cbf71d3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +H + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5d2a9b23694325feb5e76d9c03a64767a686cf34 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8206ab38eb92a1b3359c8fe132aa055cf4db09a7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bdd9dd77879e72c8c37a83b2d2ccc7dee1cbe53f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log @@ -0,0 +1,67 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.324s + +OK +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.]] + + [[ 66. 81. 96.]] + + [[ 102. 126. 150.]]] + + + [[[ 138. 171. 204.]] + + [[ 174. 216. 258.]] + + [[ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.]] + + [[ 66. 81. 96.]] + + [[ 102. 126. 150.]]] + + + [[[ 138. 171. 204.]] + + [[ 174. 216. 258.]] + + [[ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]]] + + + [[[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]]] + + + [[[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..42df0d3e16195918ce0e2aeda97ca67f736439e0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..57ac557be3cef1d5ba7a1b9cdbdca75641bc501e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7fd3ab6f40525c2e0c32d8bd517468ad705cca6f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f61b083765ecd1fc82d545c49ccb560b7b2fe400 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +H + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..80800f0b90e2c24e9c8b82f60f63e3ac0d5ab715 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..399b823f8006e242bf074d84a4d5e1cbad6f6aaa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..277a2f7a3e0917a621abaab56eb60c203b9614ac --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7f54aa3ee07059b75726c17118f6038a399e82f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a5b086be8417243e3a0ccc919f1110fb8b362172 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6cbe1345c8c2eecb0d81da316fe79e057cee6b5f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ba693adccdfcb67a4ee3f2646742f2b55901fe02 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d6ea5784cd05a77c44efe36a42dcc9676d3d86b7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log @@ -0,0 +1,29 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.119s + +OK +expected = [19554.0, 19962.0, 20370.0, 22110.0, 22590.0, 23070.0, 34890.0, 35730.0, 36570.0, 37446.0, 38358.0, 39270.0, 50226.0, 51498.0, 52770.0, 52782.0, 54126.0, 55470.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 22110. 22590. 23070.]]] + + + [[[ 34890. 35730. 36570.] + [ 37446. 38358. 39270.]]] + + + [[[ 50226. 51498. 52770.] + [ 52782. 54126. 55470.]]]]] +expected = [19554.0, 19962.0, 20370.0, 22110.0, 22590.0, 23070.0, 34890.0, 35730.0, 36570.0, 37446.0, 38358.0, 39270.0, 50226.0, 51498.0, 52770.0, 52782.0, 54126.0, 55470.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 22110. 22590. 23070.]]] + + + [[[ 34890. 35730. 36570.] + [ 37446. 38358. 39270.]]] + + + [[[ 50226. 51498. 52770.] + [ 52782. 54126. 55470.]]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a09ffbefa9a337f2a9b6d5d4976d7cadb49bbf6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +H4R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log`4 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..482438f0ca72339f62b953d73f0d6d8d8956df3b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +H5R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log`5 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c7938b5705e18e8fe80801b3f365e472cbdae89c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +H5R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log`5 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5b537284f0333cd696416ae1bee9d120eb1cfe48 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..36a572d237fd8aefb6ccc18e817ee0d89fb63ffc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..67214b7dc5a005a9ced7f1b8bf5c4fce0a1644ca --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +H + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3bcb660f25b982e0ba956ae0537d0770cc6aacb7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +H;R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log`; \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c7221e06c1f78b3729f4bebdf8eb31cdd0232c2f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6787032054115070b2478825c864f8d828bcb54a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5fc943b6e911bfb683b3a415cc953e061e93441c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f2bfa8e0ae28606f2161f7bf61b87849dc208819 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fb4ae91e0d8fc54c4973e205af5ecc735459472c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log @@ -0,0 +1,17 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.116s + +OK +expected = [19554.0, 19962.0, 20370.0, 50226.0, 51498.0, 52770.0] +actual = [[[[[ 19554. 19962. 20370.]]] + + + [[[ 50226. 51498. 52770.]]]]] +expected = [19554.0, 19962.0, 20370.0, 50226.0, 51498.0, 52770.0] +actual = [[[[[ 19554. 19962. 20370.]]] + + + [[[ 50226. 51498. 52770.]]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..561bad6b4b7c4f1a92b2341a3b65eea76793fe17 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a33fc4e4a1afcaf5a7ce15d18c56c0924119cae6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4aab0a7c38a95dfdd3ec37a2e35092b2841a0dde --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e7798c1b32cddd5f93e8917fbd032dd58f9ee162 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.005s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..07ffe4d6b60281175d661f06917f8217d283c22f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +H;R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log`; \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5192c9928a80c2d31e0fc681242909f4a1213506 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..84f8afb34e0800b389e8da1d3ed04dcef3fd83c0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5b88b7409a4acd7ebb96b7c1e9267789c205a20a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +H:R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log`: \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3529438771d21e0ec685fc2e90b57a86c445f1b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..315c0b5071c976e35d940d647e4f08920acafed3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..47d661daf5c2215f5c6cba18249fb9380dfa6a47 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a805a335f83bb55de532afef4072eb1d88835079 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..28bb464508a15dd7ca4ff3dec13b28334131bd24 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log @@ -0,0 +1,21 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.120s + +OK +expected = [19554.0, 19962.0, 20370.0, 10452.0, 10710.0, 10968.0, 50226.0, 51498.0, 52770.0, 23844.0, 24534.0, 25224.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 10452. 10710. 10968.]]] + + + [[[ 50226. 51498. 52770.] + [ 23844. 24534. 25224.]]]]] +expected = [19554.0, 19962.0, 20370.0, 10452.0, 10710.0, 10968.0, 50226.0, 51498.0, 52770.0, 23844.0, 24534.0, 25224.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 10452. 10710. 10968.]]] + + + [[[ 50226. 51498. 52770.] + [ 23844. 24534. 25224.]]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..98932f8b9f2d08b1bd4c2945d9c2f23b5d31b5b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HƄR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log`Ƅ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6622be53fa7f8641c50d2360ac00705485c90f06 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a59a3fde6a599fa3100071b9aa2f80a67fb6c2fa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.135s + +OK +expected = [36564.0, 38022.0, 39480.0, 37824.0, 39354.0, 40884.0, 39084.0, 40686.0, 42288.0, 46644.0, 48678.0, 50712.0, 47904.0, 50010.0, 52116.0, 49164.0, 51342.0, 53520.0, 107124.0, 112614.0, 118104.0, 108384.0, 113946.0, 119508.0, 109644.0, 115278.0, 120912.0, 117204.0, 123270.0, 129336.0, 118464.0, 124602.0, 130740.0, 119724.0, 125934.0, 132144.0] +actual = [[[[[ 36564. 38022. 39480.] + [ 37824. 39354. 40884.] + [ 39084. 40686. 42288.]] + + [[ 46644. 48678. 50712.] + [ 47904. 50010. 52116.] + [ 49164. 51342. 53520.]]] + + + [[[ 107124. 112614. 118104.] + [ 108384. 113946. 119508.] + [ 109644. 115278. 120912.]] + + [[ 117204. 123270. 129336.] + [ 118464. 124602. 130740.] + [ 119724. 125934. 132144.]]]]] +expected = [36564.0, 38022.0, 39480.0, 37824.0, 39354.0, 40884.0, 39084.0, 40686.0, 42288.0, 46644.0, 48678.0, 50712.0, 47904.0, 50010.0, 52116.0, 49164.0, 51342.0, 53520.0, 107124.0, 112614.0, 118104.0, 108384.0, 113946.0, 119508.0, 109644.0, 115278.0, 120912.0, 117204.0, 123270.0, 129336.0, 118464.0, 124602.0, 130740.0, 119724.0, 125934.0, 132144.0] +actual = [[[[[ 36564. 38022. 39480.] + [ 37824. 39354. 40884.] + [ 39084. 40686. 42288.]] + + [[ 46644. 48678. 50712.] + [ 47904. 50010. 52116.] + [ 49164. 51342. 53520.]]] + + + [[[ 107124. 112614. 118104.] + [ 108384. 113946. 119508.] + [ 109644. 115278. 120912.]] + + [[ 117204. 123270. 129336.] + [ 118464. 124602. 130740.] + [ 119724. 125934. 132144.]]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..495fe67e131a4198176a704e224dbe082026a180 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..72bcc32a91d74d06c889b4858aa1f0dc76725b2a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 10.619s + +OK +conv3d gradient error = 1.67532654416e-12 +conv3d gradient error = 0.000395894 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c3356b93ff7cb5a48afc798f93253e01619ed43f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d2362dd7e05ffe0923f70659bc12bd02da3f793f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 32.662s + +OK +conv3d gradient error = 3.3992808568e-12 +conv3d gradient error = 0.0022729 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..199a68ba4dc4237d73a55cf4ceab65f925dc85f8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HȏR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log`ȏ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2bfcaec98a7e74cad0e2bca1714e6187c4ea64fd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 11.060s + +OK +conv3d gradient error = 1.06203934536e-12 +conv3d gradient error = 0.000375986 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1968013dbbe7216ee46607fb3d68cc20c9f94cf9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..525eeaf7bbb7dcb6d2077967231d8737a35b3e49 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 26.152s + +OK +conv3d gradient error = 8.5076390377e-13 +conv3d gradient error = 0.000727892 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2061e274e1591f1780bc2a8380c2191acf910f5a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e963492de7b570f0041c7aa949283cd2ba51d07a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log @@ -0,0 +1,591 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [1.0, 4.0, 4.0, 3.0, 10.0, 8.0] +actual = [[[[ 1.] + [ 4.] + [ 4.]] + + [[ 3.] + [ 10.] + [ 8.]]]] +expected = [1.0, 4.0, 4.0, 3.0, 10.0, 8.0] +actual = [[[[ 1.] + [ 4.] + [ 4.]] + + [[ 3.] + [ 10.] + [ 8.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. 120. 153.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. .......120. 153.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. 120. 153.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [14.0, 32.0, 50.0, 100.0, 163.0, 226.0, 167.0, 212.0, 257.0, 122.0, 140.0, 158.0, 478.0, 541.0, 604.0, 437.0, 482.0, 527.0] +actual = [[[[ 14. 32. 50.] + [ 100. 163. 226.] + [ 167. 212. 257.]] + + [[ 122. 140. 158.] + [ 478. 541. 604.] + [ 437. 482. 527.]]]] +expected = [14.0, 32.0, 50.0, 100.0, 163.0, 226.0, 167.0, 212.0, 257.0, 122.0, 140.0, 158.0, 478.0, 541.0, 604.0, 437.0, 482.0, 527.0] +actual = [[[[ 14. 32. 50.] + [ 100. 163. 226.] + [ 167. 212. 257.]] + + [[ 122. 140. 158.] + [ 478. 541. 604.] + [ 437. 482. 527.]]]] +expected = [1.0, 2.0, 2.0, 4.0, 3.0, 6.0, 7.0, 12.0, 11.0, 18.0, 15.0, 24.0, 12.0, 16.0, 15.0, 20.0, 18.0, 24.0] +actual = [[[[ 1.] + [ 2.] + [ 2.] + [ 4.] + [ 3.] + [ 6.]] + + [[ 7.] + [ 12.] + [ 11.] + [ 18.] + [ 15.] + [ 24.]] + + [[ 12.] + [ 16.] + [ 15.] + [ 20.] + [ 18.] + [ 24.]]]] +expected = [1.0, 2.0, 2.0, 4.0, 3.0, 6.0, 7.0, 12.0, 11.0, 18.0, 15.0, 24.0, 12.0, 16.0, 15.0, 20.0, 18.0, 24.0] +actual = [[[[ 1.] + [ 2.] + [ 2.] + [ 4.] + [ 3.] + [ 6.]] + + [[ 7.] + [ 12.] + [ 11.] + [ 18.] + [ 15.] + [ 24.]] + + [[ 12.] + [ 16.] + [ 15.] + [ 20.] + [ 18.] + [ 24.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2272. 2368. 2464.] + [ 2900. 3032. 3164.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2272. 2368. 2464.] + [ 2900. 3032. 3164.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2272. 2368. 2464.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2272. 2368. 2464.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2272. 2368. 2464.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [....................................................................................................................................................................................... 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2272. 2368. 2464.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [ 1230. 1305. 1380.]]]] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0] +actual = [[[[ 1.] + [ 0.] + [ 2.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]] + + [[ 3.] + [ 0.] + [ 4.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]]]] +expected = [1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0] +actual = [[[[ 1.] + [ 0.] + [ 2.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]] + + [[ 3.] + [ 0.] + [ 4.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]]]] +conv_2d gradient error = 0.000881791 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000859857 +conv_2d gradient error = 0.000322282 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000344932 +conv_2d gradient error = 0.000798941 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000743389 +conv_2d gradient error = 0.000143647 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000268519 +conv_2d gradient error = 0.00033319 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000322282 +conv_2d gradient error = 0.000784814 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000624478 +conv_2d gradient error = 0.000162721 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.00028795 +conv_2d gradient error = 0.000438988 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.000468776 +conv_2d gradient error = 0.000911534 +conv_2d gradient error = 0.000238717 +conv_2d gradient error = 0.00077261 +conv_2d gradient error = 0.000428438 +conv_2d gradient error = 0.000241101 +conv_2d gradient error = 0.000332415 +conv_2d gradient error = 0.000382587 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.000452638 +conv_2d gradient error = 0.000905275 +conv_2d gradient error = 0.000238717 +conv_2d gradient error = 0.000889182 +conv_2d gradient erro......... +---------------------------------------------------------------------- +Ran 203 tests in 47.265s + +OK +r = 0.000312522 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.000290811 +value = [[[[ 196. 216. 272. 296.] + [ 252. 280. 344. 376.]]]] +value = [[[[ 6644.5 6971.5 7298.5 7625.5 7952.5 8279.5 8606.5 ] + [ 8154.5 8556.5 8958.5 9360.5 9762.5 10164.5 10566.5 ] + [ 9664.5 10141.5 10618.5 11095.5 11572.5 12049.5 12526.5 ] + [ 4145.5 4346.5 4547.5 4748.5 4949.5 5150.5 5351.5 ]] + + [[ 12684.5 13311.5 13938.5 14565.5 15192.5 15819.5 16446.5 ] + [ 14194.5 14896.5 15598.5 16300.5 17002.5 17704.5 18406.5 ] + [ 15704.5 16481.5 17258.5 18035.5 18812.5 19589.5 20366.5 ] + [ 6499.5 6814.5 7129.5 7444.5 7759.5 8074.5 8389.5 ]] + + [[ 18724.5 19651.5 20578.5 21505.5 22432.5 23359.5 24286.5 ] + [ 20234.5 21236.5 22238.5 23240.5 24242.5 25244.5 26246.5 ] + [ 21744.5 22821.5 23898.5 24975.5 26052.5 27129.5 28206.5 ] + [ 8853.5 9282.5 9711.5 10140.5 10569.5 10998.5 11427.5 ]] + + [[ 5746.75 6010.75 6274.75 6538.75 6802.75 7066.75 7330.75] + [ 6168.75 6452.25 6735.75 7019.25 7302.75 7586.25 7869.75] + [ 6590.75 6893.75 7196.75 7499.75 7802.75 8105.75 8408.75] + [ 2036.25 2119.5 2202.75 2286. 2369.25 2452.5 2535.75]]]] +value = [[[[ 5742. 6069. 6396. 6723. 7050. 7377. ] + [ 7047. 7449. 7851. 8253. 8655. 9057. ] + [ 8352. 8829. 9306. 9783. 10260. 10737. ] + [ 3582. 3783. 3984. 4185. 4386. 4587. ]] + + [[ 10962. 11589. 12216. 12843. 13470. 14097. ] + [ 12267. 12969. 13671. 14373. 15075. 15777. ] + [ 13572. 14349. 15126. 15903. 16680. 17457. ] + [ 5616. 5931. 6246. 6561. 6876. 7191. ]] + + [[ 16182. 17109. 18036. 18963. 19890. 20817. ] + [ 17487. 18489. 19491. 20493. 21495. 22497. ] + [ 18792. 19869. 20946. 22023. 23100. 24177. ] + [ 7650. 8079. 8508. 8937. 9366. 9795. ]] + + [[ 4963.5 5227.5 5491.5 5755.5 6019.5 6283.5 ] + [ 5328. 5611.5 5895. 6178.5 6462. 6745.5 ] + [ 5692.5 5995.5 6298.5 6601.5 6904.5 7207.5 ] + [ 1757.25 1840.5 1923.75 2007. 2090.25 2173.5 ]]]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..23942a65a3dcc1bc1904a152c4a2c25a6349f1a7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0ea9cdabbf33e87ec74f8457b57cee910951818e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cross_grad_test/test.log`V \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..48ab0a1102526366a1d9529e006b14404880154d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.253s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c592fad9512b7fb3aece35c697788383948682f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ee2309ee69a588fc3c90e277c892d56819bb3421 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status @@ -0,0 +1 @@ +HaR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log`a \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5cbe729efc6ae74e882cbde68d45a32c581dd4d9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/ctc_decoder_ops_test.runfiles/tensorflow/python/kernel_tests/ctc_decoder_ops_test.py:102: RuntimeWarning: divide by zero encountered in log + input_log_prob_matrix_0 = np.log(input_prob_matrix_0) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/ctc_decoder_ops_test.runfiles/tensorflow/python/kernel_tests/ctc_decoder_ops_test.py:115: RuntimeWarning: divide by zero encountered in log + input_log_prob_matrix_1 = np.log(input_prob_matrix_1) +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.296s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2aec3f0f8fa66f01e4690a2603e20e173675d4b2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e886b42267366adda2ba845791e79e58560c8f6c Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f81986bfc72f694324e16477e0241b4769c5687f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log @@ -0,0 +1,34 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F. +====================================================================== +FAIL: testBasic (__main__.CTCLossTest) +Test two batch entries. +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/kernel_tests/ctc_loss_op_test.py", line 203, in testBasic + self._testCTCLoss(inputs, seq_lens, labels, loss_truth, grad_truth) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/kernel_tests/ctc_loss_op_test.py", line 67, in _testCTCLoss + self.assertAllClose(tf_loss, loss_truth, atol=1e-6) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([ 3.34211779, 5.42262316], dtype=float32) + y: array([ 3.34210992, 5.42261982], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 0.164s + +FAILED (failures=1) +not close where = (array([0]),) +not close lhs = [ 3.34211779] +not close rhs = [ 3.34210992] +not close dif = [ 7.86781311e-06] +not close tol = [ 4.34211006e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc28ca3fc02b122adeb487ed2a3ad195794e84e1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8461518e91ffe7731971663573180a740ece653a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ec6ac2d4e47e3305ec26e3816c3bfbe9d918f9d4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 37.264s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..650b58a1bc03c04fb5af09c614497ce433cfe83f Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bed9114f8605cfd383b3fdb06d04ac3bbcc942f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_0D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 803, in testBCast_0D + self._testBCastD([1, 3, 2], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1., 2.], + [ 3., 4.], + [ 5., 6.]]], dtype=float32) + y: array([[[ 0.99999619, 1.99999237], + [ 2.99998856, 3.99998474], + [ 5. , 6. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 44.512s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0]), array([0, 0, 1, 1]), array([0, 1, 0, 1])) +not close lhs = [ 1. 2. 3. 4.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7c37c2eba95107da5bc4021198e91519f11cb978 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d64866f066f06f06f4ea6aba2b29f107c596fa1a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 37.114s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cd208b59add3217db8e7e6e802cbf9d0e6bb9845 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e11cbcddbc8e6f3239b20996fc58dd044b446d3c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_7D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 887, in testBCast_7D + self._testBCastD([1, 3, 2], [1, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 2. ], + [ 0.85714287, 1.14285719], + [ 0.83333331, 1. ]]], dtype=float32) + y: array([[[ 0.99999619, 1.99999237], + [ 0.85713959, 1.14285278], + [ 0.83333331, 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 42.353s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0]), array([0, 0, 1, 1]), array([0, 1, 0, 1])) +not close lhs = [ 1. 2. 0.85714287 1.14285719] +not close rhs = [ 0.99999619 1.99999237 0.85713959 1.14285278] +not close dif = [ 3.81469727e-06 7.62939453e-06 3.27825546e-06 4.41074371e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 1.85713952e-06 2.14285274e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8cd5b393957207c3f08c2687c4346f5e57d95118 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..04a3261a258fcbb60e975411f0f5752efd659477 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 47.307s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0b77860f7d0016e93b4193264443835a6002c4b6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a45eb577b740ca926afd539bf5988e6d27ae166f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 88.019s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3eea7d99042c07c05fc10e742d1178a7e7a84376 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HݍR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log`ݍ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9cfcef525a703b62cf7fb5dff04c0cd153ffd8f9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 43.235s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a6a8875de91d6bc4bdda96cb8de4c38b3f8a847e Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e669fa3ee6fe27771e9552f97e9d66997090f54b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log @@ -0,0 +1,55 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_8D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 899, in testBCast_8D + self._testBCastD([2, 1, 5], [2, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 1.55555558, 2.11111116, 2.66666675, 3.22222233], + [ 0.5 , 0.77777779, 1.05555558, 1.33333337, 1.61111116], + [ 0.33333334, 0.51851851, 0.7037037 , 0.8888889 , 1.07407415]],... + y: array([[[ 0.99999619, 1.55554962, 2.11110306, 2.66665649, 3.22220993], + [ 0.49999809, 0.77777481, 1.05555153, 1.33332825, 1.61110497], + [ 0.33333302, 0.51851803, 0.70370305, 0.88888806, 1.07407308]],... + +---------------------------------------------------------------------- +Ran 3 tests in 49.496s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1]), array([0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1]), array([0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 2, 3, 4])) +not close lhs = [ 1. 1.55555558 2.11111116 2.66666675 3.22222233 0.5 + 0.77777779 1.05555558 1.33333337 1.61111116 0.94444442 1.08333337 + 1.22222221 1.36111116 1.5 0.97777778 1.08888888 1.20000005] +not close rhs = [ 0.99999619 1.55554962 2.11110306 2.66665649 3.22220993 0.49999809 + 0.77777481 1.05555153 1.33332825 1.61110497 0.94444084 1.0833292 + 1.22221756 1.36110592 1.49999428 0.97777569 1.08888662 1.19999743] +not close dif = [ 3.81469727e-06 5.96046448e-06 8.10623169e-06 1.02519989e-05 + 1.23977661e-05 1.90734863e-06 2.98023224e-06 4.05311584e-06 + 5.12599945e-06 6.19888306e-06 3.57627869e-06 4.17232513e-06 + 4.64916229e-06 5.24520874e-06 5.72204590e-06 2.08616257e-06 + 2.26497650e-06 2.62260437e-06] +not close tol = [ 1.99999613e-06 2.55554960e-06 3.11110307e-06 3.66665654e-06 + 4.22221001e-06 1.49999801e-06 1.77777474e-06 2.05555148e-06 + 2.33332821e-06 2.61110495e-06 1.94444078e-06 2.08332904e-06 + 2.22221752e-06 2.36110600e-06 2.49999425e-06 1.97777581e-06 + 2.08888650e-06 2.19999743e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e87dd41e45f7815c2d0f493434758c046a501a01 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4d2cc040aa72c9a0ed23d67131303705a48bfa4f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 37.950s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..311c085abfa3317bc81800d9ad39519b06973d6b Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..809f6a70e9d68692a0a7f60857756cc136b04564 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_11D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 935, in testBCast_11D + self._testBCastD([1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.99999619, 0.99999619], + [ 0.99999905, 0.99999619], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 42.872s + +FAILED (failures=1) +not close where = (array([0, 0, 0]), array([0, 0, 1]), array([0, 1, 1])) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c8a1a75b13a60c931ee28eb3b795a0a9b0fe4ab9 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..21bc770206f007d3650fe05d8b4432a66a2c032a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_4D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 851, in testBCast_4D + self._testBCastD([1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.99999619, 0.99999619], + [ 0.99999905, 0.99999619], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 6.729s + +FAILED (failures=1) +not close where = (array([0, 0, 0]), array([0, 0, 1]), array([0, 1, 1])) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..03a0396c16b2511653c970d2b395ef4e7de0119c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4c9a851625e6ba90e3e8f9ff33e7f2969e6029d9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 39.592s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d7dc2ea284fb86fd96b5fd1bf3a8ffaf4caee774 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5c56bee8fb1dfba57387d1e6fde4daf67859254b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 76.727s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2386f92383974aaa77ea0ba0b6584a30cce30583 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8436f080859d2fea395b68d72830b1b964ede6a9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 22.449s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..236485f1ae0c3a215967263ee8a1c8bfe93ecb45 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..77a5cb88c0d16e8f7dc0f00ca7feac8d910ea423 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log @@ -0,0 +1,73 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +FF. +====================================================================== +FAIL: testBCast_12D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 947, in testBCast_12D + self._testBCastD([1, 1, 1, 1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[[[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]]]]], dtype=float32) + y: array([[[[[[ 0.99999619, 0.99999619], + [ 0.99999905, 0.99999619], + [ 1. , 1. ]]]]]], dtype=float32) + +====================================================================== +FAIL: testComplex64Basic (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 680, in testComplex64Basic + self._compareCpu(x, y + 0.1, np.true_divide, tf.truediv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[-0.49875003-0.00124377j, -0.49791670-0.00206604j], + [-0.49375188-0.0060957j , -0.50624800+0.0064082j ], + [-0.50208324+0.00210077j, -0.50125003+0.00125627j]]], dtype=complex64) + y: array([[[-0.49875003-0.00124377j, -0.49791649-0.00206606j], + [-0.49375176-0.00609569j, -0.50624639+0.00640818j], + [-0.50208324+0.00210079j, -0.50124943+0.00125626j]]], dtype=complex64) + +---------------------------------------------------------------------- +Ran 3 tests in 6.827s + +FAILED (failures=2) +not close where = (array([0, 0, 0]), array([0, 0, 0]), array([0, 0, 0]), array([0, 0, 0]), array([0, 0, 1]), array([0, 1, 1])) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] +not close where = (array([0]), array([1]), array([1])) +not close lhs = [-0.506248+0.0064082j] +not close rhs = [-0.50624639+0.00640818j] +not close dif = [ 1.60946183e-06] +not close tol = [ 1.50628694e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0f6536a7da1803cc0380b917467706945c2cfef8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1ae34ec4fb78811d9b078f72b048fd76571f1c55 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.WARNING:tensorflow:Cannot test special functions: No module named scipy +.. +---------------------------------------------------------------------- +Ran 3 tests in 30.084s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d9ebcc9ff3d500b2a641e25cf482e4e814eb3aa5 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f86603dc0dc7d8ef36ac039ac3425793762ba889 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testFloatBasic (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 557, in testFloatBasic + self._compareBoth(x, y + 0.1, np.true_divide, tf.truediv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 541, in _compareBoth + self._compareCpu(x, y, np_func, tf_func, also_compare_variables) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ -2.48756215e-01, -1.75507024e-01, -8.64304230e-02, + 2.42248047e-02, 1.65380374e-01], + [ 3.51662397e-01, 6.08828008e-01, 9.86842096e-01,... + y: array([[[ -2.48755947e-01, -1.75506935e-01, -8.64303708e-02, + 2.42247935e-02, 1.65380359e-01], + [ 3.51662070e-01, 6.08827412e-01, 9.86839116e-01,... + +---------------------------------------------------------------------- +Ran 3 tests in 42.829s + +FAILED (failures=1) + + +not close where = (array([0, 0, 0]), array([1, 1, 2]), array([2, 4, 0])) +not close lhs = [ 0.9868421 2.74822688 5.73248434] +not close rhs = [ 0.98683912 2.74822259 5.73247576] +not close dif = [ 2.98023224e-06 4.29153442e-06 8.58306885e-06] +not close tol = [ 1.98683915e-06 3.74822275e-06 6.73247541e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..26b48b2ea097a6ed9f14ed7f51804e05ee828a13 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8ed7754742b1cdcdf75f0695a84f2808f46f22f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 21.888s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97d6ba0032b75b1348cbe1889e4da83127cec6f2 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9913c2967317f72364e9ea67cafb2897e2c1a309 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_13D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 959, in testBCast_13D + self._testBCastD([1, 3, 2, 1, 1], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[[[ 1.]], + + [[ 2.]]],... + y: array([[[[[ 0.99999619]], + + [[ 1.99999237]]],... + +---------------------------------------------------------------------- +Ran 3 tests in 6.251s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0]), array([0, 0, 1, 1]), array([0, 1, 0, 1]), array([0, 0, 0, 0]), array([0, 0, 0, 0])) +not close lhs = [ 1. 2. 3. 4.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5b03b8f32251543e79fede0a8816d9b846c52fc8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b2d2483934e3a254eb3ba132451e76e39b201cf9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 25.326s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4ab965b508727a79af7373da2bffc9837b8eabd9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0bc87ff6a6de82ac8f71af6c68f3272650020a74 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 51.278s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6f298377c8e6895ec932f53bca96c6a2a7141e53 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fac05a71be18fde2e684bad1833e1da87ef0e1c0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 20.353s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7885297e5dafc2fdcf20e67c7c0ffa1b65be01f1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +H֩R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log`֩ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6a74db44365753ce2e2999e4bd43760850e81c33 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 30.658s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c5c23fdb1997a2deeeef3210a64128e2c312e051 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..58fb5264a087176f1e0d7e10f2ff8f4c0e7dd2d8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log @@ -0,0 +1,100 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.F +====================================================================== +FAIL: testBCast_14D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 971, in testBCast_14D + self._testBCastD([2, 3, 1, 1, 5], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[[[ 1. , 1.17241383, 1.34482753, 1.51724136, 1.68965518]]], + +... + y: array([[[[[ 0.99999619, 1.1724093 , 1.34482241, 1.51723552, 1.68964875]]], + +... + +====================================================================== +FAIL: testComplex64Basic (__main__.UnaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 370, in testComplex64Basic + self._compareCpu(y, self._inv, tf.inv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 78, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[-0.16393444+0.19672133j, -0.23999999+0.31999999j], + [-0.40000001+0.80000001j, 2.00000000+0.j ], + [ 0.46153843-0.30769229j, 0.24390244-0.19512196j]]], dtype=complex64) + y: array([[[-0.16393363+0.19672036j, -0.23999897+0.31999862j], + [-0.39999914+0.79999828j, 1.99999237+0.j ], + [ 0.46153843-0.30769229j, 0.24390188-0.1951215j ]]], dtype=complex64) + +---------------------------------------------------------------------- +Ran 3 tests in 10.269s + +FAILED (failures=2) +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1]), array([0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, + 1, 1, 2, 2, 2]), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0]), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0]), array([0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, + 3, 4, 0, 1, 2])) +not close lhs = [ 1. 1.17241383 1.34482753 1.51724136 1.68965518 1.86206901 + 2.03448272 2.20689654 2.37931037 2.5517242 2.72413802 2.89655161 + 3.06896544 3.24137926 3.41379309 3.58620691 3.75862074 3.93103456 + 4.10344839 4.27586222 4.44827604 4.62068987 4.79310322 4.96551704 + 5.13793087 5.3103447 5.48275852 5.65517235] +not close rhs = [ 0.99999619 1.1724093 1.34482241 1.51723552 1.68964875 1.86206186 + 2.03447485 2.2068882 2.37930131 2.55171442 2.72412753 2.89654064 + 3.06895375 3.24136686 3.41377997 3.58619332 3.75860643 3.93101954 + 4.10343266 4.275846 4.44825888 4.62067223 4.7930851 4.96549797 + 5.13791132 5.31032467 5.48273754 5.65515089] +not close dif = [ 3.81469727e-06 4.52995300e-06 5.12599945e-06 5.84125519e-06 + 6.43730164e-06 7.15255737e-06 7.86781311e-06 8.34465027e-06 + 9.05990601e-06 9.77516174e-06 1.04904175e-05 1.09672546e-05 + 1.16825104e-05 1.23977661e-05 1.31130219e-05 1.35898590e-05 + 1.43051147e-05 1.50203705e-05 1.57356262e-05 1.62124634e-05 + 1.71661377e-05 1.76429749e-05 1.81198120e-05 1.90734863e-05 + 1.95503235e-05 2.00271606e-05 2.09808350e-05 2.14576721e-05] +not close tol = [ 1.99999613e-06 2.17240927e-06 2.34482241e-06 2.51723554e-06 + 2.68964868e-06 2.86206182e-06 3.03447496e-06 3.20688832e-06 + 3.37930123e-06 3.55171460e-06 3.72412751e-06 3.89654042e-06 + 4.06895379e-06 4.24136670e-06 4.41378006e-06 4.58619343e-06 + 4.75860634e-06 4.93101925e-06 5.10343261e-06 5.27584598e-06 + 5.44825889e-06 5.62067225e-06 5.79308517e-06 5.96549762e-06 + 6.13791099e-06 6.31032435e-06 6.48273726e-06 6.65515063e-06] +not close where = (array([0, 0, 0, 0]), array([0, 0, 1, 1]), array([0, 1, 0, 1])) +not close lhs = [-0.16393444+0.19672133j -0.23999999+0.31999999j -0.40000001+0.80000001j + 2.00000000+0.j ] +not close rhs = [-0.16393363+0.19672036j -0.23999897+0.31999862j -0.39999914+0.79999828j + 1.99999237+0.j ] +not close dif = [ 1.25921429e-06 1.71363354e-06 1.93256051e-06 7.62939453e-06] +not close tol = [ 1.25607255e-06 1.39999827e-06 1.89442528e-06 2.99999238e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3e457b6d7e075f833c88d8931e688768102536c5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HِR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log`ِ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..62cf82e061ee450fe91cadce752a08e348a580d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 43.667s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..674c96dc1d08720e08030dcbc69d863e25b5f624 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a1753eb4cb4f2d88a388913d870258976a3c8e39 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log @@ -0,0 +1,39 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..F +====================================================================== +FAIL: testFloatBasic (__main__.UnaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 190, in testFloatBasic + self._compareBoth(y, self._inv, tf.inv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 153, in _compareBoth + self._compareCpu(x, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 78, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[-0.44000003, -0.73333335], + [-2.20000005, 2.20000005], + [ 0.73333335, 0.44000003]]], dtype=float32) + y: array([[[-0.43999907, -0.73333263], + [-2.1999917 , 2.1999917 ], + [ 0.73333335, 0.44000003]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 66.161s + +FAILED (failures=1) +not close where = (array([0, 0]), array([1, 1]), array([0, 1])) +not close lhs = [-2.20000005 2.20000005] +not close rhs = [-2.1999917 2.1999917] +not close dif = [ 8.34465027e-06 8.34465027e-06] +not close tol = [ 3.19999162e-06 3.19999162e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..47b10d4178e3623fe29129c67a27f8ebddbab2b8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c135dd8c45a5b5075c5694c34c5cb19ef1d9042a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 43.361s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a954bf56e84d24992e690508d00dd1f0b133e4dd Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3ea3b8f7fc5c53f1a3f910a4de16eeb737d67bbb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log @@ -0,0 +1,71 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_15D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 983, in testBCast_15D + self._testBCastD([10, 3, 1, 2], [3, 1, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[[ 1. , 0.54237288]], + + [[ 0.3898305 , 0.31355932]],... + y: array([[[[ 0.99999619, 0.5423708 ]], + + [[ 0.38983014, 0.31355813]],... + +---------------------------------------------------------------------- +Ran 3 tests in 14.037s + +FAILED (failures=1) +not close where = (array([0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, + 7, 8, 8, 8, 8, 9, 9, 9, 9]), array([0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, + 2, 0, 0, 1, 2, 0, 0, 1, 2]), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0]), array([0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, + 0, 0, 1, 1, 0, 0, 1, 1, 0])) +not close lhs = [ 1. 0.54237288 1.50847459 0.79661018 0.44067797 2.01694918 + 1.05084741 0.56779659 2.52542377 1.30508471 0.69491524 3.03389835 + 1.559322 0.82203388 3.54237294 1.81355929 0.94915253 4.05084753 + 2.06779671 1.07627118 4.55932188 2.32203388 1.20338988 0.97966099 + 5.06779671 2.5762713 1.33050847 1.08135593 5.57627106 2.83050847 + 1.45762718 1.18305087] +not close rhs = [ 0.99999619 0.5423708 1.50846887 0.79660714 0.4406763 2.01694155 + 1.05084336 0.56779444 2.52541423 1.3050797 0.69491261 3.03388667 + 1.55931604 0.82203072 3.54235935 1.81355238 0.94914889 4.05083227 + 2.06778884 1.07626712 4.55930471 2.32202506 1.20338523 0.9796589 + 5.06777716 2.57626152 1.33050334 1.08135366 5.5762496 2.83049774 + 1.45762157 1.18304825] +not close dif = [ 3.81469727e-06 2.08616257e-06 5.72204590e-06 3.03983688e-06 + 1.66893005e-06 7.62939453e-06 4.05311584e-06 2.14576721e-06 + 9.53674316e-06 5.00679016e-06 2.62260437e-06 1.16825104e-05 + 5.96046448e-06 3.15904617e-06 1.35898590e-05 6.91413879e-06 + 3.63588333e-06 1.52587891e-05 7.86781311e-06 4.05311584e-06 + 1.71661377e-05 8.82148743e-06 4.64916229e-06 2.08616257e-06 + 1.95503235e-05 9.77516174e-06 5.12599945e-06 2.26497650e-06 + 2.14576721e-05 1.07288361e-05 5.60283661e-06 2.62260437e-06] +not close tol = [ 1.99999613e-06 1.54237080e-06 2.50846870e-06 1.79660719e-06 + 1.44067633e-06 3.01694172e-06 2.05084325e-06 1.56779447e-06 + 3.52541429e-06 2.30507976e-06 1.69491261e-06 4.03388685e-06 + 2.55931604e-06 1.82203075e-06 4.54235942e-06 2.81355233e-06 + 1.94914901e-06 5.05083199e-06 3.06778884e-06 2.07626726e-06 + 5.55930455e-06 3.32202490e-06 2.20338507e-06 1.97965892e-06 + 6.06777712e-06 3.57626141e-06 2.33050332e-06 2.08135361e-06 + 6.57624969e-06 3.83049792e-06 2.45762158e-06 2.18304831e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..aa4927a40a904f3e72fe01ecfd7840854025488f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bd8e8b1bd953911b74bbfd0205d5feb465b29233 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 40.953s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b5d7d09d64c581a3d7c97a4819b6e1758d80837a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8604af9e421ed9bbc35f42116ff33b73637ee2e9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 56.396s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4d7da150a06668681fdfdcb0434ca2faa9715294 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e893245a8f55bfdf026549419fc350e422fa2be2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 34.147s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a2f7b24582d0c5dccd0e6de7cbb111607009461c Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..55c4cd761cfe083beb09f87b2fd4833195486fa9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_1D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 815, in testBCast_1D + self._testBCastD([1, 3, 2], [2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 0.33333334], + [ 3. , 0.66666669], + [ 5. , 1. ]]], dtype=float32) + y: array([[[ 0.99999619, 0.33333302], + [ 2.99998856, 0.66666603], + [ 5. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 18.869s + +FAILED (failures=1) +not close where = (array([0, 0]), array([0, 1]), array([0, 0])) +not close lhs = [ 1. 3.] +not close rhs = [ 0.99999619 2.99998856] +not close dif = [ 3.81469727e-06 1.14440918e-05] +not close tol = [ 1.99999613e-06 3.99998862e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..813f9ae782bbe141241be607752e69a2235ab992 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..91559685f8baf53bce2125c3cd571892eb0712d8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 40.757s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e33d033b5cf69b187fcab52a98dfb5be642e9b7f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5470b7fbbed181ac68dfcbf9f13b9f6bc6561ef5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 32.658s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7e5ac6727d0016c357a8e9cd01d915b17c0026f6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d527bc6b309e0618b363bf5725915b9a4d8b139b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 55.021s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..41494e236ba3cb8d571a6a3a7a04ea3c55835443 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d156ac2340f06d292367dcb2cd4b124717dfe208 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 88.985s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f71538c4940a90b902fb46ba533f918aadd78997 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..52261691da8d802ce3685c73a0bfb39c941fc4ac --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F. +====================================================================== +FAIL: testBCast_2D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 827, in testBCast_2D + self._testBCastD([1, 3, 2], [3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.99999619, 0.99999619], + [ 0.99999905, 0.99999619], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 5.148s + +FAILED (failures=1) +not close where = (array([0, 0, 0]), array([0, 0, 1]), array([0, 1, 1])) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4bd3f956f78b2b70a50e450446e0b20b685c666a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..083e1b32bf03de398895efcf4aa1e73f6345e3cc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 19.534s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2dd85cd8460103005f7902541593b8e19d09af0d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f2ab8b4794f542c8b990b6bb8cff344407ffbc35 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 37.520s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..929e7a2ef06500e6e16077b250f22f34c7160a8e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7caf9147c2485489a67e92b0d8d7c4cacc5d4acc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 19.229s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bd2691144e0c0acbc4eb756a198891b489b4250f Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c20d4b7ea465f20f656e8801fe17a36e97666c4b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F. +====================================================================== +FAIL: testBCast_3D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 839, in testBCast_3D + self._testBCastD([1, 3, 2], [3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 2. ], + [ 0.85714287, 1.14285719], + [ 0.83333331, 1. ]]], dtype=float32) + y: array([[[ 0.99999619, 1.99999237], + [ 0.85713959, 1.14285278], + [ 0.83333331, 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 6.461s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0]), array([0, 0, 1, 1]), array([0, 1, 0, 1])) +not close lhs = [ 1. 2. 0.85714287 1.14285719] +not close rhs = [ 0.99999619 1.99999237 0.85713959 1.14285278] +not close dif = [ 3.81469727e-06 7.62939453e-06 3.27825546e-06 4.41074371e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 1.85713952e-06 2.14285274e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f085718e3cb06c3b55cc6fd7281fac9cfe9b4f27 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0d3237b92f20d2b4d7493b7b60f9e287dcb7cb9e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 19.307s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c357b89919609ea2b5fd5aa603edbf9313e2e6b1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9dc6e0d97c8ce3748669f6b52e511139a5b9a256 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 36.781s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..68937db1a7b22dbca79808107472b46f38c49e75 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c5c506a160c6f3f9eedd148c58af33b21cd0d048 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 22.655s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6e1ddceb69aaa0eefa33d4bc6c2dc5550226b8fa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..57e3b760ecab0adaa24f0046e8e377a705f9f7c4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 19.920s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..83f6b627e6690cfd875e489aca65ab6431b65859 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4cf2e58889699ccc989cae02b26c2720a28dfa3f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log @@ -0,0 +1,45 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_5D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 863, in testBCast_5D + self._testBCastD([1, 3, 2], [2, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 2. ], + [ 1.5 , 2. ], + [ 1.66666663, 2. ]],... + y: array([[[ 0.99999619, 1.99999237], + [ 1.49999428, 1.99999237], + [ 1.66666508, 1.99999809]],... + +---------------------------------------------------------------------- +Ran 3 tests in 31.355s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 1]), array([0, 0, 1, 1, 0]), array([0, 1, 0, 1, 1])) +not close lhs = [ 1. 2. 1.5 2. 0.5] +not close rhs = [ 0.99999619 1.99999237 1.49999428 1.99999237 0.49999809] +not close dif = [ 3.81469727e-06 7.62939453e-06 5.72204590e-06 7.62939453e-06 + 1.90734863e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 2.49999425e-06 2.99999238e-06 + 1.49999801e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e75a44caf4e0043250408eb20756747f739e8422 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2bb169e3bdc66ee8be6e8f869699a6210d3f7fbe --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 20.422s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1470d83cc8d798ffbe08a7eb99f841fa64af6f56 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8a0f2f428e9c2d5c884d83868b141fe33c671d83 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 39.769s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4f8c1cf1d380a35ce48c569a4bb11e4c2328f19d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..14627e401336dc7d2eee7f19d9b5271f627df82e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 44.691s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d0e1985b9d52de7974ca6bcb32c8495e2bbb8155 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2a35faa5a9ceb50452dea2f00b9f4f5c5cc8ebe9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log @@ -0,0 +1,45 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_6D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 875, in testBCast_6D + self._testBCastD([1, 3, 2], [2, 1, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 1. , 2. ], + [ 3. , 4. ], + [ 5. , 6. ]],... + y: array([[[ 0.99999619, 1.99999237], + [ 2.99998856, 3.99998474], + [ 4.99998093, 5.99997711]],... + +---------------------------------------------------------------------- +Ran 3 tests in 45.709s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 0]), array([0, 0, 1, 1, 2, 2]), array([0, 1, 0, 1, 0, 1])) +not close lhs = [ 1. 2. 3. 4. 5. 6.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474 4.99998093 5.99997711] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05 + 1.90734863e-05 2.28881836e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06 + 5.99998066e-06 6.99997690e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9feb652dd39e8758986eb21edb6dfd9cda7a61d8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/decode_csv_op_test/test.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1292d2d0d66576f77a7b8d90f8c945267a51898a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log @@ -0,0 +1,21 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] Field 0 in record 1 is not a valid int32: 9999999999999999999999999 + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Quoted field has to end with quote followed by delim or end + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_STRING], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Field 1 is required but missing in record 2! + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expect 1 fields but have 2 in record 0 + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Field 0 in record 2 is not a valid float: 3.0adf + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Field 1 in record 1 is not a valid int32: 234a + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Unquoted fields cannot have quotes/CRLFs inside + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_STRING], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +.. +---------------------------------------------------------------------- +Ran 16 tests in 0.677s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..eff4abc224ebfd691a6f4b42f212d6a4dbdcd7a3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9575c8c5433839ab376d6ddbcfb87e4097238a27 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/decode_png_op_test/test.log`^ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33221cb62fa19042ca6ecf18f00a0c04ee5c91cd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.050s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3729b5ef031b4bc9dc4cc8f713bf4087826b7a2d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ce41b74fe2d9a516f6b84f76ef8d469972484df6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/decode_raw_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c27ec4da5a2759dd418c5845a9d10c7ae2215b64 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Input to DecodeRaw has length 3 that is not a multiple of 2, the size of int16 + [[Node: DecodeRaw = DecodeRaw[little_endian=true, out_type=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] DecodeRaw requires input strings to all be the same size, but element 1 has size 5 != 6 + [[Node: DecodeRaw = DecodeRaw[little_endian=true, out_type=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.080s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fa2d92ed183f53f44553f09958c6c08c98bd308 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a22c0a9160bd69325b23d9535b28c2420d994b5b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/denormal_test/test.log`] \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..50ffb3c055dac2ce3d97e1cdceb0a37039bbd312 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 0.187s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6cb8129519a83a1e1f1dacbb590d01fb9e4feb85 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6834a013373f233a8b23442574f18b3e2a98ca1e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log`] \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6172957de2f80de8d1277367eca99d3c38143444 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.738s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..38d1f71b2ee3e5f8f74e9c8383b798ffb0b24057 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ecc33dff7a9c6451ccf118bec38e33884434f1cb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/dense_update_ops_test/test.log`u \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d1fa0d668e63b3b196546fe74ead355d7a39e0ac --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: AssignAdd = AssignAdd[T=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, Fill_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: AssignSub = AssignSub[T=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, Fill_1)]] +.... +---------------------------------------------------------------------- +Ran 7 tests in 3.201s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..303bd2c02d6ebe8332c8c510ac403c043fcaffa5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8355fe3b85b930a264a9bd39ca22b6727b6ba808 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/depthtospace_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e9887a52119dd1a22a596af2a1a814f04d9af0c6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 4.529s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..17fdecf2069f1a29e2c5c4b77bc83d81b2543c4f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3392326893f4ee086468e80249291898f65abb20 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..231569b42fffa566775eb2d3728c4c696f779c76 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0d75569058706667821c52e4fdd00907845471a8 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9168bc429e2d11efcab3a4d1589ae5b099070f4e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log @@ -0,0 +1,63 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +FF..E tensorflow/core/client/tensor_c_api.cc:485] The determinant is not finite. + [[Node: BatchMatrixDeterminant = BatchMatrixDeterminant[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixDeterminant/input)]] +... +====================================================================== +FAIL: testBasic (__main__.DeterminantOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 48, in testBasic + self._compareDeterminant(np.array([[2., 3.], [3., 4.]]).astype(np.float32)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 41, in _compareDeterminant + matrix_x, tf.batch_matrix_determinant(matrix_x)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 34, in _compareDeterminantBase + self.assertAllClose(np_ans, out) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array(-1.0, dtype=float32) + y: array(254.99993896484375, dtype=float32) + +====================================================================== +FAIL: testBasicDouble (__main__.DeterminantOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 59, in testBasicDouble + self._compareDeterminant(np.array([[2., 3.], [3., 4.]]).astype(np.float64)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 41, in _compareDeterminant + matrix_x, tf.batch_matrix_determinant(matrix_x)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 34, in _compareDeterminantBase + self.assertAllClose(np_ans, out) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array(-1.0000000000000004) + y: array(255.0000000000001) + +---------------------------------------------------------------------- +Ran 7 tests in 0.281s + +FAILED (failures=2) +not close lhs = -1.0 +not close rhs = 254.999938965 +not close dif = 256.0 +not close tol = 0.000255999938965 +not close lhs = -1.0 +not close rhs = 255.0 +not close dif = 256.0 +not close tol = 0.000256 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd6b14362dd4358e3b8dd73d1704b6e450cd20f6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2e43018b8e3f047e342eb34cc02a152e2db726c5 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..afa7e499dc4faf87b42a5e20df12656a732b6a10 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 1-dim, received shape: [] + [[Node: BatchMatrixDiag = BatchMatrixDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixDiagPart = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] input's last two dimensions must be equal, received shape: [3,2] + [[Node: BatchMatrixDiagPart_1 = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixDiagPart = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] input's last two dimensions must be equal, received shape: [3,2] + [[Node: BatchMatrixDiagPart_1 = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 1-dim, received shape: [] + [[Node: BatchMatrixDiag = BatchMatrixDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixSetDiag = BatchMatrixSetDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, BatchMatrixSetDiag/diagonal)]] +E tensorflow/core/client/tensor_c_api.cc:485] must have diagonal.shape == input.shape[:-1], but received input shape: [1,1] and diagonal shape: [] + [[Node: BatchMatrixSetDiag_1 = BatchMatrixSetDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixSetDiag_1/input, _recv_Placeholder_0)]] +.... \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b9b99b33d12cb09ca322b220f7b5652f60e3295d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/division_future_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5e92b7e518f9fe616236d2171c0dec8274024c3f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 35.545s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..38b55fd004f995b4e4bdc8e16aae51eda63e1277 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4b22523c737265a4b4e0a7c63d9336fd0cf80f5f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/division_past_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0d54f35bfca8b3386def10caa70c4c9bb4a68dd0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 34.647s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a90fc2d1218fd9b8b665d1cac6bc7a9987211e7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b150b706754e5d118f44301b505ff80e58dff11b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log`g \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..dc0cb9d878775aef9ae04ea34f69f5b75ea98a5e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log @@ -0,0 +1,23 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] partitions[2] = 99 is not in [0, 4) + [[Node: DynamicPartition = DynamicPartition[T=DT_INT32, num_partitions=4, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1)]] +...E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,0] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,1] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,2] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,0] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,1] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,2] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] partitions = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, DynamicPartition/partitions)]] +.... +---------------------------------------------------------------------- +Ran 8 tests in 3.789s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..68d2b4178c4f115e912446df0b33d7c482e64506 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4abf3660079fd7b5abe75b952c491a99542368a6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status @@ -0,0 +1 @@ +HɱR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log`ɱ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b69164f9fd7e855bef53138c0775f0b93fa6746a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......... +---------------------------------------------------------------------- +Ran 9 tests in 0.378s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad193abd50d62255bba1f9fade6f2cf3f5351642 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6cac96cff7eecae0121ad7cb51c1eb935ad59a17 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/edit_distance_op_test/test.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..8a8a4c6bf4812bb24a2372e5ffe49d3e08f1feb8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 0.645s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad927fdd588cf09c9d7dc11b28331f0d273aa0b2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..83f6b32b64430a820d6434b7094dde58b7610e9f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +H/R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log`/ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3c0bd34b787b6a31154d243c109be54879a91837 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.053s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c8d571db5e112eea5203e99529d9643aae7bd680 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +H(R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log`( \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a35abcacfb05042e1c34087ab309b6c9183ced46 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +H)R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log`) \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ec580eed43553ae10bc9637526abef986a8af468 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.032s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e3bae61fa78f04e8b44b323b15227e46a2f07607 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +H$R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log`$ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e2c36e15dbaced7c6d16c9d596c910b4ee98e8ef --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.093s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e33ba67d897a03481a25ea36b7fd67e93e4ed6e6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HRR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log`R \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..50cba0d29425b20d94613a5b4a1ccae294b9921b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 2.708s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fecd14c0af8ebe6de1ab44acd259b32fbb350df1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +H?R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log`? \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a4f2133e6f4bb9208a0dcd6c20e092eda73649fe --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 1.346s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e6c33ab5f2313db6ca7f3f0351d0a39e932a13a5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6057a221f6bde7b3eb0aec64f3d9d0b7964a82c2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 4.135s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..23477aaeec87a76f2824f26014b1e11665cbc0a5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +H+R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log`+ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..46bfef5d956adf6f66e596874bcba49066a9ca7b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.333s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a8f3a549a2e1e9ca6920445845d1a1209637e17 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +H+R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log`+ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7e0489f2aa3d76582dbb534f2b86cdc273f76b5a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.335s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bd0f33f274263a169df5476634732513b78a2c65 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +H3R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log`3 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b5d520dc42d9a0e55b699e76af0c50ccbd16b3b4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.677s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c2282a77eea4484d3d3eaf680f4a5b6c2002f5f9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..28373fa56e1c7f8387df9b1b0a1f9e71b1971656 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.055s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f5b7980470ea7b1e130af8b488b23d5ddd14ee9a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..55fc90b71f1fbac5efc708e5fa4bccf525b64e85 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.291s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..93a3b06515112fb1298723a409d96cfc19c21f92 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +H4R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log`4 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..12c8df6b877a9a14276a363774eeb6beb2063b29 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 2.131s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bbdbb35601afe837ffb4c472ad1388a98ebfd134 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..62283a2dc3efd8eddf53a43b76ce98689c996328 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.241s + +OK +Construct ids (2,) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..264de6959d75d003321597a140e4c8972675d07f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +H'R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log`' \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..28c646c10cce95b438f58e045ec0b44fcf9c9132 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ae07e936883ad89e4f61c87e70e97fd6ebe477bb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f92ddaedea0707adc43aa2848f8b692db7877213 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.509s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..33ec6f0a8b0e489aa1922687c2850423d26a4002 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +H + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..70397e129ebcec28a2da5080b7030b50c51e8d32 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +H=R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log`= \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d59dd36798123d44dd9059478ee401e881007df8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.662s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..46e35518c5b0968e23c5a191e0ac1a21dba20513 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +H3R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log`3 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dc8dc5d0583358125db45ce19d6356a8cba6e683 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.271s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f36532da0f209332cc85b9ef1fccddb6af3ad6d5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +H*R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log`* \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..25cdf99f6f2bb6ca2caecc9b3bd07c1c9ca4c886 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.046s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7349633d200bccad904e7cb5cc6256405822fd8e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +H.R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log`. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..02a3f2004f4467315e87624338300d16d73f1378 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b8b05fa44a914aac252db8768b148450ebad1c63 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.061s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3597d8db16402209d0ddd551821fcd33bc8f9c60 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +H5R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log`5 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8b36175bfd3e8f56e3636e507130bb8f071fe2b6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +H6R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log`6 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97aaa4eeb1a321cd9d49ea60ca81f88650b00810 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +H.R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log`. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5c06f8ed5c6acda0f10718f6a1add03f48e9637a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +H.R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log`. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ee5779e6718c6f1907a2b9c9edd4e9a5697f5376 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +H?R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log`? \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2fb6edf7d0a7dcb175a336f36faa80c319018bd7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +H;R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log`; \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d88f5c61ca65c76d25ed3e00449cf82d7727efaa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +H4R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log`4 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..081673bd398817eb78133157b12295f3e01e8504 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +H0R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log`0 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..70e05bebe155397ba831274086d55e2540759109 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a27c223d8da6955192f99cdccc1c6e48d11f0562 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +H˃R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log`˃ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b02079730ea7dcd9556cbb971fd8fb6db9abf91c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +H7R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log`7 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fc20076650a11a2517a1db778a29cda1ea833e84 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.067s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..83ff6fa3c76d51814fb2b4df31e42fd8173ac74b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8655b534278f884b92d5eb8da8af94cc2d30c4ae --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ca293431f52928083c04eee80533a4081d9fbc6a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e68433694b470ba917c912305e04613b1af8962f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +HMR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log`M \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..826bbc343aee168932640780bce805870bd47e73 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +H(R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log`( \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cb064d2cefcecb4ffd20797b2cab81d6c18c4c1f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +H)R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log`) \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5a6d7a33f0b402f36bb66cd079a0b3041ce4c645 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ab1c4116c702d9f5ac41d0f3ed5bfcbbc2ac066b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..19048404acc08e54c450bc2243a92a76bfc36adc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +H,R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log`, \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..aa3502a0986321c162499f13da7d682ed17b7e6e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +H.R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log`. \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..796692fc4709ea21db6a51a686e3d3d35d540742 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +H8R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log`8 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c448564ec59813f6ed9f72fd28a4e283864f991e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.075s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f85c8b936cdaed81269e2d17fd8d636511057c05 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d9a8604a946720bda2677b17c87a4561d160b995 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +H=R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log`= \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..22177d7469a3cc2e4aac65cf05f38da336ded97d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.254s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e0cdfd58697ef4accd18efc3c753d2975a02b5ab --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +H9R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log`9 \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7b44797ca140e479367d29fb50cfb89058505147 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.073s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ee69b58861c2f4e673ac0a1fe1706d9016ce8a44 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +H/R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log`/ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..448f3afa2c81425284d64ccddcf7013520fd1265 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1cb7581092b0af6583cd38a74f507ef320a16d02 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log @@ -0,0 +1,91 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, + 2, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, + 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9]), array([0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, + 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, + 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1]), array([0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, + 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, + 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2])) +not close lhs = [ 2.96397495 2.68671227 2.37682676 2.97555017 2.5141499 2.84991145 + 2.6719923 2.90225744 4.36566305 4.96148205 5.13281298 5.0320406 + 5.02637863 4.92853546 3.92143011 5.24014378 4.03113127 4.40025806 + 4.87013149 4.88625717 4.46953201 4.68179131 4.01604176 4.41730404 + 6.2493515 6.30387402 6.1673522 6.4866519 6.2883544 6.83184052 + 4.58651638 6.35881901 6.5850873 6.28686333 5.83861828 6.56684256 + 5.70047522 6.06906986 5.24406528 6.27148724 5.33658934 6.27192402 + 5.90459156 6.00007057 6.54654074 5.64751053 5.33368492 6.6700201 + 3.0206275 2.70945978 2.52486372 3.60808253 2.41674089 2.88701725 + 3.15754271 2.73110104 7.88023615 7.1884861 6.52089739 8.08734131 + 7.20234203 7.38520002 6.12847519 6.8085022 ] +not close rhs = [ 2.96396375 2.68670201 2.3768177 2.97553873 2.51414037 2.84990048 + 2.67198205 2.90224648 4.36564636 4.96146297 5.13279343 5.03202152 + 5.02635956 4.92851686 3.92141509 5.24012375 4.03111601 4.40024137 + 4.8701129 4.88623857 4.46951485 4.68177366 4.0160265 4.41728735 + 6.24932766 6.30385017 6.16732883 6.4866271 6.28833055 6.83181429 + 4.58649874 6.35879469 6.58506203 6.28683949 5.83859587 6.56681728 + 5.70045328 6.0690465 5.24404526 6.27146339 5.33656883 6.27190018 + 5.90456915 6.00004768 6.54651594 5.64748907 5.33366442 6.66999483 + 3.02061605 2.70944953 2.52485418 3.6080687 2.4167316 2.88700628 + 3.15753055 2.73109055 7.88020611 7.18845844 6.52087259 8.08731079 + 7.20231438 7.38517189 6.12845182 6.80847645] +not close dif = [ 1.12056732e-05 1.02519989e-05 9.05990601e-06 1.14440918e-05 + 9.53674316e-06 1.09672546e-05 1.02519989e-05 1.09672546e-05 + 1.66893005e-05 1.90734863e-05 1.95503235e-05 1.90734863e-05 + 1.90734863e-05 1.85966492e-05 1.50203705e-05 2.00271606e-05 + 1.52587891e-05 1.66893005e-05 1.85966492e-05 1.85966492e-05 + 1.71661377e-05 1.76429749e-05 1.52587891e-05 1.66893005e-05 + 2.38418579e-05 2.38418579e-05 2.33650208e-05 2.47955322e-05 + 2.38418579e-05 2.62260437e-05 1.76429749e-05 2.43186951e-05 + 2.52723694e-05 2.38418579e-05 2.24113464e-05 2.52723694e-05 + 2.19345093e-05 2.33650208e-05 2.00271606e-05 2.38418579e-05 + 2.05039978e-05 2.38418579e-05 2.24113464e-05 2.28881836e-05 + 2.47955322e-05 2.14576721e-05 2.05039978e-05 2.52723694e-05 + 1.14440918e-05 1.02519989e-05 9.53674316e-06 1.38282776e-05 + 9.29832458e-06 1.09672546e-05 1.21593475e-05 1.04904175e-05 + 3.00407410e-05 2.76565552e-05 2.47955322e-05 3.05175781e-05 + 2.76565552e-05 2.81333923e-05 2.33650208e-05 2.57492065e-05] +not close tol = [ 3.96396354e-06 3.68670180e-06 3.37681786e-06 3.97553868e-06 + 3.51414019e-06 3.84990062e-06 3.67198209e-06 3.90224659e-06 + 5.36564630e-06 5.96146265e-06 6.13279326e-06 6.03202125e-06 + 6.02635964e-06 5.92851666e-06 4.92141498e-06 6.24012364e-06 + 5.03111596e-06 5.40024121e-06 5.87011255e-06 5.88623834e-06 + 5.46951469e-06 5.68177347e-06 5.01602653e-06 5.41728741e-06 + 7.24932761e-06 7.30385000e-06 7.16732848e-06 7.48662706e-06 + 7.28833038e-06 7.83181440e-06 5.58649845e-06 7.35879439e-06 + 7.58506212e-06 7.28683926e-06 6.83859571e-06 7.56681720e-06 + 6.70045301e-06 7.06904621e-06 6.24404493e-06 7.27146335e-06 + 6.33656F +====================================================================== +FAIL: testEmbeddingLookupSparse (__main__.EmbeddingLookupSparseTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/embedding_ops_test.runfiles/tensorflow/python/kernel_tests/embedding_ops_test.py", line 492, in testEmbeddingLookupSparse + self.assertAllClose(np_embedding_sum, tf_embedding_sum) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/embedding_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[[ 2.96397495, 2.68671227, 2.37682676, 2.97555017, 2.5141499 ], + [ 2.84991145, 2.6719923 , 2.90225744, 2.44838333, 2.73965859]], +... + y: array([[[ 2.96396375, 2.68670201, 2.3768177 , 2.97553873, 2.51414037], + [ 2.84990048, 2.67198205, 2.90224648, 2.44838333, 2.73965859]], +... + +---------------------------------------------------------------------- +Ran 1 test in 0.299s + +FAILED (failures=1) +873e-06 7.27189990e-06 6.90456909e-06 7.00004739e-06 + 7.54651592e-06 6.64748904e-06 6.33366426e-06 7.66999528e-06 + 4.02061596e-06 3.70944963e-06 3.52485404e-06 4.60806859e-06 + 3.41673149e-06 3.88700619e-06 4.15753038e-06 3.73109060e-06 + 8.88020622e-06 8.18845820e-06 7.52087226e-06 9.08731090e-06 + 8.20231435e-06 8.38517190e-06 7.12845167e-06 7.80847677e-06] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..d838a994c5cce88e54b38980f57a67c41642eaf6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6050a9cfd5592f6965943af648dba4c2b83c6f52 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..226352d04441951359f9e48dfcdf10875a67a292 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 31.235s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e2aa970d5da28596c57d4ac0ce40626e4774ad49 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b2e16d620e1a09811bdaef1c2493160d7315dfc5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... +---------------------------------------------------------------------- +Ran 5 tests in 0.810s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7e9ec9f1f5b2a66db45d2c7b867cfb53c470788b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..66591e9732fe58cf879358f1cff70cc2287a0747 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/fft_ops_test/test.log`f \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..58bdf65faabfaf7cd884b3260d781b73ebf18764 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............... +---------------------------------------------------------------------- +Ran 15 tests in 0.039s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..8598d5c0f2534e42c0142921715ddb7e76c7b87e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0f54fcc5aa90caed76523a38831c46054e0733fc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/fifo_queue_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..09fe7c6f4f03edea896f594843f62042a01405c3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log @@ -0,0 +1,71 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_4_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_5_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_7_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_8_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_9_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_11_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueUpTo/n)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_18_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +..........E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [2,3,3], got [2,3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [2,3,3], got [2,3,4] + [[Node: fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_EnqueueMany/component_0, _recv_Placeholder_0)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_36_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_37_fifo_queue' is closed. + [[Node: fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_EnqueueMany/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_39_fifo_queue' is closed. + [[Node: fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_enqueue/component_0)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [3,3], got [3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [3,3], got [3,4] + [[Node: fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_enqueue/component_0, _recv_Placeholder_0)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: fifo_queue_1 = FIFOQueue[capacity=15, component_types=[DT_FLOAT], container="", shapes=[], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has component types float but requested component types were int32 + [[Node: fifo_queue_3 = FIFOQueue[capacity=10, component_types=[DT_INT32], container="", shapes=[], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component shapes [] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component shapes [] but requested component shapes were [[1,1,2,3]] + [[Node: fifo_queue_5 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,3]], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [] + [[Node: fifo_queue_7 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: fifo_queue_9 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,4]], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component types float but requested component types were float, int32 + [[Node: fifo_queue_11 = FIFOQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +................W tensorflow/core/kernels/queue_base.cc:294] _57_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _57_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: fifo_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue_1, fifo_queue_1_EnqueueMany_1/component_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: fifo_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue_1, fifo_queue_1_enqueue/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@fifo_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, fifo_queue, fifo_queue_1)]] +...W tensorflow/core/kernels/queue_base.cc:302] _71_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Timed out waiting for notification +.... +---------------------------------------------------------------------- +Ran 78 tests in 14.760s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..5acc69a9559b4571d921d560f945b0cb6a98d610 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..07248168819e6d755ecb9169daa8f2b97fb612f6 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..02095baeeb47e80c3809fb18584a23fd15b251ec --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log @@ -0,0 +1,153 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_6"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite/RefEnter, map/while/Identity, map/while/add, map/while/Identity_1)]] +E....E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_3"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite_1/RefEnter, map/while/Identity, map/while/mul_1, map/while/Identity_2)]] +E............. +====================================================================== +ERROR: testMap_MultiInputSingleOutput (__main__.FunctionalOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 188, in testMap_MultiInputSingleOutput + received = r.eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_6"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite/RefEnter, map/while/Identity, map/while/add, map/while/Identity_1)]] +Caused by op u'map/while/TensorArrayWrite', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 371, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 186, in testMap_MultiInputSingleOutput + dtype=tf.int64) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/functional_ops.py", line 366, in map_fn + swap_memory=swap_memory) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1971, in while_loop + result = context.BuildLoop(cond, body, loop_vars) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1860, in BuildLoop + pred, body, original_loop_vars, loop_vars) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1810, in _BuildLoop + body_result = body(*packed_vars_for_body) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/functional_ops.py", line 359, in compute + tas = [ta.write(i, value) for (ta, value) in zip(tas, flat_fn_values)] + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/tensor_array_ops.py", line 214, in write + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/gen_data_flow_ops.py", line 1456, in _tensor_array_write + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +====================================================================== +ERROR: testMap_SingleInputMultiOutput (__main__.FunctionalOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 169, in testMap_SingleInputMultiOutput + received = sess.run(r) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_3"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite_1/RefEnter, map/while/Identity, map/while/mul_1, map/while/Identity_2)]] +Caused by op u'map/while/TensorArrayWrite_1', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 371, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/kernel_tests/functional_ops_test.py", line 165, in testMap_SingleInputMultiOutput + dtype=(tf.int64, tf.int64)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/functional_ops.py", line 366, in map_fn + swap_memory=swap_memory) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1971, in while_loop + result = context.BuildLoop(cond, body, loop_vars) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1860, in BuildLoop + pred, body, original_loop_vars, loop_vars) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/control_flow_ops.py", line 1810, in _BuildLoop + body_result = body(*packed_vars_for_body) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/functional_ops.py", line 359, in compute + tas = [ta.write(i, value) for (ta, value) in zip(tas, flat_fn_values)] + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/tensor_array_ops.py", line 214, in write + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/ops/gen_data_flow_ops.py", line 1456, in _tensor_array_write + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/functional_ops_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 31 tests in 19.188s + +FAILED (errors=2) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9217287bca1b78ab3855f5281c7b5e0c43438a4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..61dc79f562a1e30659da2b071800f2c6d784f86e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/gather_nd_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..be053b5442287a0fdc620df0709e71ed24391878 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] flat indices[1, :] = [7] does not index into param (shape: [3]). + [[Node: GatherNd = GatherNd[Tindices=DT_INT32, Tparams=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](GatherNd/params, GatherNd/indices)]] +......E tensorflow/core/client/tensor_c_api.cc:485] flat indices[1, :] = [7] does not index into param (shape: [3]). + [[Node: GatherNd = GatherNd[Tindices=DT_INT32, Tparams=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](GatherNd/params, GatherNd/indices)]] +...... +---------------------------------------------------------------------- +Ran 12 tests in 0.646s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a15db3f738408638358cd1ba25723e4c435885f8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c2da89b915a7648b438b2a493793a379edee0b26 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/gather_op_test/test.log`u \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..73102c671798c9c83459cce2faabe3f7fb6aeed5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] indices[0,0] = 7 is not in [0, 3) + [[Node: Gather = Gather[Tindices=DT_INT32, Tparams=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Gather/params, Gather/indices)]] +.......E tensorflow/core/client/tensor_c_api.cc:485] indices[0,0] = 7 is not in [0, 3) + [[Node: Gather = Gather[Tindices=DT_INT32, Tparams=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Gather/params, Gather/indices)]] +....... +---------------------------------------------------------------------- +Ran 14 tests in 0.700s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bbb6f21dc81d124beac00e83d5a4058ba2cb6e4f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f5bea134344c73585250ca8e8b826ba5b47c6e7a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/gradient_correctness_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a86048f74550182070b1937905cc98388454cdf6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.116s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1436739ae5d58261590ba9119449925c7cdcff84 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..63410d3389d9344b8bcbbb06aa29e306c872f014 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/identity_op_py_test/test.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6b126cd1875b77ddd307ccbfdb6c82dbb871644d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 0.158s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e78e98d58187d823d800e79d08e56fc9567877f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d25e29a0ffaf509ec1619bcb3c60173afc6e42f9 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..299d50de80bcc9b921c38416ce8bd897fb3bf024 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/init_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..22e065b08ee087d85cf838e1d9831e6e18151cd5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....................................... +---------------------------------------------------------------------- +Ran 39 tests in 6.311s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2a6b18f69c65d68d54b78c0dcaf05be41c99b1d1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..30694d082c540da70516c4bdb9de9676311c39d6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status @@ -0,0 +1 @@ +HmR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/io_ops_test/test.log`m \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..42f899b0f06b14eed60271b77f100afd77e19689 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.345s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6f886e00f7ef4bd43480848036a277d3f196957 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9af82ceecbed7cd5a348c1679784a37360103526 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log`U \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0b7319e8ac57b372ef83016ff022cc6550bc4ad9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.469s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b6699cd0f723a1079b8dd3696c054adfc2086c3f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4e7680c4b621815a343dddd6beb33f321ab96439 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.926s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a82c7537241c81f94a1928c228beb678d43bbb70 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..feb375c4e9cac1808194f0bd0d83a6e06a62b764 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 9.266s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cea7fa9a36bbe3e7e4ea0722ab41d87dcb9a7500 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HQR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log`Q \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ebe27aa8fdf73ea8dbd036ed1d70c9d94486247f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.390s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7af6d4668300dddcadd02e383f69bace7e749dfa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HLR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log`L \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a091aa41386e981dd1b21ade0c2855b29131b9ff --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.312s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bd9b8a04183389e8f57da1092868fe28e4c51674 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log`u \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ad96808d941b8ba45c56754daef6600aa6213246 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 7.833s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..55b559c185766612c239b6dea4ab22ef396038b5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HvR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log`v \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1fb27583d30ac2a98b672c344c147093910e9cd5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.043s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7c824800a2f1cdca79f0d3eff351122a0b892d04 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9e068eaece31d9a4161f83a54ba788f8e1b31bd0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 13.462s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cb300327980f1d78d1daccd81dd6ef774d244ff0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d04a972fbaa99c4c2010eb979b76147bb418b2be --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 11.286s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0b8fde01ed40273c797858012ee95e53b07e99c7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +HQR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log`Q \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5ca16b29d56d5dc6fa163e410b107d5eb7409340 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.157s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7246cfe307bb322881005d4452cd147c4d9b3894 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +H|R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log`| \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ddea902e43daa21b7715f5486684cba038f5cc5f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.629s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..366bca886895e3dc3b8ee899519fff078bd4988f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..042578c00de2c2b9fbce177c23ed2e9da5cbbc83 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.054s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e43a821bc34f9f4d4dc4b48b44af4719a178b449 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +HMR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log`M \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5a45f6d859d3ddfbc9a08f2117527af05a94f1c4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.335s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1de594fd513cf9d2ab2ec15435575c2320127635 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HFR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log`F \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4567557448d143cedd09d5ed95e42fafc42827cf --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.877s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d124c8b860508fb3d4638eb363541d12cc2a136b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..27814b9c3a8ff7e476c3a23aa91351f3ac6b12bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.829s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d9c5d3e2cb7f55b20d9fc2451efe404f637b6af1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2c7818069211685fe03d3bb2def7776f3089f9f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.459s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5914faa886eba9a0e11d9892d2fc8a0d0262d17c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log`g \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..827d1bf7eb3e99c25b294bc2eabe8ef262333667 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.717s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cb059618ce3e9a2be19bf7402cf5b3fa950def38 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HbR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log`b \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..035f0071a52f924e01a76a0980af53e2a67fa252 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.503s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..65dec0f4830e2e9b362bc11c242cb01411fa138a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..43aea6178c53170f2d55d4edbf3290fff8ede2f1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.653s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..68a0b0143913990df9df8d12c5aed364cb55b04b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HlR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log`l \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cb21df07236dd438d6e36f75638282582906e957 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.393s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e7e5233fa5e9361eb1fad7d9f208f5f2a47728ab --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..da0c156d210194d9b29ea036277e453c45438837 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.187s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..dd34a09415d771f88f9e56d90fae0e97fd3a2555 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a69a33356043ac32d87c03f5e7d121795ca55add --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 9.461s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c215727d8168467b541fafd964b1f14ac1c8866f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7b3162b23a025a2a8d16d96151e7e5be31bb3a89 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.470s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a2986d97f8d9cd00409bee6536a28e932f338305 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3133e6422e35b9d51a8d1dbf225d5ffce499ae7c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.308s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5849958f00eb5793671651ef1dae42dce0183b27 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2513fe887b808bce0382f0343f03b0d7a4bc582c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.029s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..00d0328ba33624d1fbec2b086953ad519507890a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c4bf6698a4c821ec1f7a00ac91d7de6e3897266b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 9.643s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..40bc6296b18f5ccb5d0944267909ce1dd98230a0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6b803bad5fa20a742e98dd0a830c7c32b352b8ba --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 9.484s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a5520714c100b9fe347aeefc73b984a3a5a0d573 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +HER/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log`E \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4e81320fff79dbb143457c8564663653816dd445 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.890s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3a5180d5478697243fc3717e6bf36a955512fffe --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HHR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log`H \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f1d15fed91a4b91e2876cf28f0eba1c91829f48b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.688s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4e91dac190b57fc9f8e0a282918f39dd282c07ba --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HCR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log`C \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..48f996e869785b145d53b2b9bff42665ca567e9b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.354s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b580d6ab29ac0ba2da92c81c5e3fae33363da670 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HBR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log`B \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e46bbacb574c6a9e7b8f17c257f4f37435d99496 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.321s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3af467dd49998929c7fa09df2fcc3fd3bd9eba8f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b59535637443da1a84f89a44d3236f45e1195e65 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.933s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..18fd45781b2a9c091e6d517ddab7cfb25ac7362a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HhR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log`h \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..08fd627fec8fb1f260421019b73a079bc2bd9765 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.770s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ff48600e7aa9a79473e07567ec9382271c7a7214 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log`` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1aa97d415b62245fbfe07919171d6def2593d630 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 5.135s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c1058fc8661d7f9d879e0067bcae286d58e87300 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1864b1e7cf6e94b8f7b92ac5a83df58040e3f205 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.465s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..51d3fdb03de991ca720bb293a21ea2a29bccb2d0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HNR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log`N \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c54c61b395741d1c4b70dff350f8f6c3f092477a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 2.346s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..119eee139d4438a7d2e7fb96af0d8639631a1082 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2fd02d65ba0d6d27d4c9b2dbbefc2e075b9f72ab --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.978s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f6a8b7ffd15f422e93d495beb28d10ac6990a519 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HFR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log`F \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c06fab3ce4e077883a95f14d99350989aa9b6ca1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.572s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc9ceaf4969136cebb2cc6a8910ec29ae9fee9dd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HmR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log`m \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f99965b27504612be5f9a969bff3617c026b25ec --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 6.439s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5914523553c353854a4397b3be95a8153e4bc5f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HOR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log`O \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..83a01f63f58b583adb3169f28f179d13475ca01a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 2.842s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7e6fcbd4e1171510df6276c217657dc0de787e1e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HPR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log`P \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0fafd15436585583b1d7cef5e54832614c44b363 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.006s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4015c77c48d517fb0dfd7c34e53e1da3e6c33c1f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HdR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log`d \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..622f00f6848d4e83ff60aded9fb4975a9b616912 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.571s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1af4efc40c57092c1b6ee2a994a1fe010cf9a3dd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log`U \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..88ebefd98c42f5f4d8c887007529b42b27e59fa1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.919s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4fc6d829350b1a617e6d2752dc21abaf725925e4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HcR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log`c \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..71010f95314710b1fb60efecae3913beb0ad1f05 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.594s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2c789bb1af2637ba58afff0355484f39b9925e8b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5068bd32cd305745b02a5b407b52149a706aaf32 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.806s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5546cf1d13e18af1a8e1db58603d5eacc86db562 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +HER/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log`E \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c7b4de0712ac02e837a6119c265b008af5fa64b6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.553s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b6782c729fb6a7e2b238657bf4b8230762aae996 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..78e6a4fa5438359ab845086e21648ac1d7831265 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.492s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f38f5d9e619dac98419c183a3c0045a09d3ec558 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HBR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log`B \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b8bad374982f7f047acdbfdf4a5a05a3b8936ced --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.002s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0a091cc0a55585e6d39dc87d88e7acfb219aeb15 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3c714a9f3c3073729618e3ad2dcc28a439d0c13f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.046s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7fb888bd5798ba8a9559fe538c35d3be07a5d146 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HRR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log`R \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0afbfdc0d4c8ecfc72c730ba6f814637a3240fdd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.431s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3776a8c820eadce4ea5befa1a1b3869ad39f3e33 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/linalg_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a11abc9ad780f02a49da5f0020bf101f79ed9392 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 10.157s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..517a0e524588072388446609fd22d1a92194e6c4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bce3ab811ffce3205eee27fdec9c64719813dd02 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/listdiff_op_test/test.log`u \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..209f83bc11875e8158ab47644bbfa42e36abb7fa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........... +---------------------------------------------------------------------- +Ran 11 tests in 3.411s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9bea2440354b82de87dffc054a3823adc9f9eafa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..32c0151785cc15c8b3d8941889f9b30473363e99 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/logging_ops_test/test.log`] \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b842306dffa8161d9205ec725629e7be4565d29e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log @@ -0,0 +1,10 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Divide-by-zero] [less than x] + [[Node: Assert_1 = Assert[T=[DT_STRING, DT_STRING], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Less_1, Assert_1/data_0, Assert_1/data_1)]] +..I tensorflow/core/kernels/logging_ops.cc:79] [4 4 4...][4 4 4...][4 4 4...] +... +---------------------------------------------------------------------- +Ran 5 tests in 0.280s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..24c1fa0c27e88cad2a093782371fa3ee7f1b1a22 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4554ccfbc7f32f1784a00faf7bf88d27e04220b3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/lrn_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1f864b203c8d82cc690d27fa26e08b27384f8b30 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 7.243s + +OK +LRN error for bias 1.97117341377 alpha 0.855310870546 beta 0.0842407585135 is 5.96046e-08 +LRN error for bias 1.01262789136 alpha 1.20407944241 beta 1.29672023385 is 8.9407e-08 +LRN error for bias 1.39280012332 alpha 0.912204220232 beta 0.822683637616 is 5.96046e-08 +LRN error for bias 1.97842913563 alpha 1.41948324845 beta 0.103696853897 is 0.000661731 +LRN error for bias 1.20528770352 alpha 0.160302401435 beta 0.714848616809 is 5.96046e-08 +LRN error for bias 1.2310314514 alpha 0.105884778859 beta 0.0201912760762 is 0.00064528 +LRN Gradient error for bias 1.58042537733 alpha 0.503187482177 beta 0.917545954651 is 3.95849e-05 +LRN Gradient error for bias 1.99095586577 alpha 0.138276697751 beta 0.567323610065 is 4.4167e-05 +LRN Gradient error for bias 1.97777035966 alpha 0.576471009713 beta 0.894604168247 is 3.66271e-05 +LRN Gradient error for bias 1.61591719507 alpha 0.991428487418 beta 0.212033236422 is 0.23926 +LRN Gradient error for bias 1.69167076253 alpha 0.0135583093415 beta 0.850261633598 is 2.95809e-05 +LRN Gradient error for bias 1.74724234668 alpha 0.573985510185 beta 0.773235947333 is 0.22668 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..27d5bcd40ae284fd7c7a3b0599dc0a6824781a01 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4894b1d30f0225f565faf31a84ea27f99771c319 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status @@ -0,0 +1 @@ +HڑR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/matmul_op_test/test.log`ڑ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d6e002dd0bfc9bb803abd71810884ae8d7711a9d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log @@ -0,0 +1,36 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............................ +---------------------------------------------------------------------- +Ran 28 tests in 7.887s + +OK +matmul input0 gradient err = 1.10134124043e-13 +matmul input0 gradient err = 1.10134124043e-13 +matmul input0 gradient err = 1.65201186064e-13 +matmul input0 gradient err = 7.88258347484e-14 +matmul input1 gradient err = 7.81597009336e-13 +matmul input1 gradient err = 2.27373675443e-13 +matmul input1 gradient err = 9.94759830064e-13 +matmul input1 gradient err = 3.37507799486e-13 +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4dcff6ad897d012c9b6b00aa056068919b65ab74 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..498e37e4132db72907642f01ad34b0eb131b163b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status @@ -0,0 +1 @@ +HaR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log`a \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f197b68e0c2a240f3f687e9eb9e7b04918f6d5f9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] Input is not invertible. + [[Node: MatrixInverse = MatrixInverse[T=DT_FLOAT, adjoint=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +.... +---------------------------------------------------------------------- +Ran 7 tests in 1.561s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfb724f94da6dec9a8e37b2891eec9a677301d5e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0369823d76b4607a4fdc901a5b51420e7ce761a8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log`] \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ecf9c7cda1d82917bcf399d8d6603912f4d7a006 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 2.319s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d63e7bce7d3d44cb303abdfd0be19fadf625a1e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b123a9d10bfc3f4e59ebfbb4cc5d1e873a9cb4e8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..838e5bc25ea70e575c19dac7555a01937918fde5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: MatrixSolve = MatrixSolve[T=DT_FLOAT, adjoint=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const)]] +..... +---------------------------------------------------------------------- +Ran 7 tests in 1.401s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b70bd566f37187c2558457d6e060933c75224da3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6e2b84bad770f08bec85dad5a25fb82f72d75e7b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..8ad85792aa7195ffc15e3eac2a3d3a57be5201d2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: BatchMatrixTriangularSolve = BatchMatrixTriangularSolve[T=DT_FLOAT, adjoint=false, lower=true, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixTriangularSolve/matrix, BatchMatrixTriangularSolve/rhs)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: BatchMatrixTriangularSolve_1 = BatchMatrixTriangularSolve[T=DT_FLOAT, adjoint=false, lower=true, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixTriangularSolve_1/matrix, BatchMatrixTriangularSolve_1/rhs)]] +..... +---------------------------------------------------------------------- +Ran 7 tests in 2.151s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddcec37cfec9479e26d8560638617166d1f07645 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f7cc099ffca9dff86a3aa061c7c3846a6374c2e2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/morphological_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2e847bdf6d679f31e695c1a2295100c465083bae --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log @@ -0,0 +1,35 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 12.944s + +OK +Dilation gradient error = 0.000017 +Dilation gradient error = 0.000017 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000017 +Dilation gradient error = 0.000017 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Dilation gradient error = 0.000073 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000013 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000013 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 +Erosion gradient error = 0.000017 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..231551cda18809b33537fff3f51ffa10ac8ef55f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2813b208b39c75a2539576411eee74769bdaab0d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/multinomial_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..58b33406a468a4b1da09d83bcd8015643affc64b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] num_classes should be positive, got 0 + [[Node: multinomial/Multinomial = Multinomial[T=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](zeros, multinomial/Multinomial/num_samples)]] +.........E tensorflow/core/client/tensor_c_api.cc:485] num_classes should be positive, got 0 + [[Node: multinomial/Multinomial = Multinomial[T=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](zeros, multinomial/Multinomial/num_samples)]] +........ +---------------------------------------------------------------------- +Ran 18 tests in 4.650s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e25ebfbcfcd6d28651ba3e61718fdff61f98eae --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9a5574ca91b8ad7f9de0ecec6d1efc0745ca0085 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status @@ -0,0 +1 @@ +HׅR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/numerics_test/test.log`ׅ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f9d310248b1c0f855450d1972abae30e8ddff0f5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log @@ -0,0 +1,27 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf and NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf and NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +...E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had NaN values + [[Node: VerifyFinite/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had NaN values + [[Node: VerifyFinite_1/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_1"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had Inf values + [[Node: VerifyFinite_2/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_2"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had Inf values + [[Node: VerifyFinite_3/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_3"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_3)]] +... +---------------------------------------------------------------------- +Ran 8 tests in 1.012s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea22d5082e22f603255ee2c0e6cdcc9ec58d7dd3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3281d31107b233e19fa3aa72b20774a4f5f5cebe --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/one_hot_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..da3babecab3d15969dcefd4393d4df30a709a40e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 7.251s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..469535e5866bf9f39bb68faefe3935d8fd52749c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..95e5bc150e93b756d38697fcfe775a3e7a3aca30 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/pack_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b895d6ca8cc3e88eda5eec47b962b711316767e0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Shapes of all inputs must match: values[0].shape = [] != values[1].shape = [1] + [[Node: packed_1/1 = Pack[N=3, T=DT_INT32, axis=0, _device="/job:localhost/replica:0/task:0/cpu:0"](packed_1/1/0, _recv_Placeholder_1_0, packed_1/1/2)]] +............... +---------------------------------------------------------------------- +Ran 17 tests in 8.511s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b1714cbc4382d570e9b8ce250e99a3d7c7b7f5b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc0e549bbda703c01f6b2e72759c85a4e209bbf3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/pad_op_test/test.log`f \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..82264d26775e7b7335611d466b4955a82b91d4aa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.........E tensorflow/core/client/tensor_c_api.cc:485] paddings must be less thanthan the dimension size: 2, 0 not less than 2 + [[Node: MirrorPad = MirrorPad[T=DT_INT32, mode="REFLECT", _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] paddings must be no greater than the dimension size: 0, 3 greater than 2 + [[Node: MirrorPad_1 = MirrorPad[T=DT_INT32, mode="SYMMETRIC", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_2, Const_3)]] +...... +---------------------------------------------------------------------- +Ran 15 tests in 2.553s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f621034aadc571e4011eefb4bc27ef003027e7dd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..33ca662b5fb4173fecb73044554f0243a4db8dfd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2f83c584d709bc7eca1034998fa61006b087bdb8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log @@ -0,0 +1,67 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_2_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_3_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_5_padding_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_6_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_7_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +..E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_9_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueUpTo/n)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_14_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +.............W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [2,?,3], got [2,3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [2,?,3], got [2,3,4] + [[Node: padding_fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_EnqueueMany/component_0, _recv_Placeholder_0)]] +...E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_32_padding_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_33_padding_fifo_queue' is closed. + [[Node: padding_fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_EnqueueMany/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_35_padding_fifo_queue' is closed. + [[Node: padding_fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_enqueue/component_0)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [?,3], got [3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [?,3], got [3,4] + [[Node: padding_fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_enqueue/component_0, _recv_Placeholder_0)]] +....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: padding_fifo_queue_1 = PaddingFIFOQueue[capacity=15, component_types=[DT_FLOAT], container="", shapes=[[]], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has component types float but requested component types were int32 + [[Node: padding_fifo_queue_3 = PaddingFIFOQueue[capacity=10, component_types=[DT_INT32], container="", shapes=[[]], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component shapes [[]] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component shapes [[]] but requested component shapes were [[1,1,2,3]] + [[Node: padding_fifo_queue_5 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,3]], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [[]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [[]] + [[Node: padding_fifo_queue_7 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[]], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: padding_fifo_queue_9 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,4]], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component types float but requested component types were float, int32 + [[Node: padding_fifo_queue_11 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[[], []], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +....................W tensorflow/core/kernels/queue_base.cc:294] _57_padding_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _57_padding_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_padding_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_padding_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: padding_fifo_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue_1, padding_fifo_queue_1_enqueue/component_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: padding_fifo_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue_1, padding_fifo_queue_1_EnqueueMany_1/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@padding_fifo_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, padding_fifo_queue, padding_fifo_queue_1)]] +.... +---------------------------------------------------------------------- +Ran 71 tests in 13.404s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f244e4144f13a05cd7dc0904e4db7dadb3975e94 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e86e7b2772a879dc27ee83c19c5bf006405cf289 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..367e67ada60c8c8f2eed0d61d68ffdfd4cc098f6 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.WARNING:tensorflow:Cannot test truncated normal op: No module named scipy.stats +.. +---------------------------------------------------------------------- +Ran 9 tests in 0.017s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f1149654edbf4072ed81e2db91b962af6a8bb427 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..16be9699f879bd1d3b52ef95a3b31a397badcb97 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status @@ -0,0 +1 @@ +H͏R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/parsing_ops_test/test.log`͏ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..246d393845dd45c78d99b24a1034423095d55408 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.....E tensorflow/core/client/tensor_c_api.cc:485] Error while parsing JSON: Expected an object key or }. +{] + ^ + [[Node: DecodeJSONExample = DecodeJSONExample[_device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +.....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: failing, Key: a, Index: 1. Number of float values != expected. values size: 2 but output shape: [1,3] +E tensorflow/core/client/tensor_c_api.cc:485] Name: failing, Key: a, Index: 1. Number of float values != expected. values size: 2 but output shape: [1,3] + [[Node: ParseExample/ParseExample = ParseExample[Ndense=1, Nsparse=0, Tdense=[DT_FLOAT], dense_shapes=[[1,3]], sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseExample/ParseExample/names, ParseExample/ParseExample/dense_keys_0, ParseExample/Const)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in1, Feature: c is required but could not be found. +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in2, Feature: c is required but could not be found. +E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature: c is required but could not be found. + [[Node: ParseExample/ParseExample = ParseExample[Ndense=3, Nsparse=1, Tdense=[DT_INT64, DT_STRING, DT_FLOAT], dense_shapes=[[1,3], [3,3], [2]], sparse_types=[DT_INT64], _device="/job:localhost/replica:0/task:0/cpu:0"](ParseExample/ParseExample/serialized, ParseExample/ParseExample/names, ParseExample/ParseExample/sparse_keys_0, ParseExample/ParseExample/dense_keys_0, ParseExample/ParseExample/dense_keys_1, ParseExample/ParseExample/dense_keys_2, ParseExample/Reshape, ParseExample/Reshape_1, ParseExample/Const)]] +........E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 1. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 0. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in1, Key: a, Index: 1. Number of int64 values != expected. values size: 3 but output shape: [2] +E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Key: a, Index: 1. Number of int64 values != expected. values size: 3 but output shape: [2] + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 2. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list 'a' is required but could not be found. Did you mean to include it in feature_list_dense_missing_assumed_empty or feature_list_dense_defaults? + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +........ +---------------------------------------------------------------------- +Ran 32 tests in 2.312s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..39dd9d941cd1527468628d21de7247bd759d4c2e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a099251a88acd369a66fb5784b66421e0e577492 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/partitioned_variables_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..23fb23f9f9845df5f937bec86005735b963387b2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log @@ -0,0 +1,37 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +..... +---------------------------------------------------------------------- +Ran 14 tests in 21.482s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..269248a561e8da3b7449ae22a7acbaa47c5e7e29 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4483d392c2d4ee37a99f7473d572b802d7c69dd3 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..90e3289fb50f25f371b73ae7c9b25379d913dee3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/pooling_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0aeaff86008ad7a68414ab0b55d324aea7e2bd9c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log @@ -0,0 +1,46 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/pooling_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/pooling_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +.......... +---------------------------------------------------------------------- +Ran 22 tests in 24.107s + +OK +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 2.74181e-06 +avg_pool gradient error = 2.74181e-06 +avg_pool gradient error = 2.02656e-06 +avg_pool gradient error = 2.5034e-06 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 2.81632e-06 +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 2.74181e-06 +avg_pool gradient error = 2.38419e-07 +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 2.74181e-06 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 5.79655e-06 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000549316 +max_pool gradient error = 0.000976562 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000549316 +max_pool gradient error = 0.000976562 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6c798d2dae4e9c8f251681cfad70bcb0e70f97e1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7b8316f9b5f528bf0ae727aa300c1e08f665d1b5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status @@ -0,0 +1 @@ +HчR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/priority_queue_test/test.log`ч \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5c48aa321480b94af1fab17ae810e96217fd2320 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 0. Expected [], got [2] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 0. Expected [], got [2] + [[Node: priority_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT64, DT_STRING], _class=["loc:@priority_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](priority_queue, _recv_Placeholder_0, _recv_Placeholder_1_0)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 0. Expected [2], got [2,2] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 0. Expected [2], got [2,2] + [[Node: priority_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT64, DT_STRING], _class=["loc:@priority_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](priority_queue, _recv_Placeholder_0, _recv_Placeholder_1_0)]] +.......... +---------------------------------------------------------------------- +Ran 11 tests in 17.978s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9fa9345b3985b59dade1e719af795b4d2321bb8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a248cb485045068e868c1f67bdee05e6caf3d6e4 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..bc1b4ada15079371da89c214931cadb9e21d8e7e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log @@ -0,0 +1,200 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +W tensorflow/core/framework/op_kernel.cc:936] Unimplemented: Unsupported numpy type 20 +E tensorflow/core/client/tensor_c_api.cc:485] Unsupported numpy type 20 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_FLOAT], token="pyfunc_0", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +.W tensorflow/core/framework/op_kernel.cc:936] Unimplemented: Unsupported object type DType +E tensorflow/core/client/tensor_c_api.cc:485] Unsupported object type DType + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_DOUBLE], token="pyfunc_1", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +..E tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_9 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_9", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E...E tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_1014 is int32, but expects int64 + [[Node: PyFunc_1 = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1014", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +EE tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_1015 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1015", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E... +====================================================================== +ERROR: testCOrder (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 173, in testCOrder + self.assertAllEqual(val, x.eval()) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: 0-th value returned by pyfunc_9 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_9", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op u'PyFunc', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 172, in testCOrder + x, = tf.py_func(lambda: np.array(val, order="F"), [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +====================================================================== +ERROR: testParallel (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 194, in testParallel + session.run([x, y]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: 0-th value returned by pyfunc_1014 is int32, but expects int64 + [[Node: PyFunc_1 = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1014", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op u'PyFunc_1', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 191, in testParallel + y, = tf.py_func(blocking_get, [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +====================================================================== +ERROR: testStateful (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 165, in testStateful + self.assertEqual(sess.run(x), 0) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +InvalidArgumentError: 0-th value returned by pyfunc_1015 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1015", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op u'PyFunc', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__ + self.runTests() + File "/usr/lib/python2.7/unittest/main.py", line 232, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python2.7/unittest/runner.py", line 151, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/suite.py", line 70, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/suite.py", line 108, in run + test(result) + File "/usr/lib/python2.7/unittest/case.py", line 393, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python2.7/unittest/case.py", line 329, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 164, in testStateful + x, = tf.py_func(lambda: next(producer), [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 12 tests in 15.299s + +FAILED (errors=3) diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..795c81437121bd973046aa96df8265ebfe3579b5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3e575d51eb2fc9083cdf2e480bb9fcdf286d5bf5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/random_crop_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..23bc3a0192ab6c55eacd9ce62a9f032e17d1dfc2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 3.740s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..075b4ae4c87797c2d7fc7b9e490c121ce101a1c3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..05e43ab05ac889c3e977298bb4fb0a553b882c6f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/random_gamma_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..667e4712fce95e947e382fc139ae574a22910e90 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 3.452s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed8e670399913151c82151f59ddca797b7fdc104 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f6cf869e95475f11b3ccc3cc24dc15148d8371d1 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..722693e897a9c549d308907444a7eb798a4a1167 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..991a2dd2844041000c372f0426490f4d7ee1f282 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4db530ba3a3bc05687c4b502cf0afb056491699b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log @@ -0,0 +1,192 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +ERROR:tensorflow:Starting: testBigDequeueMany +ERROR:tensorflow:Finished: testBigDequeueMany +.ERROR:tensorflow:Starting: testBigEnqueueMany +ERROR:tensorflow:Finished: testBigEnqueueMany +.ERROR:tensorflow:Starting: testBlockingDequeueFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_2_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testBlockingDequeueFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_3_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testBlockingDequeueFromClosedQueue +.ERROR:tensorflow:Starting: testBlockingDequeueMany +ERROR:tensorflow:Finished: testBlockingDequeueMany +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_5_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_6_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedQueue +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedQueueWithElementsRemaining +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_7_random_shuffle_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedQueueWithElementsRemaining +.ERROR:tensorflow:Starting: testBlockingDequeueUpTo +ERROR:tensorflow:Finished: testBlockingDequeueUpTo +.ERROR:tensorflow:Starting: testBlockingDequeueUpToFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_9_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueUpToFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueUpToFromClosedQueueReturnsRemainder +ERROR:tensorflow:Finished: testBlockingDequeueUpToFromClosedQueueReturnsRemainder +.ERROR:tensorflow:Starting: testBlockingDequeueUpToSmallerThanMinAfterDequeue +ERROR:tensorflow:Finished: testBlockingDequeueUpToSmallerThanMinAfterDequeue +.ERROR:tensorflow:Starting: testBlockingEnqueueManyToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_12_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_EnqueueMany_1/component_0)]] +ERROR:tensorflow:Finished: testBlockingEnqueueManyToClosedQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueManyToFullQueue +ERROR:tensorflow:Finished: testBlockingEnqueueManyToFullQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_14_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_enqueue/component_0)]] +ERROR:tensorflow:Finished: testBlockingEnqueueToClosedQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueToFullQueue +ERROR:tensorflow:Finished: testBlockingEnqueueToFullQueue +.ERROR:tensorflow:Starting: testDequeue +ERROR:tensorflow:Finished: testDequeue +.ERROR:tensorflow:Starting: testDequeueFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_17_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testDequeueFromClosedQueue +.ERROR:tensorflow:Starting: testDequeueInDifferentOrders +ERROR:tensorflow:Finished: testDequeueInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueMany +ERROR:tensorflow:Finished: testDequeueMany +.ERROR:tensorflow:Starting: testDequeueManyInDifferentOrders +ERROR:tensorflow:Finished: testDequeueManyInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueManyWithTensorParameter +ERROR:tensorflow:Finished: testDequeueManyWithTensorParameter +.ERROR:tensorflow:Starting: testDequeueUpToInDifferentOrders +ERROR:tensorflow:Finished: testDequeueUpToInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueUpToNoBlocking +ERROR:tensorflow:Finished: testDequeueUpToNoBlocking +.ERROR:tensorflow:Starting: testDequeueUpToWithTensorParameter +ERROR:tensorflow:Finished: testDequeueUpToWithTensorParameter +.ERROR:tensorflow:Starting: testEmptyDequeueMany +ERROR:tensorflow:Finished: testEmptyDequeueMany +.ERROR:tensorflow:Starting: testEmptyDequeueManyWithNoShape +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testEmptyDequeueManyWithNoShape +.ERROR:tensorflow:Starting: testEmptyDequeueUpTo +ERROR:tensorflow:Finished: testEmptyDequeueUpTo +.ERROR:tensorflow:Starting: testEmptyDequeueUpToWithNoShape +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +ERROR:tensorflow:Finished: testEmptyDequeueUpToWithNoShape +.ERROR:tensorflow:Starting: testEmptyEnqueueMany +ERROR:tensorflow:Finished: testEmptyEnqueueMany +.ERROR:tensorflow:Starting: testEnqueue +ERROR:tensorflow:Finished: testEnqueue +.ERROR:tensorflow:Starting: testEnqueueAndBlockingDequeue +ERROR:tensorflow:Finished: testEnqueueAndBlockingDequeue +.ERROR:tensorflow:Starting: testEnqueueMany +ERROR:tensorflow:Finished: testEnqueueMany +.ERROR:tensorflow:Starting: testEnqueueManyToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_38_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_EnqueueMany/component_0)]] +ERROR:tensorflow:Finished: testEnqueueManyToClosedQueue +.ERROR:tensorflow:Starting: testEnqueueManyWithShape +ERROR:tensorflow:Finished: testEnqueueManyWithShape +.ERROR:tensorflow:Starting: testEnqueueToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_40_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_enqueue/component_0)]] +ERROR:tensorflow:Finished: testEnqueueToClosedQueue +.ERROR:tensorflow:Starting: testEnqueueWithShape +ERROR:tensorflow:Finished: testEnqueueWithShape +.ERROR:tensorflow:Starting: testHighDimension +ERROR:tensorflow:Finished: testHighDimension +.ERROR:tensorflow:Starting: testIncompatibleSharedQueueErrors +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: random_shuffle_queue_1 = RandomShuffleQueue[capacity=15, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has min_after_dequeue 0 but requested min_after_dequeue was 5. +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has min_after_dequeue 0 but requested min_after_dequeue was 5. + [[Node: random_shuffle_queue_3 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component types float but requested component types were int32 + [[Node: random_shuffle_queue_5 = RandomShuffleQueue[capacity=10, component_types=[DT_INT32], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [] but requested component shapes were [[1,1,2,3]] + [[Node: random_shuffle_queue_7 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[[1,1,2,3]], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [] + [[Node: random_shuffle_queue_9 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: random_shuffle_queue_11 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[[1,1,2,4]], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_g' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_g' has component types float but requested component types were float, int32 + [[Node: random_shuffle_queue_13 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_g", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_h' has random seeds (87654321, 12) but requested seeds are (87654321, 21). +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_h' has random seeds (87654321, 12) but requested seeds are (87654321, 21). + [[Node: random_shuffle_queue_15 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=87654321, seed2=21, shapes=[], shared_name="q_h", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +ERROR:tensorflow:Finished: testIncompatibleSharedQueueErrors +.ERROR:tensorflow:Starting: testMultiDequeueMany +ERROR:tensorflow:Finished: testMultiDequeueMany +.ERROR:tensorflow:Starting: testMultiDequeueUpToNoBlocking +ERROR:tensorflow:Finished: testMultiDequeueUpToNoBlocking +.ERROR:tensorflow:Starting: testMultiEnqueueAndDequeue +ERROR:tensorflow:Finished: testMultiEnqueueAndDequeue +.ERROR:tensorflow:Starting: testMultiEnqueueMany +ERROR:tensorflow:Finished: testMultiEnqueueMany +.ERROR:tensorflow:Starting: testParallelDequeue +ERROR:tensorflow:Finished: testParallelDequeue +.ERROR:tensorflow:Starting: testParallelDequeueMany +ERROR:tensorflow:Finished: testParallelDequeueMany +.ERROR:tensorflow:Starting: testParallelDequeueUpTo +ERROR:tensorflow:Finished: testParallelDequeueUpTo +.ERROR:tensorflow:Starting: testParallelDequeueUpToRandomPartition +ERROR:tensorflow:Finished: testParallelDequeueUpToRandomPartition +.ERROR:tensorflow:Starting: testParallelEnqueue +ERROR:tensorflow:Finished: testParallelEnqueue +.ERROR:tensorflow:Starting: testParallelEnqueueMany +ERROR:tensorflow:Finished: testParallelEnqueueMany +.ERROR:tensorflow:Starting: testQueueSizeAfterEnqueueAndDequeue +ERROR:tensorflow:Finished: testQueueSizeAfterEnqueueAndDequeue +.ERROR:tensorflow:Starting: testQueueSizeEmpty +ERROR:tensorflow:Finished: testQueueSizeEmpty +.ERROR:tensorflow:Starting: testResetOfBlockingOperation +W tensorflow/core/kernels/queue_base.cc:294] _55_random_shuffle_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _55_random_shuffle_queue_1: Skipping cancelled enqueue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: random_shuffle_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue_1, random_shuffle_queue_1_EnqueueMany_1/component_0)]] +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: random_shuffle_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue_1, random_shuffle_queue_1_enqueue/component_0)]] +ERROR:tensorflow:Finished: testResetOfBlockingOperation +.ERROR:tensorflow:Starting: testScalarShapes +ERROR:tensorflow:Finished: testScalarShapes +.ERROR:tensorflow:Starting: testSelectQueue +ERROR:tensorflow:Finished: testSelectQueue +.ERROR:tensorflow:Starting: testSelectQueueOutOfRange +E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@random_shuffle_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, random_shuffle_queue, random_shuffle_queue_1)]] +ERROR:tensorflow:Finished: testSelectQueueOutOfRange +.ERROR:tensorflow:Starting: testSharedQueueSameSession +ERROR:tensorflow:Finished: testSharedQueueSameSession +.ERROR:tensorflow:Starting: test_session +ERROR:tensorflow:Finished: test_session +. +---------------------------------------------------------------------- +Ran 57 tests in 10.185s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..d121278d58418f0b772b16f009904a3a19b98b1b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f19cfaf2d6e8d6af05041565943f833f7bdd97c5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status @@ -0,0 +1 @@ +HrR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/reader_ops_test/test.log`r \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ce57093cc234d01150d369decbb6756939d6d5b5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log @@ -0,0 +1,44 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_6_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_8_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_11_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_14_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \001\020\001\030\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \001\020\001\030\001\"\001X + [[Node: ReaderRestoreState_3 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_3/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001 +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001 + [[Node: ReaderRestoreState_4 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_4/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001XExtraJunk +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001XExtraJunk + [[Node: ReaderRestoreState_5 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_5/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': PREFIX\010\001\020\001\030\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': PREFIX\010\001\020\001\030\001\"\001X + [[Node: ReaderRestoreState_6 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_6/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': BOGUS\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': BOGUS\001\"\001X + [[Node: ReaderRestoreState_7 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_7/state)]] +....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_18_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderReadUpTo = ReaderReadUpTo[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue, ReaderReadUpTo/num_records)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_20_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_22_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_24_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_26_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +...E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_30_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.. +---------------------------------------------------------------------- +Ran 23 tests in 3.118s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..aee56322418ed5c51f93ca843b44d4e4ab5119a1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c9115cdc1301d53da4087e1b5b3285a206b202d1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/reduce_join_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4da5ea16a71b348e69b50d5a383bcd475715ce72 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension -2 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](ReduceJoin/inputs, _recv_placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 2 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](ReduceJoin/inputs, _recv_placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 1 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_placeholder_0, ReduceJoin/reduction_indices)]] +E tensorflow/core/client/tensor_c_api.cc:485] Duplicate reduction dimension 1 + [[Node: ReduceJoin_1 = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_placeholder_0, ReduceJoin_1/reduction_indices)]] +.................. +---------------------------------------------------------------------- +Ran 19 tests in 2.922s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7499c304859cbc53eb182b4e13ba157930b51e5b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d37392ee264723ee2b5ba1cae24ccd1f06adfb23 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..27006038b65536ce5e9d1d5a0c673dd624bd8520 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log @@ -0,0 +1,47 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................F.............E tensorflow/core/client/tensor_c_api.cc:485] _ProdGrad NaN test : Tensor had NaN values + [[Node: CheckNumerics = CheckNumerics[T=DT_FLOAT, message="_ProdGrad NaN test", _device="/job:localhost/replica:0/task:0/cpu:0"](CheckNumerics/tensor)]] +.......................... +====================================================================== +FAIL: testFloatReduce3D (__main__.MeanReductionTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/reduction_ops_test.runfiles/tensorflow/python/kernel_tests/reduction_ops_test.py", line 328, in testFloatReduce3D + self._compareAll(np_arr, [0]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/reduction_ops_test.runfiles/tensorflow/python/kernel_tests/reduction_ops_test.py", line 317, in _compareAll + self._compare(x, reduction_axes, False, use_gpu=True) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/reduction_ops_test.runfiles/tensorflow/python/kernel_tests/reduction_ops_test.py", line 313, in _compare + self.assertAllClose(np_ans, out) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/reduction_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array([[ 7.5, 8.5, 9.5, 10.5, 11.5], + [ 12.5, 13.5, 14.5, 15.5, 16.5], + [ 17.5, 18.5, 19.5, 20.5, 21.5]], dtype=float32) + y: array([[ 7.49997139, 8.49996758, 9.49996376, 10.49995995, + 11.49995613], + [ 12.49995232, 13.4999485 , 14.49994469, 15.49994087,... + +---------------------------------------------------------------------- +Ran 57 tests in 41.878s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2]), array([0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1])) +not close lhs = [ 7.5 8.5 9.5 10.5 11.5 12.5 13.5 14.5 15.5 16.5 17.5 18.5] +not close rhs = [ 7.49997139 8.49996758 9.49996376 10.49995995 11.49995613 + 12.49995232 13.4999485 14.49994469 15.49994087 16.49993706 + 17.49993324 18.49992943] +not close dif = [ 2.86102295e-05 3.24249268e-05 3.62396240e-05 4.00543213e-05 + 4.38690186e-05 4.76837158e-05 5.14984131e-05 5.53131104e-05 + 5.91278076e-05 6.29425049e-05 6.67572021e-05 7.05718994e-05] +not close tol = [ 8.49997105e-06 9.49996775e-06 1.04999644e-05 1.14999602e-05 + 1.24999560e-05 1.34999527e-05 1.44999485e-05 1.54999452e-05 + 1.64999419e-05 1.74999368e-05 1.84999335e-05 1.94999302e-05] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb05e64b49ae8b3524b1346fffe8c8a2b2992026 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4dd52deacf18259ff77a534b7d9402ef4aff3761 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status @@ -0,0 +1 @@ +H׀R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/relu_op_test/test.log`׀ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..295eccaed018e954e37e29f2977618ae74f19106 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 1.688s + +OK +elu (float32) gradient err = 2.19345e-05 +elu (float64) gradient err = 1.50806227728e-07 +relu6 (float32) gradient err = 0 +relu6 (float64) gradient err = 0 +relu (float32) gradient of gradient err = 0 +relu (float64) gradient of gradient err = 0 +relu (float32) gradient err = 1.29342e-05 +relu (float64) gradient err = 8.881784197e-16 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3bbb6bf1acbc1c32e170a5db2f36a74a20384d0e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6249cff1e9578d6806248e2d559b661c531a0677 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status @@ -0,0 +1 @@ +HvR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/reshape_op_test/test.log`v \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2cf3216d101bda585ad2856d05438922aec00490 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.............. +---------------------------------------------------------------------- +Ran 14 tests in 1.381s + +OK +Reshape gradient error = diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..631df924da8e6f462b32ff8601e6565ebc7f0cef --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..040cc85966056762b3e376a01036d53b4339e88d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status @@ -0,0 +1 @@ +H_R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log`_ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c5d172786852a2d6c29f1c0c10c09dd43f444307 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log @@ -0,0 +1,10 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] batch_dim == seq_dim == 0 + [[Node: ReverseSequence_4 = ReverseSequence[T=DT_FLOAT, batch_dim=0, seq_dim=0, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_8_0, _recv_Placeholder_9_0)]] +.. +---------------------------------------------------------------------- +Ran 9 tests in 0.856s + +OK +ReverseSequence gradient error = 1.22213e-12 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..74497d9823c32edd57d177bcfaf82a08be7dc0fd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d91c1167c4642df29814afb789aa4f97301cad59 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/rnn_cell_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..23fa8875cc62a6b774c86cd4f3e448510bc73ab0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.......WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +......... +---------------------------------------------------------------------- +Ran 18 tests in 9.456s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..09254dd0ed60109adccdd69cf790278f058a0b19 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5b90ae3b5e09f354a7eba334c3e6f914641c96e4 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5e04ef6de42291957630ce5486bf3ce367acca99 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log @@ -0,0 +1,62 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +....WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e4529ffcb3f23a0f1f3cf1aff30302959e9acef4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/save_restore_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..58ce8436d9773e55413c249c2d85aa4e17ddf1ac --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.383s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f17a861b405afc92607d4a32366c356fe036578 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2d17407fdb7355f003aebeacf597f5768935d481 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/scalar_strict_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..7a5d2f09c3ebdf77eed297c7f6dff60d083d2634 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log @@ -0,0 +1,117 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] In[0] should be a scalar: [1] + [[Node: Assert = Assert[T=[DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] In[0] should be a scalar: [1] + [[Node: Assert = Assert[T=[DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Concat dim tensor should be a scalar integer, but got shape [1] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Concat dim tensor should be a scalar integer, but got shape [1] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[1] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[1] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[2] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[2] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] dims must be a vector of int32, got shape [] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] dims must be a vector of int32, got shape [] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] value must be a scalar, got shape [1] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] value must be a scalar, got shape [1] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] tags must be scalar + [[Node: HistogramSummary = HistogramSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags must be scalar + [[Node: HistogramSummary = HistogramSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Tags must be a scalar + [[Node: ImageSummary = ImageSummary[T=DT_UINT8, bad_color=Tensor, max_images=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Tags must be a scalar + [[Node: ImageSummary = ImageSummary[T=DT_UINT8, bad_color=Tensor, max_images=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] The first dimension of paddings must be the rank of inputs[1,2] [] + [[Node: Pad = Pad[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] The first dimension of paddings must be the rank of inputs[1,2] [] + [[Node: Pad = Pad[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: shape must be a vector of {int32,int64}, got shape [] +E tensorflow/core/client/tensor_c_api.cc:485] shape must be a vector of {int32,int64}, got shape [] + [[Node: random_uniform/RandomUniform = RandomUniform[T=DT_INT32, dtype=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: shape must be a vector of {int32,int64}, got shape [] +E tensorflow/core/client/tensor_c_api.cc:485] shape must be a vector of {int32,int64}, got shape [] + [[Node: random_uniform/RandomUniform = RandomUniform[T=DT_INT32, dtype=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] start must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] start must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] limit must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] limit must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] delta must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] delta must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] sizes input must be 1-D, not shape [] + [[Node: Reshape = Reshape[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] sizes input must be 1-D, not shape [] + [[Node: Reshape = Reshape[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [1] != [] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [1] != [] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [] != [1] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [] != [1] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilename = ShardedFilename[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilename = ShardedFilename[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilespec = ShardedFilespec[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilespec = ShardedFilespec[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [1] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [1] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [1] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [1] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] output_shape should be a vector, got shape [] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, SparseToDense/default_value)]] +E tensorflow/core/client/tensor_c_api.cc:485] output_shape should be a vector, got shape [] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, SparseToDense/default_value)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expected multiples to be 1-D, but got shape [] + [[Node: Tile = Tile[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected multiples to be 1-D, but got shape [] + [[Node: Tile = Tile[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_segments should be a scalar, not shape [1] + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_segments should be a scalar, not shape [1] + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.. +---------------------------------------------------------------------- +Ran 17 tests in 4.283s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..52528c09054cacf1b1854a58a2adb13800a180c8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9ef425ad9fda10cb410899db49102315d8ae6637 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/scan_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..36dc229b1669a6734c49f9c2d23f51b439ed7469 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got -1 + [[Node: Cumprod = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got 2 + [[Node: Cumprod_1 = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod_1/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: axis must be a scalar, not [1] + [[Node: Cumprod_2 = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod_2/axis)]] +..........E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got -1 + [[Node: Cumsum = Cumsum[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumsum/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got 2 + [[Node: Cumsum_1 = Cumsum[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumsum_1/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: axis must be a scalar, not [1] + [[Node: Cumsum_2 = Cumsum[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumsum_2/axis)]] +.. +---------------------------------------------------------------------- +Ran 20 tests in 40.699s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..656b6430c3302dfc196df702d02ae3c9168a2200 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f923426fd74185041631cb8d2f3f96c04bb7f6b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status @@ -0,0 +1 @@ +H R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/scatter_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0cf5892d4db51b0389d1cac259985c10524c977a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterAdd_1 = ScatterAdd[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, ScatterAdd_1/indices, ScatterAdd_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterAdd_2 = ScatterAdd[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, ScatterAdd_2/indices, ScatterAdd_2/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterSub_1 = ScatterSub[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_1"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1, ScatterSub_1/indices, ScatterSub_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterSub_2 = ScatterSub[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_1"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1, ScatterSub_2/indices, ScatterSub_2/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterUpdate_1 = ScatterUpdate[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_2"], use_locking=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2, ScatterUpdate_1/indices, ScatterUpdate_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterUpdate_2 = ScatterUpdate[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_2"], use_locking=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2, ScatterUpdate_2/indices, ScatterUpdate_2/updates)]] +...... +---------------------------------------------------------------------- +Ran 7 tests in 103.144s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f2ebf3098ba3e696f88fa6ca0763dfe2ec3174e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9bd3b95325a557c3a18296ea06732d02634d25b4 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b194663da4bac43e17e5ec36239c7031ce5f0408 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log @@ -0,0 +1,87 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +..E tensorflow/core/client/tensor_c_api.cc:485] segment_ids should be the same size as dimension 0 of input. + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +......E tensorflow/core/client/tensor_c_api.cc:485] Index 10 out of range [0, 10). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Index 10 out of range [0, 10). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Index -1 out of range [0, 10). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Index -1 out of range [0, 10). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Invalid number of segments + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid number of segments + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id -1 out of range [0, 2). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id -1 out of range [0, 2). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 0 out of range [0, 0). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 0 out of range [0, 0). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[1] == -1 out of range [0, 10) + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[1] == -1 out of range [0, 10) + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[3] == 10 out of range [0, 10) + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[3] == 10 out of range [0, 10) + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +....E tensorflow/core/client/tensor_c_api.cc:485] segment_ids[0,0] = -1 is out of range [0, 2) + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](UnsortedSegmentSum/data, UnsortedSegmentSum/segment_ids, UnsortedSegmentSum/num_segments)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment_ids[0,0] = 7 is out of range [0, 2) + [[Node: UnsortedSegmentSum_1 = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](UnsortedSegmentSum_1/data, UnsortedSegmentSum_1/segment_ids, UnsortedSegmentSum_1/num_segments)]] +..... +---------------------------------------------------------------------- +Ran 40 tests in 6.814s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a423ccfaca18240b38b16d8b9393b7a9bf5e52cf --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5edec759dac22b88a217ac81b36c5b7a43dea868 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status @@ -0,0 +1 @@ +H˜R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log`˜ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..78e35c573140340cfe1807f8229b61a469d68b10 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... +---------------------------------------------------------------------- +Ran 5 tests in 0.255s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..88cb99e7094329e4025af03ac8bd717a9e386578 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f63d6640b08032de89f7420c738365d9e1a993ec Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..cffaada567f94b1dd2bc12cb755cecaa4e67a610 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +... \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9e67499025efc79d8f88261aa28924e9aa8f032e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status @@ -0,0 +1 @@ +HkR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/session_ops_test/test.log`k \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1fcece34e0c91172a00102737f689992ac766986 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 1.899s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..218d85c87103aa1307fa0b84e0dfe7f8cde535e8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ca77659c25687bba6b2801e74ee06c47d431cc02 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/shape_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..af00de5fbdc4b52c5377e9c1d4d8224bba0ef217 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............................. +---------------------------------------------------------------------- +Ran 29 tests in 21.406s + +OK +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 5.46229728116e-14 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..23a4d1abacb52e1d8fc8b5f1b63ed4e61c256a90 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..60fbc90cbdea5648b6acfb471ec1ac77220e8a09 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b70d03cf2ed1aa6adf35a01aad02b12e177e4e75 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4da1f88270c7e8c9a4bd070e5c7b5c52d2d269fc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status @@ -0,0 +1 @@ +HJR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/softmax_op_test/test.log`J \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5b790d1ff693b089e588fbdc18da0d127f96a1b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 0.429s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b185ba77f96530f456dc01261e1cd075dd49f1a0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..09d18941f9b41fafa08ac16c47bc2430bda22001 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status @@ -0,0 +1 @@ +HMR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/softplus_op_test/test.log`M \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..be97249c5662b6bcbd6fba1f165c126c94ce6dd8 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.217s + +OK +softplus (float) gradient err = 7.05719e-05 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec1e7d825cabf5d4d7d6f5bb4ea68cf5b2316115 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..794fb9752550bc09517fe8165f08cbb282b98baa Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..358f604bfa4183bf6f3fbe670e0a72308bfed685 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log @@ -0,0 +1,16 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testGradient (__main__.SoftsignTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/softsign_op_test.runfiles/tensorflow/python/kernel_tests/softsign_op_test.py", line 62, in testGradient + self.assertLess(err, 1e-4) +AssertionError: 0.00095403194 not less than 0.0001 + +---------------------------------------------------------------------- +Ran 3 tests in 0.266s + +FAILED (failures=1) +softsign (float) gradient err = 0.000954032 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7637b87ab957642a72699438f2d7486350028111 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e55f3d48ff5e8c1da178a55fa8119bac1b5592eb --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6f1b34d41a71076df81c8f44964ae17de43aed51 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...................... +---------------------------------------------------------------------- +Ran 22 tests in 7.084s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1bdc9599e9fa13c5185bef270694585f0a549aaa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..62bf954ea3bd53e3ff2a9388fe11c65419e36337 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e089e74f0f1bace4a04545b537c886e51c7a0e5b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..................... +---------------------------------------------------------------------- +Ran 21 tests in 9.998s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb0c03f48ea9dd8ab0eead9a70208bb9a7fa0903 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..33740c0afe2cd9145808518c15483277054850d1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_add_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..dd59605ae79835ed2d119aadbf2957ff551c705e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 5.581s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9acae7da5639525ed8135655e7c25bc6c3f32153 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ba02e7d1646c9d27229bdcb80370435fe31220a3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log`i \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2bad38a9f7107dd23a019ee5f2c48de84906e891 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] Input shapes must match: expected 3 for dimension 0 but got 2 at position 3 + [[Node: SparseConcat = SparseConcat[N=4, T=DT_FLOAT, concat_dim=1, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_3, Const_6, Const_9, Const_1, Const_4, Const_7, Const_10, Const_2, Const_5, Const_8, Const_11)]] +.... +---------------------------------------------------------------------- +Ran 11 tests in 1.968s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ae5f251c3ca93166b60d4d2eb7565202889a1db --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3914f1e70052e36f86d590f46811e86e10a7d44b Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4ddff674d2c25b6ffc7e73104f4aaa691047a5b0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log @@ -0,0 +1,354 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.FFnot close where = (matrix([[1, 2, 3]]), matrix([[0, 0, 0]])) +not close lhs = [[-1. -2. -3.]] +not close rhs = [[ 0. 0. 0.]] +not close dif = [[ 1. 2. 3.]] +not close tol = [[ 9.99999975e-05 9.99999975e-05 9.99999975e-05]] +not close where = (matrix([[ 0, 1, 2, ..., 8799, 8800, 8801]]), matrix([[8, 8, 8, ..., 8, 8, 8]])) +not close lhs = [[ 0.04937947 -0.09022072 -0.73417962 ..., 0.35674399 0.40164036 + -0.18296832]] +not close rhs = [[ 0. 0. 0. ..., 0. 0. 0.]] +not close dif = [[ 0.04937947 0.09022072 0.73417962 ..., 0.35674399 0.40164036 + 0.18296832]] +not close tol = [[ 9.99999975e-05 9.99999975e-05 9.99999975e-05 ..., 9.99999975e-05 + 9.99999975e-05 9.99999975e-05]] +not close where = (matrix([[ 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, + 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, + 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, 12, 12, 12, + 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, + 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, 20, 20, 20, 20, 21, + 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, 24, 24, 24, 24, 25, 25, + 25, 25, 26, 26, 26, 26, 27, 27, 27, 27, 28, 28, 28, 28, 29, 29, 29, + 29, 30, 30, 30, 30, 31, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33, 33, + 34, 34, 34, 34, 35, 35, 35, 35, 36, 36, 36, 36, 37, 37, 37, 37, 38, + 38, 38, 38, 39, 39, 39, 39, 40, 40, 40, 40, 41, 41, 41, 41, 42, 42, + 42, 42, 43, 43, 43, 43, 44, 44, 44, 44, 45, 45, 45, 45, 46, 46, 46, + 46, 47, 47, 47, 47, 48, 48, 48, 48, 49, 49, 49, 49, 50, 50, 50, 50, + 51, 51, 51, 51, 52, 52, 52, 52, 53, 53, 53, 53, 54, 54, 54, 54, 55, + 55, 55, 55, 56, 56, 56, 56, 57, 57, 57, 57, 58, 58, 58, 58, 59, 59, + 59, 59, 60, 60, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 63, 63, 63, + 63, 64, 64, 64, 64, 65, 65, 65, 65, 66, 66, 66, 66]]), matrix([[ 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, + 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, + 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, + 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, + 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, + 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, + 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, + 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, + 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, + 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, + 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, + 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, + 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, + 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, + 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, + 11, 8, 9, 10, 11, 8, 9, 10, 11, 8, 9, 10, 11]])) +not close lhs = [[ -1.31439656e-01 -3.21668649e+00 -3.08524299e+00 -1.60364616e+00 + 3.98836851e-01 4.96925640e+00 -2.04296961e-01 -4.37412691e+00 + 1.18031132e+00 -2.90053654e+00 1.32576418e+00 -1.01599085e+00 + -9.86299396e-01 -2.36407709e+00 1.86102128e+00 1.70819557e+00 + 3.61034870e-01 -5.37171423e-01 -1.53847420e+00 -1.78374982e+00 + 7.71577895e-01 -2.44058013e+00 1.95751297e+00 2.41070008e+00 + 2.38843369e+00 -9.69088227e-02 -5.07847166e+00 -2.81239843e+00 + -6.92165494e-01 7.20401645e-01 5.72250485e-01 2.18734646e+00 + 1.01090801e+00 -2.39274621e+00 1.54835618e+00 1.54042196e+00 + -1.05857265e+00 -3.08068953e-02 9.45529938e-01 -1.08479333e+00 + 2.91914463e+00 -3.20323038e+00 3.90981853e-01 3.74233097e-01 + -7.01802909e-01 3.01098633e+00 -1.91341352e+00 -2.13684034e+00 + -1.53948259e+00 -2.81101823e+00 4.31171560e+00 -2.44319327e-02 + 3.42954993e+00 2.10023332e+00 -1.47047544e+00 -5.51807642e-01 + -1.18433237e-02 -2.02151871e+00 3.53267074e+00 -7.13003516e-01 + -3.86867940e-01 3.35999417e+00 -3.34232628e-01 2.07264233e+00 + -6.46903694e-01 1.53016174e+00 -4.23342049e-01 -8.64547193e-01 + 2.89882874e+00 -3.19924808e+00 -2.42323637e+00 -1.87528253e+00 + -1.60608447e+00 -2.75952959e+00 -8.20093006e-02 2.20679331e+00 + 2.21714520e+00 -3.00459957e+00 2.20182729e+00 3.90113473e-01 + 2.75266218e+00 2.53526425e+00 2.39990234e-01 1.70472115e-01 + 3.41660500e+00 -9.17422473e-02 6.23587012e-01 1.41332671e-01 + -2.63433599e+00 -2.32870317e+00 -2.52610731e+00 -2.52454376e+00 + 1.08173048e+00 -2.94249892e-01 -3.09525037e+00 3.22372270e+00 + 1.40345514e+00 1.31305707e+00 4.05001342e-01 1.25946689e+00 + 2.33732390e+00 2.75022984e+00 -9.13343310e-01 5.46533465e-01 + 2.02388096e+00 -1.49842358e+00 -1.60352659e+00 2.86327171e+00 + 1.33094835e+00 -1.78400910e+00 -3.34557056e-01 1.02086723e-01 + -2.41247487e+00 1.11604482e-02 1.60907841e+00 6.42362833e-01 + 8.34286451e-01 3.35072327e+00 -4.23063159e-01 4.95716143e+00 + -1.79171002e+00 -2.76293492e+00 -2.00095177e-02 1.04396701e+00 + 2.67984271e-02 9.54926610e-01 -8.79822850e-01 -1.39900970e+00 + 1.23293638e+00 7.70097971e-01 -2.79217958e+00 -1.92546487e+00 + 5.69071651e-01 2.35554361e+00 3.63505125e-01 2.96034002e+00 + -3.19206381e+00 -1.15668774e+00 4.29582071e+00 1.13355672e+00 + 2.66114414e-01 5.30757368e-01 7.63379216e-01 2.80889082e+00 + -1.35805976e+00 -5.89022040e-01 6.83192492e-01 1.04399216e+00 + -4.62127638e+00 -2.85524964e+00 7.98025250e-01 2.51919699e+00 + 1.12208390e+00 -2.36325455e+00 3.08229423e+00 5.50124311e+00 + 1.92323637e+00 6.29468679e-01 2.31869340e-01 -2.53887796e+00 + 9.95655656e-02 -1.53827310e+00 1.22495639e+00 -3.73565555e-02 + -1.34720552e+00 -3.85502434e+00 3.88512611e+00 4.91035843e+00 + -2.98843265e+00 -6.21144831e-01 -5.54570317e-01 2.14531350e+00 + 4.62576747e-03 -6.84234738e-01 -1.08340907e+00 7.02568531e-01 + -4.05059159e-02 2.30141902e+00 -7.39088655e-03 2.54536819e+00 + 1.84125125e-01 -3.27037883e+00 5.93923569e-01 3.54429245e-01 + -2.14336300e+00 -2.16838717e+00 -2.16559076e+00 4.29956293e+00 + 1.45331383e+00 -3.82849693e-01 5.01305759e-02 5.57123566e+00 + 8.47920716e-01 -2.27812409e+00 -6.00414217e-01 -1.39518946e-01 + -2.14750528e-01 -1.25605190e+00 1.82401943e+00 2.09787488e+00 + 3.79278541e-01 -2.41999984e+00 -2.08113098e+00 -5.76367795e-01 + -1.56716084e+00 -1.09769845e+00 3.12824082e+00 2.05429935e+00 + -4.42070866e+00 -1.55336928e+00 7.69844532e-01 1.81820285e+00 + 1.54743218e+00 -2.88043618e+00 -2.02003431e+00 -1.47009277e+00 + 7.24031746e-01 4.59853053e-01 -3.25540638e+00 3.20774746e+00 + 4.39090538e+00 1.52331865e+00 1.48553705e+00 -7.83098698e-01 + 2.37720013e+00 2.77097321e+00 1.77653730e-01 -2.25893593e+00 + -5.74981165e+00 1.77001894e+00 4.22577620e+00 4.69938934e-01 + 1.48935986e+00 1.84401369e+00 2.69780326e+00 2.21367645e+00 + -2.01170254e+00 -3.74264908e+00 1.87245989e+00 2.79085422e+00 + -2.35714912e+00 -5.21047831e-01 -1.81341171e-02 5.90688348e-01 + -1.27492070e+00 1.90404201e+00 8.81620646e-02 1.05626154e+00 + -2.32681680e+00 6.34931028e-03 -8.84685636e-01 -5.51878750e-01 + -2.91957498e+00 1.10797143e+00 -5.46538830e-01 3.58290172e+00 + 2.93973386e-01 -1.72236693e+00 1.52911448e+00 4.35800970e-01 + 2.31481338e+00 9.85954046e-01 -1.76391125e+00 -4.45128143e-01 + 2.21289843e-01 -2.11004353e+00 1.10728168e+00 -2.17830443e+00]] +not close rhs = [[ 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]] +not close dif = [[ 1.31439656e-01 3.21668649e+00 3.08524299e+00 1.60364616e+00 + 3.98836851e-01 4.96925640e+00 2.04296961e-01 4.37412691e+00 + 1.18031132e+00 2.90053654e+00 1.32576418e+00 1.01599085e+00 + 9.86299396e-01 2.36407709e+00 1.86102128e+00 1.70819557e+00 + 3.61034870e-01 5.37171423e-01 1.53847420e+00 1.78374982e+00 + 7.71577895e-01 2.44058013e+00 1.95751297e+00 2.41070008e+00 + 2.38843369e+00 9.69088227e-02 5.07847166e+00 2.81239843e+00 + 6.92165494e-01 7.20401645e-01 5.72250485e-01 2.18734646e+00 + 1.01090801e+00 2.39274621e+00 1.54835618e+00 1.54042196e+00 + 1.05857265e+00 3.08068953e-02 9.45529938e-01 1.08479333e+00 + 2.91914463e+00 3.20323038e+00 3.90981853e-01 3.74233097e-01 + 7.01802909e-01 3.01098633e+00 1.91341352e+00 2.13684034e+00 + 1.53948259e+00 2.81101823e+00 4.31171560e+00 2.44319327e-02 + 3.42954993e+00 2.10023332e+00 1.47047544e+00 5.51807642e-01 + 1.18433237e-02 2.02151871e+00 3.53267074e+00 7.13003516e-01 + 3.86867940e-01 3.35999417e+00 3.34232628e-01 2.07264233e+00 + 6.46903694e-01 1.53016174e+00 4.23342049e-01 8.64547193e-01 + 2.89882874e+00 3.19924808e+00 2.42323637e+00 1.87528253e+00 + 1.60608447e+00 2.75952959e+00 8.20093006e-02 2.20679331e+00 + 2.21714520e+00 3.00459957e+00 2.20182729e+00 3.90113473e-01 + 2.75266218e+00 2.53526425e+00 2.39990234e-01 1.70472115e-01 + 3.41660500e+00 9.17422473e-02 6.23587012e-01 1.41332671e-01 + 2.63433599e+00 2.32870317e+00 2.52610731e+00 2.52454376e+00 + 1.08173048e+00 2.94249892e-01 3.09525037e+00 3.22372270e+00 + 1.40345514e+00 1.31305707e+00 4.05001342e-01 1.25946689e+00 + 2.33732390e+00 2.75022984e+00 9.13343310e-01 5.46533465e-01 + 2.02388096e+00 1.49842358e+00 1.60352659e+00 2.86327171e+00 + 1.33094835e+00 1.78400910e+00 3.34557056e-01 1.02086723e-01 + 2.41247487e+00 1.11604482e-02 1.60907841e+00 6.42362833e-01 + 8.34286451e-01 3.35072327e+00 4.23063159e-01 4.95716143e+00 + 1.79171002e+00 2.76293492e+00 2.00095177e-02 1.04396701e+00 + 2.67984271e-02 9.54926610e-01 8.79822850e-01 1.39900970e+00 + 1.23293638e+00 7.70097971e-01 2.79217958e+00 1.92546487e+00 + 5.69071651e-01 2.35554361e+00 3.63505125e-01 2.96034002e+00 + 3.19206381e+00 1.15668774e+00 4.29582071e+00 1.13355672e+00 + 2.66114414e-01 5.30757368e-01 7.63379216e-01 2.80889082e+00 + 1.35805976e+00 5.89022040e-01 6.83192492e-01 1.04399216e+00 + 4.62127638e+00 2.85524964e+00 7.98025250e-01 2.51919699e+00 + 1.12208390e+00 2.36325455e+00 3.08229423e+00 5.50124311e+00 + 1.92323637e+00 6.29468679e-01 2.31869340e-01 2.53887796e+00 + 9.95655656e-02 1.53827310e+00 1.22495639e+00 3.73565555e-02 + 1.34720552e+00 3.85502434e+00 3.88512611e+00 4.91035843e+00 + 2.98843265e+00 6.21144831e-01 5.54570317e-01 2.14531350e+00 + 4.62576747e-03 6.84234738e-01 1.08340907e+00 7.02568531e-01 + 4.05059159e-02 2.30141902e+00 7.39088655e-03 2.54536819e+00 + 1.84125125e-01 3.27037883e+00 5.93923569e-01 3.54429245e-01 + 2.14336300e+00 2.16838717e+00 2.16559076e+00 4.29956293e+00 + 1.45331383e+00 3.82849693e-01 5.01305759e-02 5.57123566e+00 + 8.47920716e-01 2.27812409e+00 6.00414217e-01 1.39518946e-01 + 2.14750528e-01 1.25605190e+00 1.82401943e+00 2.09787488e+00 + 3.79278541e-01 2.41999984e+00 2.08113098e+00 5.76367795e-01 + 1.56716084e+00 1.09769845e+00 3.12824082e+00 2.05429935e+00 + 4.42070866e+00 1.55336928e+00 7.69844532e-01 1.81820285e+00 + 1.54743218e+00 2.88043618e+00 2.02003431e+00 1.47009277e+00 + 7.24031746e-01 4.59853053e-01 3.25540638e+00 3.20774746e+00 + 4.39090538e+00 1.52331865e+00 1.48553705e+00 7.83098698e-01 + 2.37720013e+00 2.77097321e+00 1.77653730e-01 2.25893593e+00 + 5.74981165e+00 1.77001894e+00 4.22577620e+00 4.69938934e-01 + 1.48935986e+00 1.84401369e+00 2.69780326e+00 2.21367645e+00 + 2.01170254e+00 3.74264908e+00 1.87245989e+00 2.79085422e+00 + 2.35714912e+00 5.21047831e-01 1.81341171e-02 5.90688348e-01 + 1.27492070e+00 1.90404201e+00 8.81620646e-02 1.05626154e+00 + 2.32681680e+00 6.34931028e-03 8.84685636e-01 5.51878750e-01 + 2.91957498e+00 1.10797143e+00 5.46538830e-01 3.58290172e+00 + 2.93973386e-01 1.72236693e+00 1.52911448e+00 4.35800970e-01 + 2.31481338e+00 9.85954046e-01 1.76391125e+00 4.45128143e-01 + 2.21289843e-01 2.11004353e+00 1.10728168e+00 2.17830443e+00]] +not close tol = [[ 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99F. +====================================================================== +FAIL: testGradientInput (__main__.MatMulGradientTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 132, in testGradientInput + a_dtype, b_dtype, name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 121, in _testGradients + self.assertLess(err, 1/128.) +AssertionError: 1.0 not less than 0.0078125 + +====================================================================== +FAIL: testBasic (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 65, in testBasic + self._testCpuMatmul(x, y, x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: matrix([[ 0., 0.], + [-1., 0.], + [-2., 0.], + [-3., 0.]], dtype=float32) + y: array([[ 0., 0.], + [ 0., 0.], + [ 0., 0.], + [ 0., 0.]], dtype=float32) + +====================================================================== +FAIL: testLarge (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 79, in testLarge + self._testCpuMatmul(x, y, x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: matrix([[ 0.30360049, 0.41017002, 0.35777432, ..., -1.49522543, + 0.50303799, 0.04937947], + [-0.37559959, 0.4757838 , 0.22070363, ..., -0.23823348,... + y: array([[ 0.30360049, 0.41017002, 0.35777432, ..., -1.49522543, + 0.50303799, 0. ], + [-0.37559959, 0.4757838 , 0.22070363, ..., -0.23823348,... + +====================================================================== +FAIL: testRandom (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 93, in testRandom + x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 1183, in assert_allclose + verbose=verbose, header=header) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: matrix([[ -1.65894523e-01, -3.90920877e+00, -2.66689730e+00, + -3.26215529e+00, 7.24363446e-01, 2.83238506e+00, + 5.23443818e-01, -3.41511321e+00, -1.31439656e-01,... + y: array([[-0.16589451, -3.90920925, -2.6668973 , -3.26215553, 0.72436345, + 2.83238506, 0.52344388, -3.41511273, 0. , 0. , + 0. , 0. ],... + +---------------------------------------------------------------------- +Ran 6 tests in 1.987s + +FAILED (failures=4) +999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..efbbce1ce04ea6a9255ea739d927411a02904736 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ad63a368c5320b4306974ca9ff3cb0c97228eb07 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5f2ccb8bc867bc3acd2336b6dee58b66b199a2c1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log @@ -0,0 +1,248 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.....not equal where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]), array([0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, + 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9, 9, 0, 0, 0, + 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, + 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 0, 0, 1, 1, 1, 1, 3, 3, + 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 7, + 7, 7, 7, 7, 8, 8, 8, 9, 9, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, + 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, + 8, 8, 8, 8, 8, 8, 8, 8, 9, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, + 3, 3, 3, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 8, 8, 8, 8, 9, 0, 1, 1, 1, + 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, + 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, + 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 0, 0, 0, 0, 0, 0, 1, 1, + 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 6, 6, 6, 6, 7, 7, 7, 7, + 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 0, 0, 0, 2, 2, 2, 2, 2, 2, + 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6, 6, 7, + 8, 8, 8, 8, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, + 3, 3, 3, 3, 5, 5, 5, 5, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 9]), array([0, 3, 7, 9, 1, 6, 8, 1, 3, 4, 6, 1, 3, 6, 7, 8, 9, 2, 4, 7, 8, 3, 4, + 6, 7, 9, 0, 3, 4, 7, 0, 1, 3, 8, 9, 3, 7, 8, 1, 2, 3, 4, 8, 0, 3, 4, + 6, 7, 8, 0, 2, 4, 5, 7, 8, 9, 1, 3, 5, 6, 8, 9, 3, 8, 9, 2, 4, 0, 3, + 4, 6, 8, 9, 0, 3, 5, 7, 9, 5, 6, 9, 1, 4, 5, 6, 7, 1, 3, 4, 6, 0, 1, + 2, 4, 5, 6, 9, 1, 4, 5, 9, 0, 1, 3, 4, 6, 7, 9, 0, 2, 5, 6, 9, 0, 2, + 3, 5, 7, 8, 0, 6, 8, 0, 9, 1, 3, 4, 5, 7, 9, 0, 1, 2, 3, 6, 8, 9, 3, + 4, 7, 8, 9, 4, 6, 7, 8, 9, 0, 2, 6, 7, 4, 5, 7, 0, 2, 3, 5, 6, 8, 9, + 0, 1, 3, 4, 5, 6, 7, 9, 8, 0, 2, 5, 6, 9, 2, 3, 5, 1, 3, 4, 0, 2, 3, + 4, 5, 6, 1, 2, 4, 7, 0, 5, 7, 9, 1, 2, 6, 2, 3, 5, 8, 8, 4, 0, 1, 5, + 6, 7, 9, 3, 4, 6, 0, 6, 8, 9, 1, 3, 4, 6, 9, 0, 1, 3, 9, 2, 4, 6, 7, + 8, 0, 2, 6, 7, 8, 9, 1, 4, 6, 8, 0, 1, 2, 3, 4, 5, 7, 8, 9, 0, 3, 5, + 6, 7, 8, 9, 0, 1, 4, 9, 0, 2, 5, 8, 1, 4, 5, 6, 0, 4, 8, 0, 7, 3, 5, + 6, 8, 0, 1, 3, 4, 6, 7, 0, 1, 3, 4, 7, 8, 8, 0, 1, 3, 6, 7, 8, 2, 4, + 5, 6, 3, 4, 6, 8, 0, 5, 6, 7, 0, 2, 3, 9, 9, 1, 2, 5, 7, 1, 2, 3, 4, + 7, 9, 1, 2, 3, 5, 6, 7, 8, 9, 0, 1, 2, 5, 7, 8, 9, 0, 1, 3, 4, 5, 6, + 8, 9, 5, 6, 8, 9, 0, 1, 2, 3, 6, 7, 9, 2, 3, 5, 6, 7, 3, 5, 6, 7, 3, + 0, 1, 3, 4, 0, 2, 3, 7, 8, 0, 1, 3, 4, 8, 3, 5, 6, 7, 0, 2, 4, 8, 0, + 2, 5, 7, 8, 2, 3, 4, 7, 2, 3, 5, 6, 0, 3, 5, 6, 7, 9, 6])) +not equal lhs = [ 0.93883246 1.01412082 0.98917174 1.04442954 1.11498821 1.18377244 + 1.41320956 1.72191668 1.42732489 1.52235126 1.63421333 1.32268047 + 1.12496412 1.11795437 1.21126854 1.16689777 1.23630023 0.78649241 + 0.92368329 0.79907608 1.01181257 1.31423771 1.2012645 1.28815663 + 1.31620753 1.09440219 1.35614562 1.14697075 1.11604321 1.1350255 + 1.6346283 1.59353864 1.52454376 1.49814773 1.39079022 1.282372 + 1.2972337 1.13939655 1.30551422 1.34149504 1.08525705 1.05065954 + 1.16195571 1.17801607 1.53945553 1.44759643 1.46756613 1.48310792 + 1.16574812 1.22055638 1.35837507 1.28036213 1.43654466 1.12049365 + 1.32362831 1.12595546 0.86506325 0.94924033 0.96520245 1.03020537 + 1.04717636 0.95454013 0.96508747 0.97169071 1.07450223 1.03588724 + 0.89996493 1.65730059 1.49927676 1.58228612 1.58865321 1.56888747 + 1.35639453 1.02387655 1.12912381 1.02888203 1.14986372 1.09167993 + 0.97614282 1.04295564 0.96051681 1.28649199 1.14548635 1.3167758 + 1.213359 1.16256487 0.90588224 1.08574367 0.90841848 0.91578311 + 1.48579407 1.20673347 1.58917165 1.31684196 1.2462635 1.54609632 + 1.56409431 1.24874079 1.13491189 1.14552546 1.1397649 1.09881341 + 1.10756862 1.04179132 1.03767979 0.93031687 1.06422985 0.86935943 + 1.31033266 1.26018333 1.22580719 1.28241241 1.3904649 1.19793713 + 1.08821189 1.13354897 1.41056168 1.39219546 1.39167416 0.86524206 + 1.07468259 1.02881157 1.07225275 1.00980592 1.1994462 1.17196774 + 1.23576534 1.25726914 1.10694277 1.12282157 1.1419729 1.09428322 + 1.1452626 1.00272644 0.9638353 0.99178475 1.18823588 1.09030175 + 1.24002337 1.23045754 1.09861231 1.40649354 0.98340696 0.85614675 + 1.03654957 1.05377281 0.95178211 1.93230462 1.0736891 0.93313354 + 1.16341269 0.87739974 1.03999639 0.87591141 1.0043416 0.77491444 + 0.78634381 0.82632381 0.79412818 0.92252457 0.98563951 1.0236845 + 0.83707905 0.96254623 1.00506973 1.05782831 0.83483416 0.97586596 + 1.03149772 0.94150227 1.18992078 1.19702494 1.23734558 1.15662861 + 1.21801579 1.00263464 0.9644751 0.98766625 1.15877569 1.04979408 + 1.05608058 1.2758739 1.59814727 1.62206244 1.30457532 1.59922481 + 1.27338827 1.10366547 0.97534913 1.08479655 0.93684256 0.91464365 + 1.11301339 0.92456627 0.97270304 1.84972203 1.58119845 1.40268159 + 1.7336247 1.71979594 1.75598657 1.76363933 1.3446542 1.29728019 + 1.67375672 1.44586372 1.53369665 1.67207813 1.53068101 1.55544662 + 1.50514412 1.50854683 1.35637283 1.4279834 1.40714574 1.56039524 + 1.49232936 1.2645632 1.32482624 1.55801892 1.37182486 1.48415077 + 1.06471443 1.17935014 1.03645039 1.19973803 0.92274117 0.91688842 + 0.98023123 0.96189475 0.92134273 0.99655902 1.01418757 0.87509048 + 0.8761009 1.04100728 0.86904478 1.07015514 0.963283 0.94498336 + 1.24122381 0.93329 0.94567114 0.95357239 0.94490588 1.05836987 + 0.99792701 0.93077719 0.90863311 1.02015924 1.49024427 1.67939699 + 1.46806657 1.65143466 1.43343747 1.55823791 1.29081964 0.98355108 + 0.93391114 0.91423965 0.91499245 1.14499271 1.25250089 1.06988943 + 1.00693142 1.15872467 1.12303507 1.1517626 0.98017865 1.04301512 + 0.80651581 0.91784334 1.33782852 1.35280013 1.7105906 1.35776448 + 1.52493727 1.39858782 0.95595419 0.92611182 0.88103217 1.00308454 + 0.8825987 1.05353808 0.97518027 0.97335732 1.10347879 1.20175874 + 1.22251678 1.05430853 0.9816162 1.4029125 1.22241735 1.26785314 + 1.35851586 1.28730702 1.49132931 1.47668922 1.81627822 1.8282907 + 1.53599763 0.92612237 1.05179524 0.80324739 1.04858291 1.08642101 + 1.22706699 1.24151528 1.17048371 1.00382006 1.00587213 1.01189816 + 0.97098178 1.32104945 0.97928566 1.00006676 1.15341663 1.17365289 + 1.144889 0.96942276 0.9122178 0.97917837 0.87845093 0.96327084 + 0.93321049 1.06022632 1.04467654 0.97008497 1.11130297 1.08575737 + 0.9047932 1.01635325 1.14553821 1.09362257 0.99051166 0.93589759 + 1.49712348 1.53561711 1.17547917 1.55859458 1.61901748 1.27386403 + 1.6191802 1.47757244 1.41475761 1.37239528 1.50032294 1.57396269 + 1.4278667 1.36602139 1.64113379 1.08959889 0.84157526 1.05351937 + 0.87561631 1.09985077 0.98236728 1.09558809 0.81477076 0.95304674 + 0.86286199 0.86340171 0.79288089 1.04264688 0.81647259 1.07429504 + 0.93737626 1.54525375 1.01245928 1.00670481 0.79214931 0.88937306 + 0.85520023 0.91740298 0.80427349 0.97566557 0.9930687 1.54951632 + 1.6008054 1.62522328 1.51110744 1.54766774 1.68847442 1.36400425 + 1.32563519 1.41437995 1.2946012 1.26156092 1.24498987 1.4001478 + 1.70420289 1.63268793 1.37846911 1.68596375 1.37309122 1.3672173 + 1.22063684 1.37420046 1.4589361 1.33770514 1.3502841 1.32706487 + 1.62423027 1.27113318 1.34275687 1.34105778 1.36394382 1.3162694 + 1.18009806 1.0976553 ] +not equal rhs = [ 0.93882942 1.0141176 0.98916852 1.04442608 1.11498797 1.18377221 + 1.41320932 1.72191644 1.42732477 1.52235115 1.63421309 1.32267821 + 1.12496221 1.11795247 1.21126652 1.16689575 1.2362982 0.78649139 + 0.92368215 0.79907507 1.01181126 1.31423759 1.20126438 1.28815651 + 1.31620741 1.09440207 1.35614276 1.14696848 1.11604095 1.13502324 + 1.63462591 1.59353638 1.5245415 1.49814558 1.3907882 1.28237164 + 1.29723334 1.13939619 1.30551112 1.34149194 1.08525455 1.05065703 + 1.16195297 1.17801523 1.53945446 1.44759548 1.46756518 1.48310685 + 1.16574728 1.22055554 1.35837412 1.28036118 1.4365437 1.12049294 + 1.32362747 1.12595463 0.86506283 0.94923985 0.96520197 1.03020489 + 1.04717588 0.95453972 0.96508586 0.97168905 1.07450044 1.03588736 + 0.89996505 1.65729797 1.49927425 1.5822835 1.58865058 1.56888497 + 1.35639226 1.02387631 1.12912345 1.02888179 1.14986348 1.09167969 + 0.97614235 1.04295504 0.96051633 1.28648996 1.14548457 1.31677377 + 1.21335888 1.16256475 0.90588045 1.08574152 0.90841669 0.91578132 + 1.4857862 1.20672715 1.58916318 1.31683493 1.24625695 1.54608822 + 1.56408596 1.24873662 1.1349082 1.14552164 1.13976109 1.09881318 + 1.10756826 1.04179096 1.03767955 0.93031657 1.06422961 0.86935914 + 1.31033206 1.26018262 1.22580647 1.28241169 1.39046419 1.19793236 + 1.0882076 1.13354456 1.41055608 1.39218998 1.39166856 0.86524212 + 1.07468271 1.02881169 1.07225108 1.00980437 1.19944382 1.17196536 + 1.23576295 1.25726664 1.10694051 1.1228193 1.14196682 1.0942775 + 1.14525652 1.00272119 0.96383017 0.99177951 1.18822956 1.09029663 + 1.24001765 1.23045182 1.09860718 1.40648711 0.98340476 0.85614479 + 1.03654718 1.05377042 0.95177996 1.9323045 1.07368863 0.93313313 + 1.16341221 0.8773995 1.03999615 0.87591124 1.00433969 0.77491295 + 0.78634226 0.8263222 0.79412663 0.92252278 0.98563755 1.02368307 + 0.83707786 0.96254492 1.0050683 1.05782688 0.83483303 0.97586459 + 1.03149629 0.94150233 1.18991983 1.19702411 1.23734462 1.15662777 + 1.21801484 1.00263214 0.96447265 0.98766381 1.15877151 1.04979026 + 1.05607688 1.27587378 1.59814703 1.62206233 1.30457509 1.59922457 + 1.27338815 1.10366488 0.97534853 1.08479595 0.93684202 0.91464341 + 1.11301315 0.92456603 0.9727028 1.84971893 1.58119571 1.4026792 + 1.73362112 1.71979237 1.75598288 1.76363575 1.34464931 1.29728007 + 1.67374337 1.44585228 1.53368449 1.67206478 1.53066885 1.55543423 + 1.50514317 1.50854576 1.35637188 1.42798257 1.4071449 1.56039429 + 1.49232852 1.26456296 1.324826 1.55801857 1.37182462 1.48415041 + 1.06471395 1.17934966 1.03644991 1.19973755 0.92273968 0.91688693 + 0.98022962 0.9618932 0.92134124 0.99655503 1.01418352 0.87508696 + 0.87609738 1.04100311 0.86904132 1.07015431 0.96328217 0.94498253 + 1.24122286 0.93328905 0.94567019 0.95357144 0.94490498 1.0583688 + 0.997926 0.9307763 0.90863222 1.02015817 1.49023616 1.67938793 + 1.46805859 1.65142572 1.43342972 1.55822945 1.29081261 0.98355073 + 0.93391079 0.91423929 0.91499215 1.144FF......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Operands do not have the same ranks; got shapes: 1 1 and 2 + [[Node: SparseSparseMaximum = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseTensor_1/indices, SparseTensor_1/values, SparseTensor_1/shape)]] +E tensorflow/core/client/tensor_c_api.cc:485] Operands do not have the same ranks; got shapes: 1 1 and 2 + [[Node: SparseSparseMaximum = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseTensor_1/indices, SparseTensor_1/values, SparseTensor_1/shape)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Operands' shapes do not match: got 1 and 2 for dimension 0 + [[Node: SparseSparseMaximum_1 = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor_3/indices, SparseTensor_3/values, SparseTensor_3/shape, SparseTensor_4/indices, SparseTensor_4/values, SparseTensor_4/shape)]] +E tensorflow/core/client/tensor_c_api.cc:485] Operands' shapes do not match: got 1 and 2 for dimension 0 + [[Node: SparseSparseMaximum_1 = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor_3/indices, SparseTensor_3/values, SparseTensor_3/shape, SparseTensor_4/indices, SparseTensor_4/values, SparseTensor_4/shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension -3, for input with 2 dimensions. + [[Node: SparseReduceSum = SparseReduceSum[T=DT_INT32, keep_dims=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseReduceSum/reduction_axes)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 2, for input with 2 dimensions. + [[Node: SparseReduceSum_1 = SparseReduceSum[T=DT_INT32, keep_dims=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseReduceSum_1/reduction_axes)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +..E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [Shape:0] [3] [y = ] [Shape_1:0] [2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, Shape, assert_equal/Assert/data_3, assert_equal/Assert/data_4, Shape_1)]] +............... +====================================================================== +FAIL: testCwiseDivAndMul (__main__.SparseMathOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 535, in testCwiseDivAndMul + self._check(sp_t / dense_t, sp_t_densified / dense_vals_np, sp_t) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 519, in _check + self.assertAllEqual(result_np, res_densified) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 492, in assertAllEqual + np.testing.assert_array_equal(a, b) + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 718, in assert_array_equal + verbose=verbose, header='Arrays are not equal') + File "/usr/lib/python2.7/dist-packages/numpy/testing/utils.py", line 644, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Arrays are not equal + +(mismatch 41.0%) + x: array([[[ 0.93883246, 0. , 0. , 1.01412082, 0. , + 0. , 0. , 0.98917174, 0. , 1.04442954], + [ 0. , 1.11498821, 0. , 0. , 0. ,... + y: array([[[ 0.93882942, 0. , 0. , 1.0141176 , 0. , + 0. , 0. , 0.98916852, 0. , 1.04442608], + [ 0. , 1.11498797, 0. , 0. , 0. ,... + +====================================================================== +FAIL: testGradients (__main__.SparseMathOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 587, in testGradients + self.assertLess(err, 2e-4) +AssertionError: 0.0044629574 not less than 0.0002 + +---------------------------------------------------------------------- +Ran 40 tests in 32.720s + +FAILED (failures=2) +99235 1.25250041 1.06988907 + 1.00693095 1.15872324 1.12303364 1.15176117 0.9801774 1.0430125 + 0.80651373 0.91784096 1.33782864 1.35280025 1.71058965 1.35776365 + 1.52493632 1.39858699 0.95595372 0.92611134 0.88103169 1.00308406 + 0.88259828 1.05353749 0.97518009 0.97335714 1.10347867 1.2017585 + 1.22251654 1.0543083 0.98161614 1.40291142 1.2224164 1.26785219 + 1.35851479 1.28730607 1.49132812 1.47668886 1.81627786 1.82829046 + 1.53599739 0.92612141 1.05179417 0.80324656 1.04858184 1.08641994 + 1.22706592 1.24151409 1.17048252 1.00381994 1.00587201 1.01189792 + 0.97098154 1.32104933 0.97928256 1.00006354 1.15341294 1.17364919 + 1.1448884 0.96942222 0.91221726 0.97917777 0.87845045 0.96327025 + 0.93321007 1.06022584 1.04467607 0.97008449 1.11130238 1.0857569 + 0.90479273 1.01635277 1.14553726 1.09362173 0.99051088 0.93589687 + 1.49712336 1.53561687 1.17547905 1.55859387 1.61901677 1.27386343 + 1.61917949 1.47757185 1.41475701 1.37239468 1.50032234 1.57395852 + 1.42786288 1.36601782 1.64112949 1.08959842 0.84157497 1.05351889 + 0.87561595 1.09985042 0.98236686 1.09558773 0.81477064 0.95304662 + 0.86286193 0.86340159 0.79288083 1.04264677 0.81647253 1.07429492 + 0.9373762 1.54525363 1.01245809 1.00670362 0.79214841 0.88937205 + 0.85519928 0.91740197 0.80427259 0.9756645 0.99306756 1.5495162 + 1.60080528 1.62522316 1.51110733 1.54766762 1.68847418 1.36400414 + 1.32563508 1.41437972 1.29460073 1.26156044 1.2449894 1.4001472 + 1.70420277 1.63268781 1.37846899 1.68596363 1.3730911 1.36721718 + 1.22063673 1.37420034 1.45893598 1.33770168 1.35028064 1.32706153 + 1.62422609 1.27113307 1.34275675 1.34105754 1.3639437 1.31626928 + 1.18009794 1.09765399] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e0cb75f03d6f29a4fa2939d10c332786da82ed5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..995f7d617204cda093873f31c3194513c3954bde --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..de4c7f310b65dcb7f22d0280c01f4e02a30241d5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 1.423s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a578318b5e291aece3fd23145f770b6ac2408bd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..64ce56e3af6eaf59ad03004b76b0fe1afec57fa1 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..88131b729567824c3878fd720eec538ee283af7b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] Input to reshape is a tensor with 30 dense values, but the requested shape has 28 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Input to reshape is a SparseTensor with 30 dense values, but the requested shape requires a multiple of 4 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +.E tensorflow/core/client/tensor_c_api.cc:485] only one output shape size may be -1, not both 1 and 2 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +......... +---------------------------------------------------------------------- +Ran 14 tests in 5.224s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebd9d9174c9d7c4d380b3edb324592e7bdd36639 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..83c1185d47e1cfee26e1141e7f131e77d48ebbd9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status @@ -0,0 +1 @@ +HLR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log`L \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d8a1c0a771ec631a67cc6858ec7927817fd872ae --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Inconsistent rank across SparseTensors: rank prior to SparseTensor[1] was: 3 but rank of SparseTensor[1] is: 4 + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Could not parse serialized_sparse[1, 0] + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Requested SparseTensor of type int64 but SparseTensor[0].values.dtype() == int32 + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.... +---------------------------------------------------------------------- +Ran 6 tests in 0.333s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9b038c58b044f392b2485ca0ac533f984e69aa0e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fb52fdac2087a93d37057f39d2b6332d36f03442 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_split_op_test/test.log`] \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2817028ddadd4ef0238cab0cf248df9009535f59 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 0.769s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f2c8040df74055a159d732be1a1733f1a47d804f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c68d167c5598446fd1a1293d0740d58f01c3ecb9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..fc81570ec6d9f28d6ba758e1c645ec8e0feac8e0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log @@ -0,0 +1,23 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 14.453s + +OK +sparse_tensor_dense_matmul_True_True_float32 gradient err = 0.000177145 +sparse_tensor_dense_matmul_True_False_float32 gradient err = 0.00011301 +sparse_tensor_dense_matmul_False_True_float32 gradient err = 4.93526e-05 +sparse_tensor_dense_matmul_False_False_float32 gradient err = 0.0001055 +sparse_tensor_dense_matmul_True_True_float64 gradient err = 6.61692922677e-14 +sparse_tensor_dense_matmul_True_False_float64 gradient err = 4.04787314778e-13 +sparse_tensor_dense_matmul_False_True_float64 gradient err = 1.09245945623e-13 +sparse_tensor_dense_matmul_False_False_float64 gradient err = 9.10382880193e-14 +sparse_tensor_dense_matmul_True_True_float32 gradient err = 1.29938e-05 +sparse_tensor_dense_matmul_True_False_float32 gradient err = 9.41753e-05 +sparse_tensor_dense_matmul_False_True_float32 gradient err = 0.000130296 +sparse_tensor_dense_matmul_False_False_float32 gradient err = 6.47306e-05 +sparse_tensor_dense_matmul_True_True_float64 gradient err = 2.86770607261e-13 +sparse_tensor_dense_matmul_True_False_float64 gradient err = 1.92290627865e-13 +sparse_tensor_dense_matmul_False_True_float64 gradient err = 3.95239396767e-14 +sparse_tensor_dense_matmul_False_False_float64 gradient err = 2.24265050974e-14 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2751265e83a7c52bfc1dcdbf892b9106919d9ff --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c28ac03f6a28429f32728467245384796db0960e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..24700e01bf429ad82e964c5383383ff3e6e37c95 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 63.071s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..70fbc0ebf812300d834567a625a0b1e98ff071f2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e9be3fbac96926c0f50a72c3672f6b2a64aac3a9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log`[ \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d7d1b8c0cabea610fead8f5e99ee2d2c4af83c7e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log @@ -0,0 +1,24 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] default_value should be a scalar. + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +.E tensorflow/core/client/tensor_c_api.cc:485] sparse_values has incorrect shape [3], should be [] or [2] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +..E tensorflow/core/client/tensor_c_api.cc:485] sparse_values has incorrect shape [2,1], should be [] or [2] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [10] is out of bounds: need 0 <= index < [5] +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [10] is out of bounds: need 0 <= index < [5] + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +E tensorflow/core/client/tensor_c_api.cc:485] Indices are not valid (out of bounds). Shape: [5] + [[Node: SparseToDense_1 = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense_1/sparse_indices, SparseToDense_1/output_shape, SparseToDense_1/sparse_values, SparseToDense_1/default_value)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [1] is repeated +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [1] is repeated + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [1] is out of order +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [1] is out of order + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +... +---------------------------------------------------------------------- +Ran 18 tests in 1.043s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b44896a5b5e78435db8b47473c3100c142089ae5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..95ce3aaa174a83352d1de3494ca5d6e98d70179d --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log`f \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f55fc04198804aed2fdd4250f5b3f5033b6a81a0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log @@ -0,0 +1,12 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] labels must be 1-D, but got shape [] + [[Node: SparseSoftmaxCrossEntropyWithLogits/SparseSoftmaxCrossEntropyWithLogits = SparseSoftmaxCrossEntropyWithLogits[T=DT_FLOAT, Tlabels=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseSoftmaxCrossEntropyWithLogits/Const, _recv_Placeholder_0)]] +...E tensorflow/core/client/tensor_c_api.cc:485] labels must be 1-D, but got shape [] + [[Node: SparseSoftmaxCrossEntropyWithLogits/SparseSoftmaxCrossEntropyWithLogits = SparseSoftmaxCrossEntropyWithLogits[T=DT_FLOAT, Tlabels=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_1_0, Squeeze)]] +..... +---------------------------------------------------------------------- +Ran 15 tests in 1.592s + +OK +cross entropy gradient err = 1.603745306e-08 diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..793b1ad66a68df250597db1023bfdb29fed125e0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0cf8bf4669e5efed0268b83464dadb20cb3b9b98 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/sparsemask_op_test/test.log`Y \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6c34b133957c2fe0ebf2fe6060532d4254266a43 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.073s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..27ca09227193484bc84243b7d7d2c05d72babd11 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f746989f52f607e43b368fb620e39eacbcff938a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status @@ -0,0 +1 @@ +H|R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/split_op_test/test.log`| \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5cb7fa1d7992c06890ceec58ccb26ac1fc107118 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......... +---------------------------------------------------------------------- +Ran 9 tests in 1.433s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1b2cdc08a4d829597daffa0d52013c44ec61006c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d66256a5bb2c89d65b6e6db89ae44ad70cbf08f5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/stack_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..92518e8114b2b57c985b391aa9f4011b1f69a8ad --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.W tensorflow/core/framework/op_kernel.cc:936] Already exists: Resource _stacks/foo/N10tensorflow5StackE +E tensorflow/core/client/tensor_c_api.cc:485] Resource _stacks/foo/N10tensorflow5StackE + [[Node: Stack_1 = Stack[elem_type=DT_FLOAT, stack_name="foo", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Already exists: Resource _stacks/foo/N10tensorflow5StackE +E tensorflow/core/client/tensor_c_api.cc:485] Resource _stacks/foo/N10tensorflow5StackE + [[Node: Stack_2 = Stack[elem_type=DT_FLOAT, stack_name="foo", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +....... +---------------------------------------------------------------------- +Ran 8 tests in 0.945s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..95ac5f7e0c57d4a8cf4fd649703653f9bfb45592 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e4bc6902528ae1bed975a2997d8b2513f95ba2ae --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status @@ -0,0 +1 @@ +HIR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/string_join_op_test/test.log`I \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ef60e8497094bd7f3487666ed19f20b375b2dea0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.194s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..e939efbcd5c775a4a71e3dca435eeab4488b1238 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e6372bf74ff3105ace4bfa30d1349ef7284f49fa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..616c3a6158e58c2d639af528aa8812f60192d9f5 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Key must have 2 elements + [[Node: StringToHashBucketStrong = StringToHashBucketStrong[key=[98765], num_buckets=10, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Key must have 2 elements + [[Node: StringToHashBucketStrong = StringToHashBucketStrong[key=[98765], num_buckets=10, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +..... +---------------------------------------------------------------------- +Ran 8 tests in 0.143s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ddc9553bc95bb43f71d59126b2dfe2837cc4dd9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1cf343a0ea6a29b6493b449bc377bd13a75b0a70 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status @@ -0,0 +1 @@ +HnR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/string_to_number_op_test/test.log`n \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5259e38819abf608de2b57548d9314c87a91462e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log @@ -0,0 +1,26 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in subtract + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 10foobar + [[Node: StringToNumber = StringToNumber[out_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 2.9 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: -2147483649 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 2147483648 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.097s + +OK +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4c1d824dff158f9e66d9b79d0b9e794cc934de2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ea1a7747e83e4118f4e7842bf88b5fe605b252db Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..321d0d2902383007aa4af4339fa0a7e8145748aa --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/summary_image_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a28dc37ff44f2fbbc36c6a4abbdfd5e8e7236b2f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.596s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..feaa0e6d255ea771656e8a00a29e22ed315e9df0 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2f1745a8f217526c206ec721616a57658cd6fb8f --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/summary_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..79692cbfa4a0428821e0cb3855ddd4ee549b1bbe --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 0.211s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..fa7689ad15db5832580db530ddcb07f7103d8940 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..20355bcbca927e5dcede2480ce86b210db32fd99 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/template_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..09fc06aeb911a7a188ffe48b3a288e909c94962c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................ +---------------------------------------------------------------------- +Ran 16 tests in 1.269s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..10682083a0a959af81a26386c3511fe268d684be --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a17433c3186c10d94ea7b9ac641f397eff142bdb Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..af738b30510ff705bb05d40a94f4d80308ddbc00 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log @@ -0,0 +1,136 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...........E tensorflow/core/client/tensor_c_api.cc:485] Concat saw a scalar shape at index 0 but requires at least vectors. Did you mean to call pack? + [[Node: TensorArrayConcat = TensorArrayConcat[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has inconsistent shapes. Index 0 has (excepting dimension 0) shape: [] but index 2 has (excepting dimension 0) shape: [1] + [[Node: TensorArrayConcat_1 = TensorArrayConcat[_class=["loc:@TensorArray_4"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArrayWrite_5)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has size zero, but element shape is not fully defined. Currently only static shapes are supported when packing zero-size TensorArrays. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArray/Const)]] +.......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_44: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_44: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=[1,2], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_45: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_45: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayUnpack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is float but Op requested dtype int64. + [[Node: TensorArrayRead = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_48: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_48: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index -1 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index -1 but array size is: 3 + [[Node: TensorArrayRead_2 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_2/index, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index 3 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index 3 but array size is: 3 + [[Node: TensorArrayRead_3 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_3/index, TensorArray/Const)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Expected lengths to be a vector, received shape: [] + [[Node: TensorArraySplit_1 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_1/value, _recv_Placeholder_0, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected sum of lengths to be equal to values.shape[0], but sum of lengths is 1 and value's shape is: [3] + [[Node: TensorArraySplit_3 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_3/value, TensorArraySplit_2/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected value to be at least a vector, but received shape: [] + [[Node: TensorArraySplit_5 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_5/value, TensorArraySplit_4/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray's size is not equal to the size of lengths (2 vs. 1), and the TensorArray is not marked as dynamically resizeable + [[Node: TensorArraySplit_7 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray_4"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArraySplit_7/value, TensorArraySplit_6/ToInt64, TensorArray_4/Const)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Input value must have first dimension equal to the array size (2 vs. 3) + [[Node: TensorArrayUnpack = TensorArrayUnpack[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayUnpack/value, TensorArray/Const)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_103: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_103: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_104@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_104@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_6 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad/TensorArrayGrad, TensorArrayWrite_6/index, TensorArrayWrite_6/value, TensorArrayWrite_5)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_106: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_106: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_8 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_8, TensorArrayWrite_8/index, TensorArrayWrite_8/value, TensorArrayWrite_7)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_107@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_107@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_13 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_1/TensorArrayGrad, TensorArrayWrite_13/index, TensorArrayWrite_13/value, TensorArrayWrite_12)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_109: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_109: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_15 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_16, TensorArrayWrite_15/index, TensorArrayWrite_15/value, TensorArrayWrite_14)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_110@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_110@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_20 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_2/TensorArrayGrad, TensorArrayWrite_20/index, TensorArrayWrite_20/value, TensorArrayWrite_19)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_112: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_112: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_22 = TensorArrayWrite[T=DT_DOUBLE, _class=["loc:@TensorArray_24"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_24, TensorArrayWrite_22/index, TensorArrayWrite_22/value, TensorArrayWrite_21)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_113@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_113@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_27 = TensorArrayWrite[T=DT_DOUBLE, _class=["loc:@TensorArray_24"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_3/TensorArrayGrad, TensorArrayWrite_27/index, TensorArrayWrite_27/value, TensorArrayWrite_26)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_115: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_115: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_29 = TensorArrayWrite[T=DT_COMPLEX64, _class=["loc:@TensorArray_32"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_32, TensorArrayWrite_29/index, TensorArrayWrite_29/value, TensorArrayWrite_28)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_116@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_116@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_34 = TensorArrayWrite[T=DT_COMPLEX64, _class=["loc:@TensorArray_32"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_4/TensorArrayGrad, TensorArrayWrite_34/index, TensorArrayWrite_34/value, TensorArrayWrite_33)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_118: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_118: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_36 = TensorArrayWrite[T=DT_COMPLEX128, _class=["loc:@TensorArray_40"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_40, TensorArrayWrite_36/index, TensorArrayWrite_36/value, TensorArrayWrite_35)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_119@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_119@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_41 = TensorArrayWrite[T=DT_COMPLEX128, _class=["loc:@TensorArray_40"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_5/TensorArrayGrad, TensorArrayWrite_41/index, TensorArrayWrite_41/value, TensorArrayWrite_40)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_120: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_120: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArrayWrite)]] +...E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is float but Op is trying to write dtype string. + [[Node: TensorArrayWrite = TensorArrayWrite[T=DT_STRING, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite/index, TensorArrayWrite/value, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_130: Tried to write to index -1 but array is not resizeable and size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_130: Tried to write to index -1 but array is not resizeable and size is: 3 + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_131: Tried to write to index 3 but array is not resizeable and size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_131: Tried to write to index 3 but array is not resizeable and size is: 3 + [[Node: TensorArrayWrite_2 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2/index, TensorArrayWrite_2/value, TensorArray/Const)]] +......................E tensorflow/core/client/tensor_c_api.cc:485] Concat saw a scalar shape at index 0 but requires at least vectors. Did you mean to call pack? + [[Node: TensorArrayConcat = TensorArrayConcat[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has inconsistent shapes. Index 0 has (excepting dimension 0) shape: [] but index 2 has (excepting dimension 0) shape: [1] + [[Node: TensorArrayConcat_1 = TensorArrayConcat[_class=["loc:@TensorArray_4"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArrayWrite_5)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has size zero, but element shape is not fully defined. Currently only static shapes are supported when packing zero-size TensorArrays. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArray/Const)]] +.......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_184: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_184: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=[1,2], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_185: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_185: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayUnpack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is float but Op requested dtype int64. + [[Node: TensorArrayRead = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_188: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_188: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index -1 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index -1 but array size is: 3 + [[Node: TensorArrayRead_2 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_2/index, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index 3 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index 3 but array size is: 3 + [[Node: TensorArrayRead_3 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_3/index, TensorArray/Const)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Expected lengths to be a vector, received shape: [] + [[Node: TensorArraySplit_1 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_1/value, _recv_Placeholder_0, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected sum of lengths to be equal to values.shape[0], but sum of lengths is 1 and value's shape is: [3] + [[Node: TensorArraySplit_3 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_3/value, TensorArraySplit_2/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected value to be at least a vector, but received shape: [] + [[Node: TensorArraySplit_5 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_5/value, TensorArraySplit_4/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray's size is not equal to the size of lengths (2 vs. 1), and the TensorArray is not marked as dynamically resizeable + [[Node: TensorArraySplit_7 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray_4"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArraySplit_7/value, TensorArraySplit_6/ToInt64, TensorArray_4/Const)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Input value must have first dimension equal to the array size (2 vs. 3) + [[Node: TensorArrayUnpack = TensorArrayUnpack[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayUnpack/value, TensorArray/Const)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_243: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_243: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_244@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_244@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_6 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad/TensorArrayGrad, TensorArrayWrite_6/index, TensorArrayWrite_6/value, TensorArrayWrite_5)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_246: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_246: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_8 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_8, TensorArrayWrite_8/index, TensorArrayWrite_8/value, TensorArrayWrite_7)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_247@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_247@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_13 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_1/TensorArrayGrad, TensorArrayWrite_13/index, TensorArrayWrite_13/value, TensorArrayWrite_12)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_249: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_249: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_15 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_16, TensorArrayWrite_15/index, TensorArrayWrite_15/value, TensorArrayWrite_14)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_250@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_250@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_20 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_2/TensorArrayGrad, TensorArrayWrite_20/index, TensorArrayWrite_20/value, TensorArrayWrite_19)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_252: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_252: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_22 = TensorArrayWrite[T=DT_DOUBLE, _class=["loc:@TensorArray_24"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_24, TensorArrayWrite_22/index, TensorArrayWrite_22/value, TensorArrayWrite_21)]] diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..abef3003fb5c9c4608cdaf11ac2442482068f967 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status @@ -0,0 +1 @@ +HvR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/topk_op_test/test.log`v \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..631f37f713eee838db95fa7405549517741a90a3 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Need k >= 0, got -7 + [[Node: TopKV2 = TopKV2[T=DT_FLOAT, sorted=true, _device="/job:localhost/replica:0/task:0/cpu:0"](TopKV2/input, _recv_Placeholder_0)]] +.......... +---------------------------------------------------------------------- +Ran 10 tests in 0.553s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..0656d0ffc6249a417d9cd12ef48fc3cbb7f8d23e --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..143ff93ffb118c20c94076b85394e7131ad38ca9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status @@ -0,0 +1 @@ +HOR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/trace_op_test/test.log`O \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..89740f5cf71ef8644a38aac10ea09eda69adf2ef --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 0.274s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..c77b61c61e3bf79d46dd0788282ff2c74085316a --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..411a7cbb509a80997b1e563816a2d27097664841 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/transpose_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c148aa1067ec4059d1ff93ef711b034c2003beac --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] Transposing a tensor of rank 11 is not implemented. + [[Node: transpose_1 = Transpose[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](transpose_1/x, transpose_1/perm)]] +E tensorflow/core/client/tensor_c_api.cc:485] 2 is missing from {0,1,1}. + [[Node: transpose_3 = Transpose[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](transpose_3/x, transpose_3/perm)]] +............. +---------------------------------------------------------------------- +Ran 17 tests in 26.943s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..968eb4af0adc151eea6ef5fa15adcba09e717a91 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..23335b885da385d772dd0550f89c56a060650852 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/unique_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..7c12c0538877b4f17474ab91a9dd4a8f8a338758 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 4.178s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7cccb0858831f17e8c8c6016b870af95adb646db --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..04ea1458b07849142a0a7e0bbefbd7ca64d2635c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/unpack_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..582aac1d6cc548f0679eb8d08ab4c47464ef9b96 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 8.034s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2dad1d190ef5e3bd55b69b4d0517e05dd13bbee2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..70ebe7e88b4718696ea2df9371735e37597af859 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d051f81b56cc4ada53d7dcf8ca59be4aec9920fc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/variable_scope_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a050d9bcd1b83d92745014383840c38f9d48eb59 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log @@ -0,0 +1,17 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-7786894135276671019, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-7786894135276671019, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_FLOAT, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-613720019679748764, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_FLOAT, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.............................. +---------------------------------------------------------------------- +Ran 31 tests in 3.549s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbbbe00f0cfa39674087a7ac1a0e7f0f7a0ef9b9 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a8b5b2c6feb711773ed564edacef1e96c2f088dd --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/variables_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c97244d2b7274db8174e0004bbb9cee5dcafc16c --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log @@ -0,0 +1,33 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: Variable/read = Identity[T=DT_INT32, _class=["loc:@Variable"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: Variable/read = Identity[T=DT_INT32, _class=["loc:@Variable"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: Variable_1/read = Identity[T=DT_INT32, _class=["loc:@Variable_1"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +.........E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_INT32, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=472245622735185582, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_INT32, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT32, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT32, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT64, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT64, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-9153219479801910119, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-9153219479801910119, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=8583011966251540135, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=8583011966251540135, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +........ +---------------------------------------------------------------------- +Ran 31 tests in 3.720s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bde7f2a76597754893d176a322617f69f1555171 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7bc547a72a984c26e18da5cd5af02d0eb0d55b0b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/where_op_test/test.log`X \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..99997ee6c55c09bd07f2a0bbf27e0f07b305c22b --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.055s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3715d7d3e747bf0a5fc77ab3f8e70050fc2250d7 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..34d4f2bfb870c57452965f2cb2aea77d3308d955 Binary files /dev/null and b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status differ diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f0076dfb99c1b78745199580f9567fe8aca6a077 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-opt/testlogs/tensorflow/python/kernel_tests/zero_division_test/test.log`W \ No newline at end of file diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..058b67460a263737ac553e837f83e59cb14d40dc --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log @@ -0,0 +1,31 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv = Div[T=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_1, Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_1 = Div[T=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_3, Const_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_2 = Div[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_5, Const_4)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod = Mod[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_5, Const_4)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_3 = Div[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_7, Const_6)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_1 = Mod[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_7, Const_6)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_4 = Div[T=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_9, Const_8)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_5 = Div[T=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_11, Const_10)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_6 = Div[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_13, Const_12)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_2 = Mod[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_13, Const_12)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_7 = Div[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_15, Const_14)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_3 = Mod[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_15, Const_14)]] +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.293s + +OK diff --git a/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f3600c43d553ca8f4a9c78cfcb5b78d61a9caba2 --- /dev/null +++ b/data/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/console_output.txt b/data/testlogs/python3/2016_07_17/console_output.txt new file mode 100644 index 0000000000000000000000000000000000000000..c86a55e632b6f29f32e66fc5689be7af0ac8a26a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/console_output.txt @@ -0,0 +1,196 @@ +INFO: Elapsed time: 3076.570s, Critical Path: 2235.00s +//tensorflow/python/kernel_tests:argmax_op_test PASSED in 32.3s +//tensorflow/python/kernel_tests:attention_ops_test PASSED in 21.5s +//tensorflow/python/kernel_tests:batch_matrix_band_part_op_test PASSED in 75.3s + Stats over 50 runs: max = 75.3s, min = 12.0s, avg = 23.5s, dev = 15.7s +//tensorflow/python/kernel_tests:batchtospace_op_test PASSED in 25.2s +//tensorflow/python/kernel_tests:bcast_ops_test PASSED in 19.4s +//tensorflow/python/kernel_tests:benchmark_test PASSED in 49.2s +//tensorflow/python/kernel_tests:bias_op_test PASSED in 29.9s +//tensorflow/python/kernel_tests:bitcast_op_test PASSED in 19.0s +//tensorflow/python/kernel_tests:candidate_sampler_ops_test PASSED in 20.5s +//tensorflow/python/kernel_tests:check_ops_test PASSED in 49.4s +//tensorflow/python/kernel_tests:cholesky_op_test PASSED in 38.4s +//tensorflow/python/kernel_tests:clip_ops_test PASSED in 18.7s +//tensorflow/python/kernel_tests:conv_ops_3d_test PASSED in 47.7s + Stats over 50 runs: max = 47.7s, min = 11.0s, avg = 14.7s, dev = 7.1s +//tensorflow/python/kernel_tests:conv_ops_test PASSED in 92.4s +//tensorflow/python/kernel_tests:cross_grad_test PASSED in 18.6s +//tensorflow/python/kernel_tests:ctc_decoder_ops_test PASSED in 18.0s +//tensorflow/python/kernel_tests:decode_csv_op_test PASSED in 15.4s +//tensorflow/python/kernel_tests:decode_png_op_test PASSED in 16.0s +//tensorflow/python/kernel_tests:decode_raw_op_test PASSED in 14.5s +//tensorflow/python/kernel_tests:denormal_test PASSED in 17.2s +//tensorflow/python/kernel_tests:dense_update_ops_no_tsan_test PASSED in 20.8s +//tensorflow/python/kernel_tests:dense_update_ops_test PASSED in 26.0s +//tensorflow/python/kernel_tests:depthtospace_op_test PASSED in 23.6s +//tensorflow/python/kernel_tests:division_future_test PASSED in 75.0s +//tensorflow/python/kernel_tests:dynamic_partition_op_test PASSED in 22.8s +//tensorflow/python/kernel_tests:dynamic_stitch_op_test PASSED in 24.3s +//tensorflow/python/kernel_tests:edit_distance_op_test PASSED in 20.7s +//tensorflow/python/kernel_tests:extract_image_patches_op_test PASSED in 18.7s +//tensorflow/python/kernel_tests:fft_ops_test PASSED in 17.5s +//tensorflow/python/kernel_tests:fifo_queue_test PASSED in 34.7s +//tensorflow/python/kernel_tests:gather_nd_op_test PASSED in 28.0s +//tensorflow/python/kernel_tests:gather_op_test PASSED in 17.9s +//tensorflow/python/kernel_tests:gradient_correctness_test PASSED in 17.2s +//tensorflow/python/kernel_tests:identity_op_py_test PASSED in 16.5s +//tensorflow/python/kernel_tests:in_topk_op_test PASSED in 17.9s +//tensorflow/python/kernel_tests:init_ops_test PASSED in 30.9s +//tensorflow/python/kernel_tests:io_ops_test PASSED in 17.4s +//tensorflow/python/kernel_tests:linalg_grad_test PASSED in 25.5s + Stats over 50 runs: max = 25.5s, min = 12.3s, avg = 17.1s, dev = 3.3s +//tensorflow/python/kernel_tests:linalg_ops_test PASSED in 32.4s +//tensorflow/python/kernel_tests:listdiff_op_test PASSED in 29.0s +//tensorflow/python/kernel_tests:logging_ops_test PASSED in 22.0s +//tensorflow/python/kernel_tests:lrn_op_test PASSED in 26.8s +//tensorflow/python/kernel_tests:matmul_op_test PASSED in 32.3s +//tensorflow/python/kernel_tests:matrix_inverse_op_test PASSED in 36.6s +//tensorflow/python/kernel_tests:matrix_solve_ls_op_test PASSED in 25.4s +//tensorflow/python/kernel_tests:matrix_solve_op_test PASSED in 18.9s +//tensorflow/python/kernel_tests:matrix_triangular_solve_op_test PASSED in 23.0s +//tensorflow/python/kernel_tests:numerics_test PASSED in 19.0s +//tensorflow/python/kernel_tests:one_hot_op_test PASSED in 24.8s +//tensorflow/python/kernel_tests:pack_op_test PASSED in 27.5s +//tensorflow/python/kernel_tests:pad_op_test PASSED in 25.3s +//tensorflow/python/kernel_tests:padding_fifo_queue_test PASSED in 39.5s +//tensorflow/python/kernel_tests:parameterized_truncated_normal_op_test PASSED in 55.7s +//tensorflow/python/kernel_tests:parsing_ops_test PASSED in 26.7s +//tensorflow/python/kernel_tests:partitioned_variables_test PASSED in 44.8s +//tensorflow/python/kernel_tests:pooling_ops_test PASSED in 46.4s +//tensorflow/python/kernel_tests:priority_queue_test PASSED in 43.0s +//tensorflow/python/kernel_tests:random_crop_test PASSED in 20.2s +//tensorflow/python/kernel_tests:random_gamma_test PASSED in 19.4s +//tensorflow/python/kernel_tests:random_shuffle_queue_test PASSED in 33.1s +//tensorflow/python/kernel_tests:reader_ops_test PASSED in 22.2s +//tensorflow/python/kernel_tests:reduce_join_op_test PASSED in 22.0s +//tensorflow/python/kernel_tests:relu_op_test PASSED in 21.8s +//tensorflow/python/kernel_tests:reshape_op_test PASSED in 17.9s +//tensorflow/python/kernel_tests:rnn_cell_test PASSED in 27.2s +//tensorflow/python/kernel_tests:save_restore_ops_test PASSED in 19.2s +//tensorflow/python/kernel_tests:scalar_strict_test PASSED in 28.9s +//tensorflow/python/kernel_tests:scatter_ops_test PASSED in 169.1s +//tensorflow/python/kernel_tests:segment_reduction_ops_test PASSED in 25.8s +//tensorflow/python/kernel_tests:self_adjoint_eig_op_test PASSED in 16.3s +//tensorflow/python/kernel_tests:session_ops_test PASSED in 21.1s +//tensorflow/python/kernel_tests:shape_ops_test PASSED in 41.1s +//tensorflow/python/kernel_tests:softmax_op_test PASSED in 20.4s +//tensorflow/python/kernel_tests:softplus_op_test PASSED in 18.7s +//tensorflow/python/kernel_tests:spacetobatch_op_test PASSED in 24.9s +//tensorflow/python/kernel_tests:spacetodepth_op_test PASSED in 22.2s +//tensorflow/python/kernel_tests:sparse_add_op_test PASSED in 28.8s +//tensorflow/python/kernel_tests:sparse_reorder_op_test PASSED in 28.9s +//tensorflow/python/kernel_tests:sparse_reshape_op_test PASSED in 21.1s +//tensorflow/python/kernel_tests:sparse_serialization_ops_test PASSED in 20.0s +//tensorflow/python/kernel_tests:sparse_split_op_test PASSED in 20.3s +//tensorflow/python/kernel_tests:sparse_tensor_dense_matmul_op_test PASSED in 104.2s +//tensorflow/python/kernel_tests:sparse_to_dense_op_py_test PASSED in 17.5s +//tensorflow/python/kernel_tests:sparsemask_op_test PASSED in 22.0s +//tensorflow/python/kernel_tests:split_op_test PASSED in 18.1s +//tensorflow/python/kernel_tests:stack_ops_test PASSED in 21.6s +//tensorflow/python/kernel_tests:string_join_op_test PASSED in 19.7s +//tensorflow/python/kernel_tests:string_to_hash_bucket_op_test PASSED in 16.4s +//tensorflow/python/kernel_tests:string_to_number_op_test PASSED in 13.8s +//tensorflow/python/kernel_tests:summary_audio_op_test PASSED in 20.8s +//tensorflow/python/kernel_tests:summary_image_op_test PASSED in 21.1s +//tensorflow/python/kernel_tests:summary_ops_test PASSED in 20.1s +//tensorflow/python/kernel_tests:template_test PASSED in 23.4s +//tensorflow/python/kernel_tests:topk_op_test PASSED in 21.6s +//tensorflow/python/kernel_tests:trace_op_test PASSED in 19.6s +//tensorflow/python/kernel_tests:transpose_op_test PASSED in 53.9s +//tensorflow/python/kernel_tests:unique_op_test PASSED in 23.4s +//tensorflow/python/kernel_tests:unpack_op_test PASSED in 26.5s +//tensorflow/python/kernel_tests:variable_ops_test PASSED in 22.1s +//tensorflow/python/kernel_tests:variable_scope_test PASSED in 21.5s +//tensorflow/python/kernel_tests:variables_test PASSED in 23.4s +//tensorflow/python/kernel_tests:where_op_test PASSED in 17.6s +//tensorflow/python/kernel_tests:xent_op_test PASSED in 28.7s +//tensorflow/python/kernel_tests:zero_division_test PASSED in 33.2s +//tensorflow/python/kernel_tests:array_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/array_ops_test/test.log +//tensorflow/python/kernel_tests:as_string_op_test TIMEOUT in 65.2s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/as_string_op_test/test.log +//tensorflow/python/kernel_tests:barrier_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/barrier_ops_test/test.log +//tensorflow/python/kernel_tests:batch_matmul_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log +//tensorflow/python/kernel_tests:control_flow_ops_py_test TIMEOUT in 72.2s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log +//tensorflow/python/kernel_tests:depthwise_conv_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log +//tensorflow/python/kernel_tests:diag_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/diag_op_test/test.log +//tensorflow/python/kernel_tests:division_past_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/division_past_test/test.log +//tensorflow/python/kernel_tests:functional_ops_test TIMEOUT in 65.2s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/functional_ops_test/test.log +//tensorflow/python/kernel_tests:morphological_ops_test TIMEOUT in 65.1s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/morphological_ops_test/test.log +//tensorflow/python/kernel_tests:multinomial_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/multinomial_op_test/test.log +//tensorflow/python/kernel_tests:pooling_ops_3d_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log +//tensorflow/python/kernel_tests:random_ops_test TIMEOUT in 83.9s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/random_ops_test/test.log +//tensorflow/python/kernel_tests:reduction_ops_test TIMEOUT in 65.5s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/reduction_ops_test/test.log +//tensorflow/python/kernel_tests:reverse_sequence_op_test TIMEOUT in 66.9s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log +//tensorflow/python/kernel_tests:rnn_test TIMEOUT in 305.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/rnn_test/test.log +//tensorflow/python/kernel_tests:scan_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/scan_ops_test/test.log +//tensorflow/python/kernel_tests:seq2seq_test TIMEOUT in 305.1s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/seq2seq_test/test.log +//tensorflow/python/kernel_tests:slice_op_test TIMEOUT in 305.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/slice_op_test/test.log +//tensorflow/python/kernel_tests:sparse_concat_op_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log +//tensorflow/python/kernel_tests:sparse_tensor_dense_matmul_grad_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log +//tensorflow/python/kernel_tests:sparse_xent_op_test TIMEOUT in 65.3s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log +//tensorflow/python/kernel_tests:tensor_array_ops_test TIMEOUT in 65.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log +//tensorflow/python/kernel_tests:cast_op_test FAILED in 23.7s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cast_op_test/test.log +//tensorflow/python/kernel_tests:concat_op_test FAILED in 86.8s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/concat_op_test/test.log +//tensorflow/python/kernel_tests:constant_op_test FAILED in 19.2s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/constant_op_test/test.log +//tensorflow/python/kernel_tests:ctc_loss_op_test FAILED in 17.3s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log +//tensorflow/python/kernel_tests:cwise_ops_test FAILED in 16 out of 50 in 103.2s + Stats over 50 runs: max = 103.2s, min = 17.1s, avg = 46.2s, dev = 18.9s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log +//tensorflow/python/kernel_tests:determinant_op_test FAILED in 18.3s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/determinant_op_test/test.log +//tensorflow/python/kernel_tests:embedding_ops_test FAILED in 1 out of 50 in 51.2s + Stats over 50 runs: max = 51.2s, min = 8.3s, avg = 13.1s, dev = 6.6s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log +//tensorflow/python/kernel_tests:py_func_test FAILED in 38.6s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/py_func_test/test.log +//tensorflow/python/kernel_tests:softsign_op_test FAILED in 46.5s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/softsign_op_test/test.log +//tensorflow/python/kernel_tests:sparse_matmul_op_test FAILED in 22.3s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log +//tensorflow/python/kernel_tests:sparse_ops_test FAILED in 66.0s + /home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_ops_test/test.log + +Executed 138 out of 138 tests: 104 tests pass and 34 fail locally. +There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..dc594bbe3cf4424b51733d132423c31f515504ef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/argmax_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c24de025cbef82b24a15554d14833265bb31b3a6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Reduction axis 0 is empty in shape [0] + [[Node: ArgMin = ArgMin[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](ArgMin/input, ArgMin/dimension)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reduction axis 0 is empty in shape [0] + [[Node: ArgMax = ArgMax[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](ArgMax/input, ArgMax/dimension)]] +..... +---------------------------------------------------------------------- +Ran 6 tests in 3.275s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2772390ddb2c08334d663d61c4098a5ad04fe4af --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a2cb9ef84b4881ee453d870e8543815c39981090 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e07634755ee0352c5bb3b9b7ad8c5e457cdb3947 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.............E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Input 1 needs to have rank 1: ] [2] + [[Node: meshgrid_28/Assert_1 = Assert[T=[DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](meshgrid_28/Equal_1, meshgrid_28/Assert_1/data_0, meshgrid_28/Rank_3)]] +../home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/array_ops_test.runfiles/tensorflow/python/ops/array_ops.py:1792: VisibleDeprecationWarning: converting an array with ndim > 0 to an index will result in an error in the future + result_shape.insert(dim, 1) +....... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d9a8bb9e343f7315a1f38bf2de248944a2d21e3b Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d36250c49fc8e60955bd529482f6b3cb56017b98 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.cache_status @@ -0,0 +1 @@ +HΧR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/attention_ops_test/test.log`Χ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f13b2e49482808729c0c1846bf2c4dcc14ee7035 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............ +---------------------------------------------------------------------- +Ran 12 tests in 3.095s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..af5bc186e38224dcea079d29bba744c104b67b9f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cab84c3119791e07187bb0d370715fb66abb2a42 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..cd58f653829e0e3c2fbcd9e3754eadbbf60588d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log @@ -0,0 +1,239 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Barrier _1_B is closed. Pending enqueues cancelled: 1. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_3 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_3/keys, B_BarrierInsertMany_3/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _1_B is closed. Pending enqueues cancelled: 1. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_1_B' is closed and has insufficient elements (requested 3, total size 2) + [[Node: B_BarrierTakeMany_1 = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany_1/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_1_B' is closed and has insufficient elements (requested 2, total size 0) + [[Node: B_BarrierTakeMany = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany/num_elements)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/barrier_ops_test.runfiles/tensorflow/python/kernel_tests/barrier_ops_test.py:465: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(size_t.eval(), [0]) +.W tensorflow/core/framework/op_kernel.cc:936] Aborted: Barrier _2_B is closed, but attempted to insert a brand new key: f. Pending enqueues cancelled: 0. Insertion index: 0. Number of incomplete keys: 3. +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _2_B is closed, but attempted to insert a brand new key: f. Pending enqueues cancelled: 0. Insertion index: 0. Number of incomplete keys: 3. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _2_B is closed. Pending enqueues cancelled: 0. Number of new insertions: 1. Number of incomplete keys: 0. + [[Node: B_BarrierInsertMany_2 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany_2/keys, B_BarrierInsertMany_2/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_2_B' is closed and has insufficient elements (requested 4, total size 3) + [[Node: B_BarrierTakeMany_1 = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany_1/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_2_B' is closed and has insufficient elements (requested 3, total size 0) + [[Node: B_BarrierTakeMany = BarrierTakeMany[_class=["loc:@B"], allow_small_batch=false, component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierTakeMany/num_elements)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_a' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_a' has component types float but requested component types were int32 + [[Node: barrier_1 = Barrier[capacity=-1, component_types=[DT_INT32], container="", shapes=[[]], shared_name="b_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_b' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_b' has component types float but requested component types were float, int32 + [[Node: barrier_3 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[[], []], shared_name="b_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_c' has component shapes [[2,2], [8]] but requested component shapes were [[], []] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_c' has component shapes [[2,2], [8]] but requested component shapes were [[], []] + [[Node: barrier_5 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[], []], shared_name="b_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_d' has component shapes [[], []] but requested component shapes were [[2,2], [8]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_d' has component shapes [[], []] but requested component shapes were [[2,2], [8]] + [[Node: barrier_7 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[2,2], [8]], shared_name="b_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared barrier 'b_e' has component shapes [[2,2], [8]] but requested component shapes were [[2,5], [8]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared barrier 'b_e' has component shapes [[2,2], [8]] but requested component shapes were [[2,5], [8]] + [[Node: barrier_9 = Barrier[capacity=-1, component_types=[DT_FLOAT, DT_FLOAT], container="", shapes=[[2,5], [8]], shared_name="b_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +...E tensorflow/core/client/tensor_c_api.cc:485] Tensors with no elements are not supported _4_B: received shape [3,0] + [[Node: B_BarrierInsertMany = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@B"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](B, B_BarrierInsertMany/keys, B_BarrierInsertMany/values)]] +...E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_32 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_32/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_10 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_10/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_30 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_30/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_47 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_47/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_33 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_33/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_22 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_22/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_27 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_27/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_38 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_38/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_28 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_28/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_15 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_15/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_24 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_24/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_14 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_14/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_9 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_9/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_5 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_5/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_12 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_12/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_7 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_7/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_17 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_17/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_48 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_48/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_2 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_2/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_21 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_21/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_26 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_26/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_43 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_43/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_44 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_44/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_7_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_37 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_37/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_7_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: barrier_BarrierTakeMany_23 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_23/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_75 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_75/keys, barrier_BarrierInsertMany_75/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_76 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_76/keys, barrier_BarrierInsertMany_76/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_77 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_77/keys, barrier_BarrierInsertMany_77/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_78 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_78/keys, barrier_BarrierInsertMany_78/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_79 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_79/keys, barrier_BarrierInsertMany_79/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_81 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_81/keys, barrier_BarrierInsertMany_81/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_80 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_80/keys, barrier_BarrierInsertMany_80/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_83 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_83/keys, barrier_BarrierInsertMany_83/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_82 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_82/keys, barrier_BarrierInsertMany_82/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_84 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_84/keys, barrier_BarrierInsertMany_84/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_85 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_85/keys, barrier_BarrierInsertMany_85/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_87 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_87/keys, barrier_BarrierInsertMany_87/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_86 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_86/keys, barrier_BarrierInsertMany_86/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_89 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_89/keys, barrier_BarrierInsertMany_89/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_92 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_92/keys, barrier_BarrierInsertMany_92/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_88 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_88/keys, barrier_BarrierInsertMany_88/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_90 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_90/keys, barrier_BarrierInsertMany_90/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_91 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_91/keys, barrier_BarrierInsertMany_91/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_43 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_43/keys, barrier_BarrierInsertMany_43/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_95 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_95/keys, barrier_BarrierInsertMany_95/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_94 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_94/keys, barrier_BarrierInsertMany_94/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_97 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_97/keys, barrier_BarrierInsertMany_97/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_96 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_96/keys, barrier_BarrierInsertMany_96/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_98 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_98/keys, barrier_BarrierInsertMany_98/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _7_barrier is closed. Pending enqueues cancelled: 1. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_99 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_99/keys, barrier_BarrierInsertMany_99/values)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_47 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_47/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_42 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_42/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_11 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_11/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_15 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_15/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_29 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_29/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_46 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_46/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_39 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_39/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_21 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_21/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_36 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_36/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_17 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_17/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_38 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_38/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_8_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: barrier_BarrierTakeMany_34 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_34/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_32 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_32/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier '_8_barrier' is closed and has insufficient elements (requested 10, total size 0) + [[Node: barrier_BarrierTakeMany_23 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_23/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_44 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_44/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_3 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_3/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_25 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_25/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_5 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_5/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_19 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_19/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_30 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_30/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_49 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_49/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_41 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_41/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_9 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_9/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] PriorityQueue '_8_barrier_queue' is closed and has insufficient elements (requested 10, current size 0) + [[Node: barrier_BarrierTakeMany_8 = BarrierTakeMany[_class=["loc:@barrier"], allow_small_batch=false, component_types=[DT_FLOAT, DT_INT64], timeout_ms=-1, wait_for_incomplete=false, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierTakeMany_8/num_elements)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_75 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_75/keys, barrier_BarrierInsertMany_75/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_76 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_76/keys, barrier_BarrierInsertMany_76/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_79 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_79/keys, barrier_BarrierInsertMany_79/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_77 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_77/keys, barrier_BarrierInsertMany_77/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_82 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_82/keys, barrier_BarrierInsertMany_82/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_81 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_81/keys, barrier_BarrierInsertMany_81/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_86 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_86/keys, barrier_BarrierInsertMany_86/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_91 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_91/keys, barrier_BarrierInsertMany_91/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_93 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_93/keys, barrier_BarrierInsertMany_93/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_95 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_95/keys, barrier_BarrierInsertMany_95/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_78 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_78/keys, barrier_BarrierInsertMany_78/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_97 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_97/keys, barrier_BarrierInsertMany_97/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_87 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_87/keys, barrier_BarrierInsertMany_87/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_85 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_85/keys, barrier_BarrierInsertMany_85/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_84 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_84/keys, barrier_BarrierInsertMany_84/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_88 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_88/keys, barrier_BarrierInsertMany_88/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_94 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_94/keys, barrier_BarrierInsertMany_94/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_89 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_89/keys, barrier_BarrierInsertMany_89/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_98 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_98/keys, barrier_BarrierInsertMany_98/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_30 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_30/keys, barrier_BarrierInsertMany_30/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_49 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_49/keys, barrier_BarrierInsertMany_49/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_92 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_92/keys, barrier_BarrierInsertMany_92/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_33 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_33/keys, barrier_BarrierInsertMany_33/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_40 = BarrierInsertMany[T=DT_FLOAT, _class=["loc:@barrier"], component_index=0, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_40/keys, barrier_BarrierInsertMany_40/values)]] +E tensorflow/core/client/tensor_c_api.cc:485] Barrier _8_barrier is closed. Pending enqueues cancelled: 0. Number of new insertions: 10. Number of incomplete keys: 0. + [[Node: barrier_BarrierInsertMany_96 = BarrierInsertMany[T=DT_INT64, _class=["loc:@barrier"], component_index=1, _device="/job:localhost/replica:0/task:0/cpu:0"](barrier, barrier_BarrierInsertMany_96/keys, barrier_BarrierInsertMany_96/values)]] +. \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c98e08f4ec3301c83b1eb348cac9d01b1b382718 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b70d03cf2ed1aa6adf35a01aad02b12e177e4e75 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5068f3e1be3ff060aa7c6029b362667d0d17b4d4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e8c43a99d0d7cb15eac0b15e4980049be2853526 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 7.469s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..93ffdafa25abf9126200e4f391148cacc8fd7a2b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0f3193323eb826b2fad6b2d68304f1ad346fe0e1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 20.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8b939caac8e132c43bb0effa3d930d080d72e61f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f9e3ee8a826e695de2c05af6c7cd26b92a6a9184 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 19.865s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4992ebb22100a5673f43cdc62dd42eaf8dfac13e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ca586a0fd657099af9559e5699321ddec9b8908f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.462s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cbab7882283a3a011fec0347783a358e359e3cee --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dbfe7e0523e27e83e57f4ac6acbad9455b025862 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.504s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f1dc963599012f6ab6eee86b6b1a53f87dd8dba1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4436e82a11f25c03c12b33d720a6efed2b5b7053 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.524s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5563f1d23d9b97b6edccd4b0bb68eda617052642 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e27359b7521e40e9a6ffa357cbce49cbd44158a9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.448s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..25a75311bdb094e1fb2f17c848f5593c0a7ec51f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3ce346be36df8aa08468c6ebd6fdd5597cfcc9de --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 64.096s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2187020d35646133f41d314d1450089e343b9059 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HȾR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log`Ⱦ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0dd6318e4bb09fe711b11a8aaf4b8e4dedcb8047 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 62.085s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..eed9231fe052a155fe18def3dd9cc8ff99e80cec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +HrR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log`r \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..946b57554621f7db5ef8e60c1d90f061867473f3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.519s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..82da5f0f77df5d4494b60013da7f0ac99835dea5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +HzR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log`z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e0f6a58a6e52e6143e21d03c71faf53a5baa3c30 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.134s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..03866fd28cb9abbab93c8de7f9b161901e81bb44 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log`u \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c25c8b60272835995787d9b9353dfe1fcb0399ae --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.548s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..565ebc6e8032bf50996df34bc41024b58fb928bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +H|R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log`| \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..da6837bf2e6829127914ad2e10de6e144c9404ba --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.793s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d0109e33506ec287ba541b9be8151d9c2720195f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6f9497f193c3ee6600d52895f46c2bb6b72505d1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.716s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4cde99bf33a224f9be9604a650806e606a82f5b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d1b89584de0617abb96ac89a31243565febdcc3a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.604s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..be6b3cb8633d4c6053954b38755c1e0fad7dd87a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..17fcfdf0b8a6757eb9dedc4d485884772fb15fcd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.775s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5bd12e3496607212285ce9316113a1e1df9faaf6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +H|R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log`| \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..644414d9005964306dfe469a5ac53510bb5452bb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.609s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a739090f1d3910c40cb4a2c40e12ce7cb18e7f88 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +H}R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log`} \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..858cfbde6afa8485d76eb8637c326456c7d9d74b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.658s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cadbb02b48d2778c15e187c0f86151791e9d37ca --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +HÌR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log`Ì \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..130e60430282bebf31a6629bfd879321a3d24c4e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 7.108s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f382bdabb4057ac785e3a95588cbda04f9d10155 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4235f2999eb7b9f047031690ace71267b5b5a34f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 7.016s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97cdf7f7c283a379c45146a9519d53e4f07354e7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..341f19aa84bb42ec2596da2400e832f01bf45aab --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.563s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..783801dc169ebf87de5b30498f59b4efc5c031bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HxR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log`x \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2f17c8bc3b66af85ecbaf64c063af472be9d82ce --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.156s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c8ecd8eb256604ff2b29367720810ec1253d3f24 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6cca142fb7c375ee30c1735a9647b0d910287120 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.922s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c215b282b7b0c2672d85ccab7012ad6b873996e6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +HҦR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log`Ҧ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0c7d89d7ad0ee81984025d7163cb4ddc1007aff1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.206s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..28f640fb831663bb94fc4da92e93b54a3f79429f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b5728d7bc15cf4b92aea1bc754473a4f9ad9d1f0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 10.297s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0517a7c47697b5910288afa2751f9138069eda04 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5cf8138e3f271a743c6f70d3a0b55a42494a4390 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.589s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fcacb34a943bf3cf122c17c5b7415ca7603c1049 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c8f927edbcde86d812ad3ee768d9b3292d931bbc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.532s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8465ef74824e333c2fcbe9c3a73422554b89fbd3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2ab215e35a6da771d47f3ae0048454abfe8915e7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 60.812s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a0e3acd04cf68fbc864c5a0ddd7f0e0cd25caf74 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..34afc3a1790de0bfe84e83ef32152153f82811f1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 60.733s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e6b6b1247c0a4bf1b7938d05c84cf77e3738c364 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..53f5a377beddc5105dad22473e0376e8a739ba7f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.887s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97d1375f21f836d1ad8ecd3f2e2ec4d2228400d8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log`f \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a7b7fe33d1aebff3be9767d5be6bbe3a399fa724 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.777s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..59349f797e9a770cb101ee04fb59f6de6045a393 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HjR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log`j \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b4b6c65aa22fc66adcc2ddf632d16511464d70a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.792s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1897708f04af103c5afbfa85bc3c9599a0652a5f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3633243c860e8edd23982e71d86ffd0e066fb6c9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.516s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9239e3fad5e9563b9b84f6e6d43af187b0f7b863 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HjR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log`j \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d19d105733b44f778817a9996307f85ae3636c39 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.925s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7b7f9977b61e533b51fa2032c2dea15c246c4bdd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2f7f85b1978c62aaba3528178b65865b3378e1eb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.816s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c28dd8b25f9298e2282dc82f559bf3b0cc2ed9de --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e051b39fe5f8ab229718f90d2325592f410a4c68 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.842s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6b6a7be7a58cefb1379c1cdbdc917007c0fa35b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +HhR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log`h \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..41a08aaae6251689397ace4e9fbf672f4a4e2c70 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.843s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6e14ca2f5fce8dbda9afb3cc4effa4948514b73d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.log`g \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ed7465235e68db898493f27ef17c4e403a247b9a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.847s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..050f80f820179d5dadb848ce1bc6e319590c489d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HjR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log`j \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5b5f38d0504b6de67626e3578e3416c6f97427c5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.844s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..79341ef9dce0beabec6b2ce1c26b7abc84117e9e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log`f \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1ffb95f126edb6eb2973effc76d367ce35c81892 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.882s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6ec09fb20b530e118b7cc94238e4cf9c9bc6a9a8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HaR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log`a \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8cae1be2926d6578d7125d16043d62c512ee725a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.726s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6833980f700da208f87d957ddac3bbae4dfb1dc8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HbR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log`b \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b1bd1e616baa3ece86ae88110089b135ca73bb4f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.752s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0248247177f68221b6c0f469bbc62b7fb4086731 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HwR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log`w \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8cae1be2926d6578d7125d16043d62c512ee725a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.726s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..023fc63668da58459da505976d584d3a3ee2a6a8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c730ac7ac8938f2017afe0417ce4ff4b99e5f025 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.662s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1c34329e8384177c78e5188e597c12cc35f54ddd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e68e3b598541b7ee50f9b018851612143bf008a5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.874s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9861b2e91f0f3bfba36f4296a318969d5872d3c0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9f858826eaddb08e03127d63fe64cb3a5829b3db --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 11.535s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8845630985607441e5da196f1639f4ab2e04034e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..50138dfd73c679abb4b78c66c57dfa7e90f9a1d4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 11.719s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..37e0926bedef739def9d8407f3dcb35cad599deb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HɇR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log`ɇ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4bfe13c5f45b0a6e33a6f27f43616e61a18c61e3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.725s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2ddc2bc0487b8643df524a20c290367a8f7dc39f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3ffe586d2423dbac360168258f3117c5ae033221 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.866s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a95f3c9d889b55830dfcae494d4d873f5c9b392b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..79397bb7575e7f1e3d3b581420501296c625a592 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.249s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..5341818c7865d0a54d2ed963ccdb43bb12ee1941 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matrix_band_part_op_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9eff4d9213176d07be9730c5283ba6cdec802de9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/batchtospace_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2bd2776c846cfb433d1f3d298b052bb8657e8d53 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 3.793s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f1875c63304f4d05ee98023f2fbaf00f2a2d587d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2667dd827019a16826fac0653cf5875257725a6a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status @@ -0,0 +1 @@ +HחR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/bcast_ops_test/test.log`ח \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..040505c99d3f883dfdb23f13f7f392ac2ce320c7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.553s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..78b427a2f88a2f96f662f13ca951503207be00a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2a6d694bbbbf607421d7e3a7f47c5b3455795f19 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/benchmark_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ebc084de4b260c5b46fdb9fb134722049c44c577 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/benchmark_test.runfiles/tensorflow/python/kernel_tests/benchmark_test.py:175: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(1, len(entries.entry)) +... +---------------------------------------------------------------------- +Ran 4 tests in 2.388s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..74dbe74cad52777cbd966792b2fe5ff30ac38dba --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..82a670dd1f54a1562a203bf81055b9ddd1d50b8c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/bias_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0b015cce560fd7a14bc51de21a095826ea2c468a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log @@ -0,0 +1,53 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........... +---------------------------------------------------------------------- +Ran 11 tests in 12.067s + +OK +(0, 0) +(0,) +(0, 0) +(0,) +(2, 0) +(0,) +(2, 0) +(0,) +(0, 2) +(2,) +(0, 2) +(2,) +(4, 3, 0) +(0,) +(4, 3, 0) +(0,) +(4, 0, 3) +(3,) +(4, 0, 3) +(3,) +(0, 4, 3) +(3,) +(0, 4, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(4, 3, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) +(2, 3) +(3,) diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..93b6ba26c614aef29981cddb9d1c45e46db8a95c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..36644cc6f2ef8fa94a51e00415d72cb4490c8e87 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status @@ -0,0 +1 @@ +HÔR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/bitcast_op_test/test.log`Ô \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c050400716f090f55ba0d3cadbba5c17e34a10fb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 0.168s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..c19dad6dc0e8080526e6e9825e97ed5dd8f045d8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ae45f6446893f19c5b2e35ad4e11c6954d8c979b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fdca2d1b820035935d63ebd1be311b9871f7f9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 1.375s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..59a2332bc257b52163e27040630dbd26fc974510 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ceaa81639f14ea65876d5d07be9affbe428a707b Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..da2c165c7136aeda219001b69cc692efd96c51aa --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log @@ -0,0 +1,158 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....F.W tensorflow/core/framework/op_kernel.cc:926] Unimplemented: Cast int32 to string is not supported +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Unimplemented: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +E tensorflow/core/client/tensor_c_api.cc:485] Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +F....... +====================================================================== +FAIL: testInfNan (__main__.CastOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 124, in testInfNan + self._compare(np.inf, np.int32, i4.min, False) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 102, in _compare + dst_dtype(expected)) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 375, in assert_equal + raise AssertionError(msg) +AssertionError: +Items are not equal: + ACTUAL: 2147483647 + DESIRED: -2147483648 + +====================================================================== +FAIL: testNotImplemented (__main__.CastOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/client/session.py", line 730, in _do_call + return fn(*args) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/client/session.py", line 712, in _run_fn + status, run_metadata) + File "/usr/lib/python3.4/contextlib.py", line 66, in __exit__ + next(self.gen) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/errors.py", line 450, in raise_exception_on_not_ok_status + pywrap_tensorflow.TF_GetCode(status)) +tensorflow.python.framework.errors.UnimplementedError: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/test_util.py", line 524, in assertRaisesWithPredicateMatch + yield + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) +tensorflow.python.framework.errors.UnimplementedError: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +Caused by op 'Cast', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 205, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 149, in testNotImplemented + "Cast.*int64.*string.*") + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/math_ops.py", line 619, in cast + return gen_math_ops.cast(x, base_type, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/gen_math_ops.py", line 407, in cast + result = _op_def_lib.apply_op("Cast", x=x, DstT=DstT, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 149, in testNotImplemented + "Cast.*int64.*string.*") + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/usr/lib/python3.4/contextlib.py", line 77, in __exit__ + self.gen.throw(type, value, traceback) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/test_util.py", line 528, in assertRaisesWithPredicateMatch + raise AssertionError(e) +AssertionError: Cast int32 to string is not supported + [[Node: Cast = Cast[DstT=DT_STRING, SrcT=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Cast/x)]] +Caused by op 'Cast', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 205, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 149, in testNotImplemented + "Cast.*int64.*string.*") + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/kernel_tests/cast_op_test.py", line 145, in _OpError + tf.cast(x, dtype).eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/math_ops.py", line 619, in cast + return gen_math_ops.cast(x, base_type, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/ops/gen_math_ops.py", line 407, in cast + result = _op_def_lib.apply_op("Cast", x=x, DstT=DstT, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cast_op_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 14 tests in 5.819s + +FAILED (failures=2) diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d77f1aa9a98d69683b41c7c571466ba4170a415 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6ab5887c503e0f7d61df304abfecbf3ef05a3e00 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/check_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..bfa251a5a866bb1f2570a91a5795e264e539ec83 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, big, assert_equal/Assert/data_3, assert_equal/Assert/data_4, small)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [small:0] [3 1] [y = ] [big:0] [4 2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, small, assert_equal/Assert/data_3, assert_equal/Assert/data_4, big)]] +...E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [x is not of integer dtype: x = ] [floats:0] [1 2] + [[Node: assert_integer/Assert = Assert[T=[DT_STRING, DT_STRING, DT_FLOAT], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_integer/Assert/condition, assert_integer/Assert/data_0, assert_integer/Assert/data_1, floats)]] +......E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, big, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, small)]] +......E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < y did not hold element-wise: x = ] [small:0] [1 2] [y = ] [small:0] [1 2] + [[Node: assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less/All, assert_less/Assert/data_0, assert_less/Assert/data_1, small, assert_less/Assert/data_3, assert_less/Assert/data_4, small)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < y did not hold element-wise: x = ] [big:0] [3 4] [y = ] [small:0] [1 2] + [[Node: assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less/All, assert_less/Assert/data_0, assert_less/Assert/data_1, big, assert_less/Assert/data_3, assert_less/Assert/data_4, small)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < 0 did not hold element-wise: x = ] [doug:0] [1 2] + [[Node: assert_negative/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_negative/assert_less/All, assert_negative/assert_less/Assert/data_0, assert_negative/assert_less/Assert/data_1, doug)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x < 0 did not hold element-wise: x = ] [claire:0] [0] + [[Node: assert_negative/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_negative/assert_less/All, assert_negative/assert_less/Assert/data_0, assert_negative/assert_less/Assert/data_1, claire)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x >= 0 did not hold element-wise: x = ] [zoe:0] [-1 -2] + [[Node: assert_non_negative/assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_non_negative/assert_less_equal/All, assert_non_negative/assert_less_equal/Assert/data_0, assert_non_negative/assert_less_equal/Assert/data_1, zoe)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= 0 did not hold element-wise: x = ] [rachel:0] [0 2] + [[Node: assert_non_positive/assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_non_positive/assert_less_equal/All, assert_non_positive/assert_less_equal/Assert/data_0, assert_non_positive/assert_less_equal/Assert/data_1, rachel)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x > 0 did not hold element-wise: x = ] [freddie:0] [-1 -2] + [[Node: assert_positive/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_positive/assert_less/All, assert_positive/assert_less/Assert/data_0, assert_positive/assert_less/Assert/data_1, freddie)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x > 0 did not hold element-wise: x = ] [meechum:0] [0] + [[Node: assert_positive/assert_less/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_positive/assert_less/All, assert_positive/assert_less/Assert/data_0, assert_positive/assert_less/Assert/data_1, meechum)]] +..............E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank at least] [2] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/GreaterEqual, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank at least] [1] [Received shape: ] [] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/GreaterEqual, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Rank must be a scalar.Received rank:] [1 2] + [[Node: assert_rank/Assert = Assert[T=[DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/assert_rank/Equal, assert_rank/Assert/data_0, _recv_rank_tensor_0)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [0] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +..E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [2] [Received shape: ] [2] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Tensor my_tensor:0 must have rank] [1] [Received shape: ] [] + [[Node: Assert = Assert[T=[DT_STRING, DT_INT32, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_rank/Equal, Assert/data_0, Assert/data_1, Assert/data_2, Shape)]] +................... +---------------------------------------------------------------------- +Ran 92 tests in 9.063s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3c4fe31ed4608752d76609d69e8c5fe826036178 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a529f3296333a2612c5c53ca61a7c535efd547d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cholesky_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..23d43887d08cd09db3e4918c07147a2fd44b6a14 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.........E tensorflow/core/client/tensor_c_api.cc:485] LLT decomposition was not successful. The input might not be valid. + [[Node: BatchCholesky = BatchCholesky[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchCholesky/input)]] +... +---------------------------------------------------------------------- +Ran 12 tests in 21.931s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..41b1c1e3fcbf18fdf8c5dc394c78f4725c1cbc7c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc8be62887d8dbf124f67ef0c2fcd215fa59fd37 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/clip_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..45cf159b4583aa6e35a2bc98357ddab2b7f160d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log @@ -0,0 +1,16 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/clip_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/clip_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +.. +---------------------------------------------------------------------- +Ran 18 tests in 2.342s + +OK +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f3f7c6e5f4bb3e3dc34fb71c41433e3ff40a9b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d217ed6bf184806f70ee602757fc9d656ac6e2d3 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..7073ef5ac3343e41f301cc555cb6f584314ef17e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log @@ -0,0 +1,131 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] Concat dim is out of range: 4 vs. 3 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input 1 should contain 3 elements, but got4 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input 1 should be a vector, but got shape [1,3] + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +.E tensorflow/core/client/tensor_c_api.cc:485] input[1,2] mismatch: 5 vs. 10 + [[Node: ConcatOffset = ConcatOffset[N=2, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1, Const_2)]] +...W tensorflow/core/framework/op_kernel.cc:926] Invalid argument: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + +E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E tensorflow/core/client/tensor_c_api.cc:485] Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E..................... +====================================================================== +ERROR: testConcatLargeTensors (__main__.ConcatOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 730, in _do_call + return fn(*args) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 712, in _run_fn + status, run_metadata) + File "/usr/lib/python3.4/contextlib.py", line 66, in __exit__ + next(self.gen) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/errors.py", line 450, in raise_exception_on_not_ok_status + pywrap_tensorflow.TF_GetCode(status)) +tensorflow.python.framework.errors.InvalidArgumentError: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 429, in testConcatLargeTensors + _ = onezeros.eval() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +tensorflow.python.framework.errors.InvalidArgumentError: Cannot parse tensor from proto: dtype: DT_INT8 +tensor_shape { + dim { + size: 2147483654 + } +} +int_val: 1 + + [[Node: ones = Const[dtype=DT_INT8, value=, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op 'ones', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 486, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/kernel_tests/concat_op_test.py", line 423, in testConcatLargeTensors + a = tf.ones([2**31 + 6], dtype=tf.int8) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/ops/array_ops.py", line 1219, in ones + output = constant(1, shape=shape, dtype=dtype, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/constant_op.py", line 167, in constant + attrs={"value": tensor_value, "dtype": dtype_value}, name=name).outputs[0] + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/concat_op_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 29 tests in 73.408s + +FAILED (errors=1) +graph = ['Const', 'concat/concat_dim', 'concat', 'gradients/concat_grad/ShapeN', 'gradients/concat_grad/ConcatOffset', 'gradients/concat_grad/Slice', 'gradients/concat_grad/Slice_1', 'gradients/concat_grad/Slice_2', 'gradients/concat_grad/Slice_3', 'gradients/concat_grad/Slice_4', 'gradients/concat_grad/Slice_5', 'gradients/concat_grad/Slice_6', 'gradients/concat_grad/Slice_7', 'gradients/concat_grad/Slice_8', 'gradients/concat_grad/Slice_9', 'gradients/AddN'] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..aa6f3f9df1e9c8ee1eb6aa882bd28a2daac728c8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..141a44a83a7b93de3926f52b5e2960c350a62db2 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..659102478bcd18dbad14670af1d1d2f6a80389a5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log @@ -0,0 +1,40 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......................EE.......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Dimension -1 must be >= 0 +E tensorflow/core/client/tensor_c_api.cc:485] Dimension -1 must be >= 0 + [[Node: Fill_3 = Fill[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, Fill_3/value)]] +..................E tensorflow/core/client/tensor_c_api.cc:485] You must feed a value for placeholder tensor 'p' with dtype float + [[Node: p = Placeholder[dtype=DT_FLOAT, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +..E tensorflow/core/client/tensor_c_api.cc:485] You must feed a value for placeholder tensor 'p' with dtype float and shape [10,10] + [[Node: p = Placeholder[dtype=DT_FLOAT, shape=[10,10], _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +................. +====================================================================== +ERROR: testTooLargeConstant (__main__.ConstantTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/kernel_tests/constant_op_test.py", line 164, in testTooLargeConstant + large_array = np.zeros((512, 1024, 1024), dtype=np.float32) +MemoryError + +====================================================================== +ERROR: testTooLargeGraph (__main__.ConstantTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/kernel_tests/constant_op_test.py", line 173, in testTooLargeGraph + c = tf.constant(large_array) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/framework/constant_op.py", line 163, in constant + tensor_util.make_tensor_proto(value, dtype=dtype, shape=shape)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/constant_op_test.runfiles/tensorflow/python/framework/tensor_util.py", line 411, in make_tensor_proto + tensor_proto.tensor_content = nparray.tostring() +MemoryError + +---------------------------------------------------------------------- +Ran 68 tests in 4.185s + +FAILED (errors=2) diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..93d81f8d3f3fcdbc561fe61e516e7b3fa1f1d294 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1bd8378c9669ce40198ca913abfdbe911c2ab2a3 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9ebaa119af6bb07b2a38dde83b44861fe47b944d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log @@ -0,0 +1,14 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [More than one condition evaluated as True but exclusive=True. Conditions: (Less_3:0, Less_4:0), Values:] [1 1] + [[Node: case_3/Assert = Assert[T=[DT_STRING, DT_BOOL], summarize=2, _device="/job:localhost/replica:0/task:0/cpu:0"](case_3/Less, case_3/Assert/data_0, case_3/preds_c)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/control_flow_ops_py_test.runfiles/tensorflow/python/ops/control_flow_ops.py:2255: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "not guaranteed.", name) +WARNING:tensorflow:case: Provided dictionary of predicate/fn pairs, but exclusive=False. Order of conditional tests is not guaranteed. +......................E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-6811239797538787326, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +..................E tensorflow/core/client/tensor_c_api.cc:485] The tensor returned for Identity:0 was not valid. +............./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/control_flow_ops_py_test.runfiles/tensorflow/python/framework/ops.py:2320: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + ret.device, colocation_op.device) +WARNING:tensorflow:Tried to colocate gradients/while/Square_grad/mul/f_acc with an op while/Identity that had a different device: /device:GPU:0 vs /device:CPU:0. Ignoring colocation property. +................ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2fc08baaf7c766540b6b8273104bb09be4b6065b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..acd7b2970b29cdb36b53a4dda073991d85cb0fe4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 8.814s + +OK +conv3d gradient error = 3.50397488802e-12 +conv3d gradient error = 0.0028773 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..971ffaf120527f1e3aaf9d24175d25cd352fa24a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fb97046653633125d188bfd9b5aabe5a87e66e11 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 5.419s + +OK +conv3d gradient error = 8.20898904408e-13 +conv3d gradient error = 0.000440657 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..35e2468caa57c016a31441c89667d122a1fcbc7d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HbR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log`b \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6d156d52f93d501ba7acdad4bd6425aad7c59d18 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 1.342s + +OK +conv3d gradient error = 4.07396338886e-13 +conv3d gradient error = 0.000137344 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..28789d2521aaab4ea2bb2205c680463a0a007902 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8281be8fc50b66347dd9998ce3a8d0c621c167f6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 15.863s + +OK +conv3d gradient error = 1.73144831805e-12 +conv3d gradient error = 0.000949979 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2bfadd85c96b524d3c707798dfa841b59ee3cbbc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HƚR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log`ƚ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c090d14b5b7d20ccd4a802d2857bc6213576aedc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 8.718s + +OK +conv3d gradient error = 8.38773495104e-13 +conv3d gradient error = 0.000835299 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a75d28ec88f9adda2f70366a46c97956f88b30a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HхR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log`х \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d2a0f0ac854ee53c3bd151929d29cd6f19f8d6f9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 5.904s + +OK +conv3d gradient error = 1.74338321557e-12 +conv3d gradient error = 0.000853181 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..35a972bba2f88e66bdbf29313b3e2275eb62c104 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b3d7d7b761a07109a31a729097cd808a03cb3840 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 11.432s + +OK +conv3d gradient error = 1.60860214038e-12 +conv3d gradient error = 0.00084579 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a88800ac9141955282f71aece9ea3a78d75b545 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7439694ad4aa1945362a3da6f82986e4a2bb4a34 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 8.244s + +OK +conv3d gradient error = 1.62359015121e-12 +conv3d gradient error = 0.000905275 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e2ebff690cc962dd057bb76f375531d88fe51312 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..171ffd4c010e5be133e29293426a709e39f16c9d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.log @@ -0,0 +1,161 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.511s + +OK +expected = [1.0, 3.0, 7.0, 9.0, 19.0, 21.0, 25.0, 27.0] +actual = [[[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]] + + + [[[ 19.] + [ 21.]] + + [[ 25.] + [ 27.]]]]] +expected = [1.0, 3.0, 7.0, 9.0, 19.0, 21.0, 25.0, 27.0] +actual = [[[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]] + + + [[[ 19.] + [ 21.]] + + [[ 25.] + [ 27.]]]]] +expected = [1.0, 3.0, 7.0, 9.0, 19.0, 21.0, 25.0, 27.0] +actual = [[[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]] + + + [[[ 19.] + [ 21.]] + + [[ 25.] + [ 27.]]]]] +expected = [1.0, 3.0, 7.0, 9.0, 19.0, 21.0, 25.0, 27.0] +actual = [[[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]] + + + [[[ 19.] + [ 21.]] + + [[ 25.] + [ 27.]]]]] +expected = [1484.0, 1592.0, 770.0, 2240.0, 2348.0, 1106.0, 1149.0, 1191.0, 539.0, 6776.0, 6884.0, 3122.0, 7532.0, 7640.0, 3458.0, 3207.0, 3249.0, 1421.0, 3005.0, 3035.0, 1225.0, 3215.0, 3245.0, 1309.0, 1013.0, 1022.0, 343.0] +actual = [[[[[ 1484.] + [ 1592.] + [ 770.]] + + [[ 2240.] + [ 2348.] + [ 1106.]] + + [[ 1149.] + [ 1191.] + [ 539.]]] + + + [[[ 6776.] + [ 6884.] + [ 3122.]] + + [[ 7532.] + [ 7640.] + [ 3458.]] + + [[ 3207.] + [ 3249.] + [ 1421.]]] + + + [[[ 3005.] + [ 3035.] + [ 1225.]] + + [[ 3215.] + [ 3245.] + [ 1309.]] + + [[ 1013.] + [ 1022.] + [ 343.]]]]] +expected = [1484.0, 1592.0, 770.0, 2240.0, 2348.0, 1106.0, 1149.0, 1191.0, 539.0, 6776.0, 6884.0, 3122.0, 7532.0, 7640.0, 3458.0, 3207.0, 3249.0, 1421.0, 3005.0, 3035.0, 1225.0, 3215.0, 3245.0, 1309.0, 1013.0, 1022.0, 343.0] +actual = [[[[[ 1484.] + [ 1592.] + [ 770.]] + + [[ 2240.] + [ 2348.] + [ 1106.]] + + [[ 1149.] + [ 1191.] + [ 539.]]] + + + [[[ 6776.] + [ 6884.] + [ 3122.]] + + [[ 7532.] + [ 7640.] + [ 3458.]] + + [[ 3207.] + [ 3249.] + [ 1421.]]] + + + [[[ 3005.] + [ 3035.] + [ 1225.]] + + [[ 3215.] + [ 3245.] + [ 1309.]] + + [[ 1013.] + [ 1022.] + [ 343.]]]]] +expected = [1484.0, 1592.0, 2240.0, 2348.0, 6776.0, 6884.0, 7532.0, 7640.0] +actual = [[[[[ 1484.] + [ 1592.]] + + [[ 2240.] + [ 2348.]]] + + + [[[ 6776.] + [ 6884.]] + + [[ 7532.] + [ 7640.]]]]] +expected = [1484.0, 1592.0, 2240.0, 2348.0, 6776.0, 6884.0, 7532.0, 7640.0] +actual = [[[[[ 1484.] + [ 1592.]] + + [[ 2240.] + [ 2348.]]] + + + [[[ 6776.] + [ 6884.]] + + [[ 7532.] + [ 7640.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc9069b633cd650393d81207a174c21c2520f989 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..13a8cdd33d1291b243b8f9b97fc3fe1a0748b439 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a221870e08744c9606c2cbef8810f3ebb1c41eef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.log @@ -0,0 +1,67 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.378s + +OK +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.]] + + [[ 66. 81. 96.]] + + [[ 102. 126. 150.]]] + + + [[[ 138. 171. 204.]] + + [[ 174. 216. 258.]] + + [[ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.]] + + [[ 66. 81. 96.]] + + [[ 102. 126. 150.]]] + + + [[[ 138. 171. 204.]] + + [[ 174. 216. 258.]] + + [[ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]]] + + + [[[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]]] + + + [[[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4683143a232ac132cbf64a3d28fefc865eaacd28 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +H_R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log`_ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c2d3caebbb46ca704d158becd49c730958293a90 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..88d4d74d2059caf8db5404e69f03751f2211ec6e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d411d53873c3cc2ab4b6330efdb121c85121d85b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9dc7e29a73c5688708174ddb0705c1da8bd3b823 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..31c07beaee975bdc3eba82dfbdadf9ffb2a5a4c6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d915c69855b4325b5d5f6350ec15d0e924c6e55b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +H_R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log`_ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3d7a6ca7b64cebda7c96b84c1bdd96cbd5426c65 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5f339e4e940fd4f3682fcb98e8c41aeb093666ad --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..18a3e518dde6ac37cc5e68b60fd4c6f81dc63ab5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..49ed152c3f6bb0cc307dece75be9d9de372d822e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c1afe53b52b236d512cf64c3a5ef1322a5bde6dd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.log @@ -0,0 +1,29 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.133s + +OK +expected = [19554.0, 19962.0, 20370.0, 22110.0, 22590.0, 23070.0, 34890.0, 35730.0, 36570.0, 37446.0, 38358.0, 39270.0, 50226.0, 51498.0, 52770.0, 52782.0, 54126.0, 55470.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 22110. 22590. 23070.]]] + + + [[[ 34890. 35730. 36570.] + [ 37446. 38358. 39270.]]] + + + [[[ 50226. 51498. 52770.] + [ 52782. 54126. 55470.]]]]] +expected = [19554.0, 19962.0, 20370.0, 22110.0, 22590.0, 23070.0, 34890.0, 35730.0, 36570.0, 37446.0, 38358.0, 39270.0, 50226.0, 51498.0, 52770.0, 52782.0, 54126.0, 55470.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 22110. 22590. 23070.]]] + + + [[[ 34890. 35730. 36570.] + [ 37446. 38358. 39270.]]] + + + [[[ 50226. 51498. 52770.] + [ 52782. 54126. 55470.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1ef4102180a599e9c60f54af11ace5c584e9616f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..eae0d4546cf8c87206eaabe1d36e78689e34a964 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..99efdcce94088046aa85f8b0ed80495c76274a2e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..735070d9ada62286ad82349b08a1404385b03a41 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ef2b45253983f850fd0c92c47c254c09f1747a5e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +H_R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log`_ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..afc54c86188222d395366c298c6bf36e7d3e5393 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..85522eb1a867a014406ba7ad5f6025426ed55236 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..76acadbf6f7a4fbd18ba8fef1bcf1617689113d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e8a1e573f5c4819cadf2e0cc37c71fbb6887e5ca --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..628a95c08edf9f7d449d168263964e0fc4f997dc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bb49346e4b6e5f3ba310e46ee4d529534b565346 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8d728fdb36d98b3fc0905ad4db71e4d9077e6aec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.log @@ -0,0 +1,17 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.123s + +OK +expected = [19554.0, 19962.0, 20370.0, 50226.0, 51498.0, 52770.0] +actual = [[[[[ 19554. 19962. 20370.]]] + + + [[[ 50226. 51498. 52770.]]]]] +expected = [19554.0, 19962.0, 20370.0, 50226.0, 51498.0, 52770.0] +actual = [[[[[ 19554. 19962. 20370.]]] + + + [[[ 50226. 51498. 52770.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..be819eb8e4eb67f8ad978c01e5d6b6f48a89ca6b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8cd3455e52ea74784097379133e56aae8977d587 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..998ccdbb591502976261c22fd68edd1ad2d3cc80 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0db6c3716185155ece80a47280cf6bd3c67da917 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0d520f359a6e34982d1ffffead42b0420af143bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..68a838762c87b3bf47bc1bec1fc52750326c2303 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3edd4a87e4de159f6cd7c26ee69ad934d2790ba4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4fec4f56b8cdfda22104331e3602b78ba635826c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8105eb0fbaa3384288939065f5c08e3c372f4f5b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..302ea50d4f805ef8d2403b6e60c45041a11fa559 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log`g \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9d7f791d60b4f1e4b89c21b30276da57f0922207 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cbb6a2dcc2f8443a9b11e1bcc69eab3f886217e0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.log @@ -0,0 +1,21 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.131s + +OK +expected = [19554.0, 19962.0, 20370.0, 10452.0, 10710.0, 10968.0, 50226.0, 51498.0, 52770.0, 23844.0, 24534.0, 25224.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 10452. 10710. 10968.]]] + + + [[[ 50226. 51498. 52770.] + [ 23844. 24534. 25224.]]]]] +expected = [19554.0, 19962.0, 20370.0, 10452.0, 10710.0, 10968.0, 50226.0, 51498.0, 52770.0, 23844.0, 24534.0, 25224.0] +actual = [[[[[ 19554. 19962. 20370.] + [ 10452. 10710. 10968.]]] + + + [[[ 50226. 51498. 52770.] + [ 23844. 24534. 25224.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8faea98c4c744bd59037d29a0393bd760d881d08 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a0c423768b26d351db2ed7bfb3cb521ccccfcd73 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log`U \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..965c2fbb199de2a71ce1ec8bf0b1cebf177e1854 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.158s + +OK +expected = [36564.0, 38022.0, 39480.0, 37824.0, 39354.0, 40884.0, 39084.0, 40686.0, 42288.0, 46644.0, 48678.0, 50712.0, 47904.0, 50010.0, 52116.0, 49164.0, 51342.0, 53520.0, 107124.0, 112614.0, 118104.0, 108384.0, 113946.0, 119508.0, 109644.0, 115278.0, 120912.0, 117204.0, 123270.0, 129336.0, 118464.0, 124602.0, 130740.0, 119724.0, 125934.0, 132144.0] +actual = [[[[[ 36564. 38022. 39480.] + [ 37824. 39354. 40884.] + [ 39084. 40686. 42288.]] + + [[ 46644. 48678. 50712.] + [ 47904. 50010. 52116.] + [ 49164. 51342. 53520.]]] + + + [[[ 107124. 112614. 118104.] + [ 108384. 113946. 119508.] + [ 109644. 115278. 120912.]] + + [[ 117204. 123270. 129336.] + [ 118464. 124602. 130740.] + [ 119724. 125934. 132144.]]]]] +expected = [36564.0, 38022.0, 39480.0, 37824.0, 39354.0, 40884.0, 39084.0, 40686.0, 42288.0, 46644.0, 48678.0, 50712.0, 47904.0, 50010.0, 52116.0, 49164.0, 51342.0, 53520.0, 107124.0, 112614.0, 118104.0, 108384.0, 113946.0, 119508.0, 109644.0, 115278.0, 120912.0, 117204.0, 123270.0, 129336.0, 118464.0, 124602.0, 130740.0, 119724.0, 125934.0, 132144.0] +actual = [[[[[ 36564. 38022. 39480.] + [ 37824. 39354. 40884.] + [ 39084. 40686. 42288.]] + + [[ 46644. 48678. 50712.] + [ 47904. 50010. 52116.] + [ 49164. 51342. 53520.]]] + + + [[[ 107124. 112614. 118104.] + [ 108384. 113946. 119508.] + [ 109644. 115278. 120912.]] + + [[ 117204. 123270. 129336.] + [ 118464. 124602. 130740.] + [ 119724. 125934. 132144.]]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..472ec9c68051c469550ffe13f115b8b5ce989618 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9ea03ab0b8c127fb633902a066df528554d8ffbd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 11.513s + +OK +conv3d gradient error = 1.10744746706e-12 +conv3d gradient error = 0.000723183 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3034ec1e1f85859b0b1ea28a43f6c181e2c638ef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b1dd6693524c69543f97afa6900400e907ea2d35 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 36.614s + +OK +conv3d gradient error = 3.38351568985e-12 +conv3d gradient error = 0.00266284 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97b021fc8c08d2045756f5dd8c58a30ea2d97809 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ce1b0c60c67e3fa755675db40cfef83102ad8ce2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 11.949s + +OK +conv3d gradient error = 8.14126543958e-13 +conv3d gradient error = 0.000395894 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c0701dd922a859e6297e5abb06f9c1c63a7e56da --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d420420970f2022a1151bef9e1a0c6d9ff13d893 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 27.664s + +OK +conv3d gradient error = 8.69193605979e-13 +conv3d gradient error = 0.0007447 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..bcf4c3c256b90fc71aa08de66f55307b9f1c1a1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_3d_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a577f81ea6ac5982a4b7e5e80acc9989c125d3e6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/conv_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d2640224ee45da9e5074bc6a77ef63d4e53927d5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log @@ -0,0 +1,591 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...........expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [30.0, 36.0, 42.0, 66.0, 81.0, 96.0, 102.0, 126.0, 150.0, 138.0, 171.0, 204.0, 174.0, 216.0, 258.0, 210.0, 261.0, 312.0] +actual = [[[[ 30. 36. 42.] + [ 66. 81. 96.] + [ 102. 126. 150.]] + + [[ 138. 171. 204.] + [ 174. 216. 258.] + [ 210. 261. 312.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [231.0, 252.0, 273.0, 384.0, 423.0, 462.0, 690.0, 765.0, 840.0, 843.0, 936.0, 1029.0] +actual = [[[[ 231. 252. 273.] + [ 384. 423. 462.]] + + [[ 690. 765. 840.] + [ 843. 936. 1029.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [5.0, 8.0, 14.0, 17.0] +actual = [[[[ 5.]] + + [[ 8.]]] + + + [[[ 14.]] + + [[ 17.]]]] +expected = [1.0, 4.0, 4.0, 3.0, 10.0, 8.0] +actual = [[[[ 1.] + [ 4.] + [ 4.]] + + [[ 3.] + [ 10.] + [ 8.]]]] +expected = [1.0, 4.0, 4.0, 3.0, 10.0, 8.0] +actual = [[[[ 1.] + [ 4.] + [ 4.]] + + [[ 3.] + [ 10.] + [ 8.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. 120. 153.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. 120. 153.]]]] +expected = [17.0, 22.0, 27.0, 22.0, 29.0, 36.0, 27.0, 36.0, 45.0, 32.0, 43.0, 54.0, 37.0, 50.0, 63.0, 42.0, 57.0, 72.0, 62.0, 85.0, 108.0, 67.0, 92.0, 117.0, 72.0, 99.0, 126.0, 77.0, 106.0, 135.0, 82.0, 113.0, 144.0, 87.0, 120.0, 153.0] +actual = [[[[ 17. 22. 27.] + [ 22. 29. 36.] + [ 27. 36. 45.]] + + [[ 32. 43. 54.] + [ 37. 50. 63.] + [ 42. 57. 72.]]] + + + [[[ 62. 85. 108.] + [ 67. 92. 117.] + [ 72. 99. 126.]] + + [[ 77. 106. 135.] + [ 82. 113. 144.] + [ 87. 120. 153.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [161.0, 182.0, 287.0, 308.0] +actual = [[[[ 161.]] + + [[ 182.]]] + + + [[[ 287.]] + + [[ 308.]]]] +expected = [14.0, 32.0, 50.0, 100.0, 163.0, 226.0, 167.0, 212.0, 257.0, 122.0, 140.0, 158.0, 478.0, 541.0, 604.0, 437.0, 482.0, 527.0] +actual = [[[[ 14. 32. 50.] + [ 100. 163. 226.] + [ 167. 212. 257.]] + + [[ 122. 140. 158.] + [ 478. 541. 604.] + [ 437. 482. 527.]]]] +expected = [14.0, 32.0, 50.0, 100.0, 163.0, 226.0, 167.0, 212.0, 257.0, 122.0, 140.0, 158.0, 478.0, 541.0, 604.0, 437.0, 482.0, 527.0] +actual = [[[[ 14. 32. 50.] + [ 100. 163. 226.] + [ 167. 212. 257.]] + + [[ 122. 140. 158.] + [ 478. 541. 604.] + [ 437. 482. 527.]]]] +expected = [1.0, 2.0, 2.0, 4.0, 3.0, 6.0, 7.0, 12.0, 11.0, 18.0, 15.0, 24.0, 12.0, 16.0, 15.0, 20.0, 18.0, 24.0] +actual = [[[[ 1.] + [ 2.] + [ 2.] + [ 4.] + [ 3.] + [ 6.]] + + [[ 7.] + [ 12.] + [ 11.] + [ 18.] + [ 15.] + [ 24.]] + + [[ 12.] + [ 16.] + [ 15.] + [ 20.] + [ 18.] + [ 24.]]]] +expected = [1.0, 2.0, 2.0, 4.0, 3.0, 6.0, 7.0, 12.0, 11.0, 18.0, 15.0, 24.0, 12.0, 16.0, 15.0, 20.0, 18.0, 24.0] +actual = [[[[ 1.] + [ 2.] + [ 2.] + [ 4.] + [ 3.] + [ 6.]] + + [[ 7.] + [ 12.] + [ 11.] + [ 18.] + [ 15.] + [ 24.]] + + [[ 12.] + [ 16.] + [ 15.] + [ 20.] + [ 18.] + [ 24.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2272. 2368. 2464.] + [ 2900. 3032. 3164.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2272. 2368. 2464.] + [ 2900. 3032. 3164.]]]] +expected = [2271.0, 2367.0, 2463.0, 2901.0, 3033.0, 3165.0] +actual = [[[[ 2271. 2367. 2463.] + [ 2901. 3033. 3165.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [58.0, 78.0, 98.0, 118.0, 138.0, 158.0] +actual = [[[[ 58.] + [ 78.] + [ 98.]] + + [[ 118.] + [ 138.] + [ 158.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2272. 2368. 2464.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2272. 2368. 2464.]]]] +expected = [2271.0, 2367.0, 2463.0] +actual = [[[[ 2271. 2367. 2463.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2272. 2368. 2464.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [ 1230. 1305. 1380.]]]]................................................................................................................................................................................................ +---------------------------------------------------------------------- +Ran 203 tests in 74.097s + +OK + +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2272. 2368. 2464.] + [ 1230. 1305. 1380.]]]] +expected = [2271.0, 2367.0, 2463.0, 1230.0, 1305.0, 1380.0] +actual = [[[[ 2271. 2367. 2463.] + [ 1230. 1305. 1380.]]]] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [] +actual = [] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 7, 9] +actual = [[[[ 1.] + [ 3.]] + + [[ 7.] + [ 9.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [1, 3, 9, 11] +actual = [[[[ 1.] + [ 3.]] + + [[ 9.] + [ 11.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [44, 28, 41, 16] +actual = [[[[ 44.] + [ 28.]] + + [[ 41.] + [ 16.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [65, 95, 275, 305] +actual = [[[[ 65.] + [ 95.]] + + [[ 275.] + [ 305.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [78.0] +actual = [[[[ 78.]]]] +expected = [1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0] +actual = [[[[ 1.] + [ 0.] + [ 2.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]] + + [[ 3.] + [ 0.] + [ 4.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]]]] +expected = [1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0] +actual = [[[[ 1.] + [ 0.] + [ 2.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]] + + [[ 3.] + [ 0.] + [ 4.] + [ 0.]] + + [[ 0.] + [ 0.] + [ 0.] + [ 0.]]]] +conv_2d gradient error = 0.000881791 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000923216 +conv_2d gradient error = 0.000291109 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000242651 +conv_2d gradient error = 0.000798941 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000743389 +conv_2d gradient error = 0.000280201 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000177562 +conv_2d gradient error = 0.000336409 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000222862 +conv_2d gradient error = 0.000771701 +conv_2d gradient error = 0.000209272 +conv_2d gradient error = 0.000757575 +conv_2d gradient error = 0.000252843 +conv_2d gradient error = 0.000227869 +conv_2d gradient error = 0.000184536 +conv_2d gradient error = 0.000438988 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.000382587 +conv_2d gradient error = 0.000851691 +conv_2d gradient error = 0.000238717 +conv_2d gradient error = 0.000851691 +conv_2d gradient error = 0.000452638 +conv_2d gradient error = 0.000241101 +conv_2d gradient error = 0.000436544 +conv_2d gradient error = 0.000298858 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.000382587 +conv_2d gradient error = 0.000877716 +conv_2d gradient error = 0.000238717 +conv_2d gradient error = 0.000803307 +conv_2d gradient error = 0.00032863 +conv_2d gradient error = 0.000235081 +conv_2d gradient error = 0.00035283 +value = [[[[ 196. 216. 272. 296.] + [ 252. 280. 344. 376.]]]] +value = [[[[ 6644.5 6971.5 7298.5 7625.5 7952.5 8279.5 8606.5 ] + [ 8154.5 8556.5 8958.5 9360.5 9762.5 10164.5 10566.5 ] + [ 9664.5 10141.5 10618.5 11095.5 11572.5 12049.5 12526.5 ] + [ 4145.5 4346.5 4547.5 4748.5 4949.5 5150.5 5351.5 ]] + + [[ 12684.5 13311.5 13938.5 14565.5 15192.5 15819.5 16446.5 ] + [ 14194.5 14896.5 15598.5 16300.5 17002.5 17704.5 18406.5 ] + [ 15704.5 16481.5 17258.5 18035.5 18812.5 19589.5 20366.5 ] + [ 6499.5 6814.5 7129.5 7444.5 7759.5 8074.5 8389.5 ]] + + [[ 18724.5 19651.5 20578.5 21505.5 22432.5 23359.5 24286.5 ] + [ 20234.5 21236.5 22238.5 23240.5 24242.5 25244.5 26246.5 ] + [ 21744.5 22821.5 23898.5 24975.5 26052.5 27129.5 28206.5 ] + [ 8853.5 9282.5 9711.5 10140.5 10569.5 10998.5 11427.5 ]] + + [[ 5746.75 6010.75 6274.75 6538.75 6802.75 7066.75 7330.75] + [ 6168.75 6452.25 6735.75 7019.25 7302.75 7586.25 7869.75] + [ 6590.75 6893.75 7196.75 7499.75 7802.75 8105.75 8408.75] + [ 2036.25 2119.5 2202.75 2286. 2369.25 2452.5 2535.75]]]] +value = [[[[ 5742. 6069. 6396. 6723. 7050. 7377. ] + [ 7047. 7449. 7851. 8253. 8655. 9057. ] + [ 8352. 8829. 9306. 9783. 10260. 10737. ] + [ 3582. 3783. 3984. 4185. 4386. 4587. ]] + + [[ 10962. 11589. 12216. 12843. 13470. 14097. ] + [ 12267. 12969. 13671. 14373. 15075. 15777. ] + [ 13572. 14349. 15126. 15903. 16680. 17457. ] + [ 5616. 5931. 6246. 6561. 6876. 7191. ]] + + [[ 16182. 17109. 18036. 18963. 19890. 20817. ] + [ 17487. 18489. 19491. 20493. 21495. 22497. ] + [ 18792. 19869. 20946. 22023. 23100. 24177. ] + [ 7650. 8079. 8508. 8937. 9366. 9795. ]] + + [[ 4963.5 5227.5 5491.5 5755.5 6019.5 6283.5 ] + [ 5328. 5611.5 5895. 6178.5 6462. 6745.5 ] + [ 5692.5 5995.5 6298.5 6601.5 6904.5 7207.5 ] + [ 1757.25 1840.5 1923.75 2007. 2090.25 2173.5 ]]]] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..23942a65a3dcc1bc1904a152c4a2c25a6349f1a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0aea6ce60bfb7e9adf917d2d14866ce3f32f0818 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status @@ -0,0 +1 @@ +HבR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cross_grad_test/test.log`ב \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1e9eb4d109982a8fd3416d344ccaecceae37be49 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.337s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c592fad9512b7fb3aece35c697788383948682f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f9ee2a870ad6583fa401e6c4175ff6725be33b46 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c564231091adf8ed0776fc79eb900bf26bf8ad0a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_decoder_ops_test.runfiles/tensorflow/python/kernel_tests/ctc_decoder_ops_test.py:102: RuntimeWarning: divide by zero encountered in log + input_log_prob_matrix_0 = np.log(input_prob_matrix_0) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_decoder_ops_test.runfiles/tensorflow/python/kernel_tests/ctc_decoder_ops_test.py:115: RuntimeWarning: divide by zero encountered in log + input_log_prob_matrix_1 = np.log(input_prob_matrix_1) +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.267s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2aec3f0f8fa66f01e4690a2603e20e173675d4b2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5afcfa3071289d307988aa584d3572da05f2e3b1 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d481d8eecd55d060984f5a750a61d502238dd646 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log @@ -0,0 +1,36 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/kernel_tests/ctc_loss_op_test.py:52: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(len(inputs), len(grad_truth)) +F. +====================================================================== +FAIL: testBasic (__main__.CTCLossTest) +Test two batch entries. +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/kernel_tests/ctc_loss_op_test.py", line 203, in testBasic + self._testCTCLoss(inputs, seq_lens, labels, loss_truth, grad_truth) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/kernel_tests/ctc_loss_op_test.py", line 67, in _testCTCLoss + self.assertAllClose(tf_loss, loss_truth, atol=1e-6) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/ctc_loss_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([ 3.342118, 5.422623], dtype=float32) + y: array([ 3.34211, 5.42262], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 0.167s + +FAILED (failures=1) +not close where = (array([0], dtype=int32),) +not close lhs = [ 3.34211779] +not close rhs = [ 3.34210992] +not close dif = [ 7.86781311e-06] +not close tol = [ 4.34211006e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc28ca3fc02b122adeb487ed2a3ad195794e84e1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ed46e393291881b3a5f80a26efbc4290564f725b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c3498cc312cc70562413cfb8201d90af79b452d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 34.435s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9c085c3afdc2139068811d2fd5ea14200bdd80d3 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..417ebf85f5f56f5f450ea4c47a345a29b78bb925 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_0D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 803, in testBCast_0D + self._testBCastD([1, 3, 2], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 66.66666666666666%) + x: array([[[ 1., 2.], + [ 3., 4.], + [ 5., 6.]]], dtype=float32) + y: array([[[ 0.999996, 1.999992], + [ 2.999989, 3.999985], + [ 5. , 6. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 47.684s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1], dtype=int32), array([0, 1, 0, 1], dtype=int32)) +not close lhs = [ 1. 2. 3. 4.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..859b9c68982dae78d37e993390fb97c0f66ac272 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b649e47dec8cad19ffad33ce7c0f6271c699c38c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 35.621s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9196f7be4c502fa80ee253322dc7c5d385435efa Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2a916f2dd0a07d7ce2adb076a302642ea941a3a2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_7D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 887, in testBCast_7D + self._testBCastD([1, 3, 2], [1, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 66.66666666666666%) + x: array([[[ 1. , 2. ], + [ 0.857143, 1.142857], + [ 0.833333, 1. ]]], dtype=float32) + y: array([[[ 0.999996, 1.999992], + [ 0.85714 , 1.142853], + [ 0.833333, 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 42.364s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1], dtype=int32), array([0, 1, 0, 1], dtype=int32)) +not close lhs = [ 1. 2. 0.85714287 1.14285719] +not close rhs = [ 0.99999619 1.99999237 0.85713959 1.14285278] +not close dif = [ 3.81469727e-06 7.62939453e-06 3.27825546e-06 4.41074371e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 1.85713952e-06 2.14285274e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1b144ee5a2f98465367b169b33f87bd98196c255 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f7bfcd00395aee3b032e834518b3b3a6e1744e8a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 44.020s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..907464aaae1c16afab9f982915cdac27e2d6d08e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HƗR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log`Ɨ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b345c394fd10cd1858c6f9875c34cd66be9e06d5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 90.259s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c49226fa9d4718f06649f94197db7ef7042b2dec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HΝR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log`Ν \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..87f1e554f2ae2914a12dacdc1b46519766306210 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 43.042s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cbc322a91287e656c2c0b02b5ea7544080e03e34 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cbbc3c3b0145123c4a078514485340f3aeb5ef5e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.log @@ -0,0 +1,55 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_8D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 899, in testBCast_8D + self._testBCastD([2, 1, 5], [2, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 60.0%) + x: array([[[ 1. , 1.555556, 2.111111, 2.666667, 3.222222], + [ 0.5 , 0.777778, 1.055556, 1.333333, 1.611111], + [ 0.333333, 0.518519, 0.703704, 0.888889, 1.074074]],... + y: array([[[ 0.999996, 1.55555 , 2.111103, 2.666656, 3.22221 ], + [ 0.499998, 0.777775, 1.055552, 1.333328, 1.611105], + [ 0.333333, 0.518518, 0.703703, 0.888888, 1.074073]],... + +---------------------------------------------------------------------- +Ran 3 tests in 48.450s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], dtype=int32), array([0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1], dtype=int32), array([0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 2, 3, 4], dtype=int32)) +not close lhs = [ 1. 1.55555558 2.11111116 2.66666675 3.22222233 0.5 + 0.77777779 1.05555558 1.33333337 1.61111116 0.94444442 1.08333337 + 1.22222221 1.36111116 1.5 0.97777778 1.08888888 1.20000005] +not close rhs = [ 0.99999619 1.55554962 2.11110306 2.66665649 3.22220993 0.49999809 + 0.77777481 1.05555153 1.33332825 1.61110497 0.94444084 1.0833292 + 1.22221756 1.36110592 1.49999428 0.97777569 1.08888662 1.19999743] +not close dif = [ 3.81469727e-06 5.96046448e-06 8.10623169e-06 1.02519989e-05 + 1.23977661e-05 1.90734863e-06 2.98023224e-06 4.05311584e-06 + 5.12599945e-06 6.19888306e-06 3.57627869e-06 4.17232513e-06 + 4.64916229e-06 5.24520874e-06 5.72204590e-06 2.08616257e-06 + 2.26497650e-06 2.62260437e-06] +not close tol = [ 1.99999613e-06 2.55554960e-06 3.11110307e-06 3.66665654e-06 + 4.22221001e-06 1.49999801e-06 1.77777474e-06 2.05555148e-06 + 2.33332821e-06 2.61110495e-06 1.94444078e-06 2.08332904e-06 + 2.22221752e-06 2.36110600e-06 2.49999425e-06 1.97777581e-06 + 2.08888650e-06 2.19999743e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5e779fa4626d2e2c6d51b44068e707e8051c568a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bdfffd13a9329b16c0b09f18aab267b107bb95a4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 29.727s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b2409cf24ac09dcab60bf3c35f2684953a163393 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b13204b10571ee49c9f7331356f0d2db7b54c26e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_11D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 935, in testBCast_11D + self._testBCastD([1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.999996, 0.999996], + [ 0.999999, 0.999996], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 43.119s + +FAILED (failures=1) +not close where = (array([0, 0, 0], dtype=int32), array([0, 0, 1], dtype=int32), array([0, 1, 1], dtype=int32)) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a31904d743f7f8163465a49d4fc1fa11c109abc Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..001aa1a22274a4858f2473a8e4b6419a63aaa500 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_4D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 851, in testBCast_4D + self._testBCastD([1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.999996, 0.999996], + [ 0.999999, 0.999996], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 7.227s + +FAILED (failures=1) +not close where = (array([0, 0, 0], dtype=int32), array([0, 0, 1], dtype=int32), array([0, 1, 1], dtype=int32)) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..63046bfb1004b6284dd0d00f064bbdb08b128575 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9a491685efebbdf0e68de8a19c2db85f8e2447c5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 39.123s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..716876f064c76d234ca57335bdb354ea469dd7fc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b21ee8ffc6512e863b478aa25182764257e8f51f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 62.766s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..521862f21732866acd8a018a327b20624469c84f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6bb5a4fff3e46a5e7e59321e8270bcc7f9d81b11 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 22.560s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..036d8f382a572f06bbc686f4d5a7fba63287ba9a Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e4d4db35ec375d9c945b7bc50e541ff1f3ed273b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.log @@ -0,0 +1,73 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +FF. +====================================================================== +FAIL: testBCast_12D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 947, in testBCast_12D + self._testBCastD([1, 1, 1, 1, 3, 2], [1, 3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([[[[[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]]]]], dtype=float32) + y: array([[[[[[ 0.999996, 0.999996], + [ 0.999999, 0.999996], + [ 1. , 1. ]]]]]], dtype=float32) + +====================================================================== +FAIL: testComplex64Basic (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 680, in testComplex64Basic + self._compareCpu(x, y + 0.1, np.true_divide, tf.truediv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 16.66666666666667%) + x: array([[[-0.498750-0.001244j, -0.497917-0.002066j], + [-0.493752-0.006096j, -0.506248+0.006408j], + [-0.502083+0.002101j, -0.501250+0.001256j]]], dtype=complex64) + y: array([[[-0.498750-0.001244j, -0.497916-0.002066j], + [-0.493752-0.006096j, -0.506246+0.006408j], + [-0.502083+0.002101j, -0.501249+0.001256j]]], dtype=complex64) + +---------------------------------------------------------------------- +Ran 3 tests in 6.823s + +FAILED (failures=2) +not close where = (array([0, 0, 0], dtype=int32), array([0, 0, 0], dtype=int32), array([0, 0, 0], dtype=int32), array([0, 0, 0], dtype=int32), array([0, 0, 1], dtype=int32), array([0, 1, 1], dtype=int32)) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] +not close where = (array([0], dtype=int32), array([1], dtype=int32), array([1], dtype=int32)) +not close lhs = [-0.506248+0.0064082j] +not close rhs = [-0.50624639+0.00640818j] +not close dif = [ 1.60946183e-06] +not close tol = [ 1.50628694e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a4e1eca669d8d53f5ec61c1b11b2412f5570dfc8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6e3fa8d19e338e5d1efd09fa3a4031568ba34c36 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.log @@ -0,0 +1,10 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py:625: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + tf.logging.warn("Cannot test special functions: %s" % str(e)) +WARNING:tensorflow:Cannot test special functions: No module named 'scipy' +.. +---------------------------------------------------------------------- +Ran 3 tests in 30.009s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2bd4c8a86327a58913d96be571ed36639448ae35 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f59259ec16cc9fcfa6bb73a5e94a9852817cfe6b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testFloatBasic (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 557, in testFloatBasic + self._compareBoth(x, y + 0.1, np.true_divide, tf.truediv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 541, in _compareBoth + self._compareCpu(x, y, np_func, tf_func, also_compare_variables) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 20.0%) + x: array([[[ -2.487562e-01, -1.755070e-01, -8.643042e-02, 2.422480e-02, + 1.653804e-01], + [ 3.516624e-01, 6.088280e-01, 9.868421e-01, 1.597052e+00,... + y: array([[[ -2.487559e-01, -1.755069e-01, -8.643037e-02, 2.422479e-02, + 1.653804e-01], + [ 3.516621e-01, 6.088274e-01, 9.868391e-01, 1.597051e+00,... + +---------------------------------------------------------------------- +Ran 3 tests in 45.979s + +FAILED (failures=1) + + +not close where = (array([0, 0, 0], dtype=int32), array([1, 1, 2], dtype=int32), array([2, 4, 0], dtype=int32)) +not close lhs = [ 0.9868421 2.74822688 5.73248434] +not close rhs = [ 0.98683912 2.74822259 5.73247576] +not close dif = [ 2.98023224e-06 4.29153442e-06 8.58306885e-06] +not close tol = [ 1.98683915e-06 3.74822275e-06 6.73247541e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4912b8fe6fe1c87a250caf3e15c70357ab9676cc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HՂR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log`Ղ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..99c357ee53e6158f57aecd7c0c89b287035170d8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 22.299s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4d2bb39c34fe9635001ba916ff1126c11b2db38f Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7623d218389b78481de4a928052c222bc3e7ddd0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_13D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 959, in testBCast_13D + self._testBCastD([1, 3, 2, 1, 1], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 66.66666666666666%) + x: array([[[[[ 1.]], + + [[ 2.]]],... + y: array([[[[[ 0.999996]], + + [[ 1.999992]]],... + +---------------------------------------------------------------------- +Ran 3 tests in 6.823s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1], dtype=int32), array([0, 1, 0, 1], dtype=int32), array([0, 0, 0, 0], dtype=int32), array([0, 0, 0, 0], dtype=int32)) +not close lhs = [ 1. 2. 3. 4.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..799e58b4ed780a0e677406087133fc7c9dc1e7a3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..aae31c9061ac4a0b4207f008c64aff8ece352a74 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 23.474s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..85ef1292cd5bf8d1a0bd7e95aa00acba7cb26d2f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a6dea6521726e0b0c3c26a0783c56dfed788469c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 40.064s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a78bea35c0cd174b99433587700b69a5e9115d54 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dc82b219c56d4f15c4fdb6e9deb837a0e772737a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 20.716s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8020538e3fc3203ddcee062086542bc228a7a7d4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..1602f292f205242bfc339da6109a3277c1e09e1f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 31.920s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7579d320fa9689a4b840ffb99ae3504ee659cdbf Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..44ffbf9bd3a6c0e44ea536fb253035fe116d6b14 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.log @@ -0,0 +1,100 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.F +====================================================================== +FAIL: testBCast_14D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 971, in testBCast_14D + self._testBCastD([2, 3, 1, 1, 5], [1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 93.33333333333333%) + x: array([[[[[ 1. , 1.172414, 1.344828, 1.517241, 1.689655]]], + +... + y: array([[[[[ 0.999996, 1.172409, 1.344822, 1.517236, 1.689649]]], + +... + +====================================================================== +FAIL: testComplex64Basic (__main__.UnaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 370, in testComplex64Basic + self._compareCpu(y, self._inv, tf.inv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 78, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 66.66666666666666%) + x: array([[[-0.163934+0.196721j, -0.240000+0.32j ], + [-0.400000+0.8j , 2.000000+0.j ], + [ 0.461538-0.307692j, 0.243902-0.195122j]]], dtype=complex64) + y: array([[[-0.163934+0.19672j , -0.239999+0.319999j], + [-0.399999+0.799998j, 1.999992+0.j ], + [ 0.461538-0.307692j, 0.243902-0.195121j]]], dtype=complex64) + +---------------------------------------------------------------------- +Ran 3 tests in 8.955s + +FAILED (failures=2) +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1], dtype=int32), array([0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, + 1, 1, 2, 2, 2], dtype=int32), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0], dtype=int32), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0], dtype=int32), array([0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, + 3, 4, 0, 1, 2], dtype=int32)) +not close lhs = [ 1. 1.17241383 1.34482753 1.51724136 1.68965518 1.86206901 + 2.03448272 2.20689654 2.37931037 2.5517242 2.72413802 2.89655161 + 3.06896544 3.24137926 3.41379309 3.58620691 3.75862074 3.93103456 + 4.10344839 4.27586222 4.44827604 4.62068987 4.79310322 4.96551704 + 5.13793087 5.3103447 5.48275852 5.65517235] +not close rhs = [ 0.99999619 1.1724093 1.34482241 1.51723552 1.68964875 1.86206186 + 2.03447485 2.2068882 2.37930131 2.55171442 2.72412753 2.89654064 + 3.06895375 3.24136686 3.41377997 3.58619332 3.75860643 3.93101954 + 4.10343266 4.275846 4.44825888 4.62067223 4.7930851 4.96549797 + 5.13791132 5.31032467 5.48273754 5.65515089] +not close dif = [ 3.81469727e-06 4.52995300e-06 5.12599945e-06 5.84125519e-06 + 6.43730164e-06 7.15255737e-06 7.86781311e-06 8.34465027e-06 + 9.05990601e-06 9.77516174e-06 1.04904175e-05 1.09672546e-05 + 1.16825104e-05 1.23977661e-05 1.31130219e-05 1.35898590e-05 + 1.43051147e-05 1.50203705e-05 1.57356262e-05 1.62124634e-05 + 1.71661377e-05 1.76429749e-05 1.81198120e-05 1.90734863e-05 + 1.95503235e-05 2.00271606e-05 2.09808350e-05 2.14576721e-05] +not close tol = [ 1.99999613e-06 2.17240927e-06 2.34482241e-06 2.51723554e-06 + 2.68964868e-06 2.86206182e-06 3.03447496e-06 3.20688832e-06 + 3.37930123e-06 3.55171460e-06 3.72412751e-06 3.89654042e-06 + 4.06895379e-06 4.24136670e-06 4.41378006e-06 4.58619343e-06 + 4.75860634e-06 4.93101925e-06 5.10343261e-06 5.27584598e-06 + 5.44825889e-06 5.62067225e-06 5.79308517e-06 5.96549762e-06 + 6.13791099e-06 6.31032435e-06 6.48273726e-06 6.65515063e-06] +not close where = (array([0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1], dtype=int32), array([0, 1, 0, 1], dtype=int32)) +not close lhs = [-0.16393444+0.19672133j -0.23999999+0.31999999j -0.40000001+0.80000001j + 2.00000000+0.j ] +not close rhs = [-0.16393363+0.19672036j -0.23999897+0.31999862j -0.39999914+0.79999828j + 1.99999237+0.j ] +not close dif = [ 1.25921429e-06 1.71363354e-06 1.93256051e-06 7.62939453e-06] +not close tol = [ 1.25607255e-06 1.39999827e-06 1.89442528e-06 2.99999238e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..51ecc5d4448c5f2debbc981e4bd51d1f6cd1f64d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..be0ae501b6e57a1107d9cd4e617047bde5d14326 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 40.476s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d4ab32e0b98a8f68dc5abad23524d985d76a9705 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..db414661cbf4990fcd220ef76eafe9fd2ffd71e7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.log @@ -0,0 +1,39 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..F +====================================================================== +FAIL: testFloatBasic (__main__.UnaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 190, in testFloatBasic + self._compareBoth(y, self._inv, tf.inv) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 153, in _compareBoth + self._compareCpu(x, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 78, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 33.33333333333333%) + x: array([[[-0.44 , -0.733333], + [-2.2 , 2.2 ], + [ 0.733333, 0.44 ]]], dtype=float32) + y: array([[[-0.439999, -0.733333], + [-2.199992, 2.199992], + [ 0.733333, 0.44 ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 56.819s + +FAILED (failures=1) +not close where = (array([0, 0], dtype=int32), array([1, 1], dtype=int32), array([0, 1], dtype=int32)) +not close lhs = [-2.20000005 2.20000005] +not close rhs = [-2.1999917 2.1999917] +not close dif = [ 8.34465027e-06 8.34465027e-06] +not close tol = [ 3.19999162e-06 3.19999162e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..570e94d0829eb2a7cb22e295ff71f631c9563f54 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..64309027b94781d452d7c135cef8887520203ee7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 38.427s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..21a4cca6190d83b3240616c16d5e6e9214c3eefe Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dba3ddef87c92f37a81ed5743a805e2a87b8d048 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.log @@ -0,0 +1,71 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_15D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 983, in testBCast_15D + self._testBCastD([10, 3, 1, 2], [3, 1, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 53.333333333333336%) + x: array([[[[ 1. , 0.542373]], + + [[ 0.38983 , 0.313559]],... + y: array([[[[ 0.999996, 0.542371]], + + [[ 0.38983 , 0.313558]],... + +---------------------------------------------------------------------- +Ran 3 tests in 14.267s + +FAILED (failures=1) +not close where = (array([0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, + 7, 8, 8, 8, 8, 9, 9, 9, 9], dtype=int32), array([0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, + 2, 0, 0, 1, 2, 0, 0, 1, 2], dtype=int32), array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int32), array([0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, + 0, 0, 1, 1, 0, 0, 1, 1, 0], dtype=int32)) +not close lhs = [ 1. 0.54237288 1.50847459 0.79661018 0.44067797 2.01694918 + 1.05084741 0.56779659 2.52542377 1.30508471 0.69491524 3.03389835 + 1.559322 0.82203388 3.54237294 1.81355929 0.94915253 4.05084753 + 2.06779671 1.07627118 4.55932188 2.32203388 1.20338988 0.97966099 + 5.06779671 2.5762713 1.33050847 1.08135593 5.57627106 2.83050847 + 1.45762718 1.18305087] +not close rhs = [ 0.99999619 0.5423708 1.50846887 0.79660714 0.4406763 2.01694155 + 1.05084336 0.56779444 2.52541423 1.3050797 0.69491261 3.03388667 + 1.55931604 0.82203072 3.54235935 1.81355238 0.94914889 4.05083227 + 2.06778884 1.07626712 4.55930471 2.32202506 1.20338523 0.9796589 + 5.06777716 2.57626152 1.33050334 1.08135366 5.5762496 2.83049774 + 1.45762157 1.18304825] +not close dif = [ 3.81469727e-06 2.08616257e-06 5.72204590e-06 3.03983688e-06 + 1.66893005e-06 7.62939453e-06 4.05311584e-06 2.14576721e-06 + 9.53674316e-06 5.00679016e-06 2.62260437e-06 1.16825104e-05 + 5.96046448e-06 3.15904617e-06 1.35898590e-05 6.91413879e-06 + 3.63588333e-06 1.52587891e-05 7.86781311e-06 4.05311584e-06 + 1.71661377e-05 8.82148743e-06 4.64916229e-06 2.08616257e-06 + 1.95503235e-05 9.77516174e-06 5.12599945e-06 2.26497650e-06 + 2.14576721e-05 1.07288361e-05 5.60283661e-06 2.62260437e-06] +not close tol = [ 1.99999613e-06 1.54237080e-06 2.50846870e-06 1.79660719e-06 + 1.44067633e-06 3.01694172e-06 2.05084325e-06 1.56779447e-06 + 3.52541429e-06 2.30507976e-06 1.69491261e-06 4.03388685e-06 + 2.55931604e-06 1.82203075e-06 4.54235942e-06 2.81355233e-06 + 1.94914901e-06 5.05083199e-06 3.06778884e-06 2.07626726e-06 + 5.55930455e-06 3.32202490e-06 2.20338507e-06 1.97965892e-06 + 6.06777712e-06 3.57626141e-06 2.33050332e-06 2.08135361e-06 + 6.57624969e-06 3.83049792e-06 2.45762158e-06 2.18304831e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2af0878c2626323274b3339017978b162d935dff --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..3562ca556c11a43cd09b50fbee17d96ffd396501 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 33.861s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..843847822de17f9ae639d0790577e1ee0298d624 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..bd31596dc09d3d156e27dc34a0b2fda3d7a95dc2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 55.014s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8694e719ff8f96ca00a0b9841f0269045c3b04d6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cfbede5884497ed71fe7cf3bd705b274f154490d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 51.691s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1d136136fc0f4e30eca49f8276cdb7f8b57f6ad5 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..48f4afe340743bd1490afa5f1871ea0b790cb9ae --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testBCast_1D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 815, in testBCast_1D + self._testBCastD([1, 3, 2], [2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 33.33333333333333%) + x: array([[[ 1. , 0.333333], + [ 3. , 0.666667], + [ 5. , 1. ]]], dtype=float32) + y: array([[[ 0.999996, 0.333333], + [ 2.999989, 0.666666], + [ 5. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 3 tests in 22.014s + +FAILED (failures=1) +not close where = (array([0, 0], dtype=int32), array([0, 1], dtype=int32), array([0, 0], dtype=int32)) +not close lhs = [ 1. 3.] +not close rhs = [ 0.99999619 2.99998856] +not close dif = [ 3.81469727e-06 1.14440918e-05] +not close tol = [ 1.99999613e-06 3.99998862e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..42c3a0d429805387018cce0054cd56622569a47e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e28d41732c4a03ab0ed8520ae0d1726e2b32232d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 42.402s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2263ec73dfe08ac7c2c5b0de63d3e7e2869f9485 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..87780035c8661103d1bdd1d241169a37bceb7cbe --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 25.562s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b2d86733fb81679257e7d11caec618d1779baff0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..85877252b51747144f454ff346443a15d882a968 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 54.902s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0fd75ef9b0fdcea8a37b715125dd6e31ce57d076 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..317f6e0fa54e4ab4b9dedfa9e0259b01e1891341 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 92.444s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..02280eb778ef0c2e98c30af668806da77d3c2812 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..59c5688c292521e44e797c36a68796d28880aeb0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F. +====================================================================== +FAIL: testBCast_2D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 827, in testBCast_2D + self._testBCastD([1, 3, 2], [3, 2]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([[[ 1., 1.], + [ 1., 1.], + [ 1., 1.]]], dtype=float32) + y: array([[[ 0.999996, 0.999996], + [ 0.999999, 0.999996], + [ 1. , 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 7.192s + +FAILED (failures=1) +not close where = (array([0, 0, 0], dtype=int32), array([0, 0, 1], dtype=int32), array([0, 1, 1], dtype=int32)) +not close lhs = [ 1. 1. 1.] +not close rhs = [ 0.99999619 0.99999619 0.99999619] +not close dif = [ 3.81469727e-06 3.81469727e-06 3.81469727e-06] +not close tol = [ 1.99999613e-06 1.99999613e-06 1.99999613e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..92d4d696a3eb421b537bc248ab0b4e488caf7062 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..af250d20c66f43077fed9b748c5067b676f29c2e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 22.653s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0670edf89ecd9b8f4a48c6ebbb6cca52c3e06dbc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fc7b92a91234b71954d5253b1bb0b5416bf58ac5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 42.087s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ccccb8211801bc9066b238aa69727f4715cca872 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dc4d792c949b5e21371ae5e25a2444dad34e9af3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 18.429s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..746c1a304cfd10cf66af891c2f5342d7542b6aa1 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5e3cea0c3c4ad73e11c797e7f8cbfeb95585bcd0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.log @@ -0,0 +1,43 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F. +====================================================================== +FAIL: testBCast_3D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 839, in testBCast_3D + self._testBCastD([1, 3, 2], [3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 66.66666666666666%) + x: array([[[ 1. , 2. ], + [ 0.857143, 1.142857], + [ 0.833333, 1. ]]], dtype=float32) + y: array([[[ 0.999996, 1.999992], + [ 0.85714 , 1.142853], + [ 0.833333, 1. ]]], dtype=float32) + +---------------------------------------------------------------------- +Ran 2 tests in 6.425s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1], dtype=int32), array([0, 1, 0, 1], dtype=int32)) +not close lhs = [ 1. 2. 0.85714287 1.14285719] +not close rhs = [ 0.99999619 1.99999237 0.85713959 1.14285278] +not close dif = [ 3.81469727e-06 7.62939453e-06 3.27825546e-06 4.41074371e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 1.85713952e-06 2.14285274e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ee597c0091d7a0f5450ec07d0e2e62fd1fb376ba --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..67a149fdc8b5578b5d22fbf5461a3640b8f91356 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 22.012s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..59748c518022aacbb8a62a7db0d46cb45675a13d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..cdbe74993b864d4c265b3792bd921d909655f8c4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 41.387s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1d0737fd612788975189f8a059444cd031e4f05b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..20437d78498fd355a584a7f3fcec37af7eb79bf1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 23.648s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..727397019b09fb463d676606c427daea68ec7c42 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fa7903f3bdcd1198fd36a48777496b72e1f4da33 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 21.664s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d2a70acb0dd8a61420fc98da360d08ec0a6e5abe Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6b1452c0baeab94520ab9de63621b5b4e615a7f2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.log @@ -0,0 +1,45 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_5D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 863, in testBCast_5D + self._testBCastD([1, 3, 2], [2, 3, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 41.666666666666664%) + x: array([[[ 1. , 2. ], + [ 1.5 , 2. ], + [ 1.666667, 2. ]],... + y: array([[[ 0.999996, 1.999992], + [ 1.499994, 1.999992], + [ 1.666665, 1.999998]],... + +---------------------------------------------------------------------- +Ran 3 tests in 32.869s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 1], dtype=int32), array([0, 0, 1, 1, 0], dtype=int32), array([0, 1, 0, 1, 1], dtype=int32)) +not close lhs = [ 1. 2. 1.5 2. 0.5] +not close rhs = [ 0.99999619 1.99999237 1.49999428 1.99999237 0.49999809] +not close dif = [ 3.81469727e-06 7.62939453e-06 5.72204590e-06 7.62939453e-06 + 1.90734863e-06] +not close tol = [ 1.99999613e-06 2.99999238e-06 2.49999425e-06 2.99999238e-06 + 1.49999801e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b0fc36588a4f5f5c18efd4f960cd45194088d713 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8ca330e341a92c797982d3ec231098c5a5e84fa8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 20.443s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b025c27e00b9b19a889c137a7a612561dcc53bce --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..befc9e8da4997023e44ad69b9baf9e4a818d6f01 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 42.705s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0d179a2779c3b506ced6a46bcc718b28a7639cbf --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9a1a0c08098b217d0f7f858effa1c06006923617 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 43.686s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..df1b255b960fbb2311feaae7714ea8c00d99824c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5181815bd79737cbf29c1d23122ceb3d34407739 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..23e7e37dbdd3df92445b3ae5158d733945a4e298 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.log @@ -0,0 +1,45 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.F. +====================================================================== +FAIL: testBCast_6D (__main__.BinaryOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 875, in testBCast_6D + self._testBCastD([1, 3, 2], [2, 1, 1]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 791, in _testBCastD + self._testBCastByFunc(funcs, xs, ys) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 759, in _testBCastByFunc + self._compareBCast(xs, ys, dtype, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 727, in _compareBCast + self._compareCpu(x, y, np_func, tf_func) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/kernel_tests/cwise_ops_test.py", line 448, in _compareCpu + self.assertAllClose(np_ans, tf_cpu) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/cwise_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 50.0%) + x: array([[[ 1. , 2. ], + [ 3. , 4. ], + [ 5. , 6. ]],... + y: array([[[ 0.999996, 1.999992], + [ 2.999989, 3.999985], + [ 4.999981, 5.999977]],... + +---------------------------------------------------------------------- +Ran 3 tests in 37.307s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 0], dtype=int32), array([0, 0, 1, 1, 2, 2], dtype=int32), array([0, 1, 0, 1, 0, 1], dtype=int32)) +not close lhs = [ 1. 2. 3. 4. 5. 6.] +not close rhs = [ 0.99999619 1.99999237 2.99998856 3.99998474 4.99998093 5.99997711] +not close dif = [ 3.81469727e-06 7.62939453e-06 1.14440918e-05 1.52587891e-05 + 1.90734863e-05 2.28881836e-05] +not close tol = [ 1.99999613e-06 2.99999238e-06 3.99998862e-06 4.99998441e-06 + 5.99998066e-06 6.99997690e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a0ce094aad3ea6aa6124448a0383c96365ab20e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cwise_ops_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9896c656d866d76dd09b541d972ff04a7805fc36 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.cache_status @@ -0,0 +1 @@ +HxR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/decode_csv_op_test/test.log`x \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1b7c2c15f3ad589657e4a2988d90e7a7c41a898f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log @@ -0,0 +1,21 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] Field 0 in record 1 is not a valid int32: 9999999999999999999999999 + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Quoted field has to end with quote followed by delim or end + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_STRING], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Field 1 is required but missing in record 2! + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expect 1 fields but have 2 in record 0 + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Field 0 in record 2 is not a valid float: 3.0adf + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Field 1 in record 1 is not a valid int32: 234a + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_FLOAT, DT_INT32], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0, DecodeCSV/record_defaults_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Unquoted fields cannot have quotes/CRLFs inside + [[Node: DecodeCSV = DecodeCSV[OUT_TYPE=[DT_STRING], field_delim=",", _device="/job:localhost/replica:0/task:0/cpu:0"](DecodeCSV/records, DecodeCSV/record_defaults_0)]] +.. +---------------------------------------------------------------------- +Ran 16 tests in 0.764s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..eff4abc224ebfd691a6f4b42f212d6a4dbdcd7a3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bfa7885a1e0e59a4d218a1fc720859bad18a6c5b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.cache_status @@ -0,0 +1 @@ +H|R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/decode_png_op_test/test.log`| \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..14fc253ea2607fa881d22f30a4ae6d1747105370 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.057s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3729b5ef031b4bc9dc4cc8f713bf4087826b7a2d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e9deadea1f5bb45af5e8ce66e3e070d1ec5e0706 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.cache_status @@ -0,0 +1 @@ +HqR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/decode_raw_op_test/test.log`q \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..dd5b024bf3b7d4bac63a49950c51e22cf7ad8526 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Input to DecodeRaw has length 3 that is not a multiple of 2, the size of int16 + [[Node: DecodeRaw = DecodeRaw[little_endian=true, out_type=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] DecodeRaw requires input strings to all be the same size, but element 1 has size 5 != 6 + [[Node: DecodeRaw = DecodeRaw[little_endian=true, out_type=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.083s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fa2d92ed183f53f44553f09958c6c08c98bd308 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3a9b74279d631f567453225ff71a69959bef7d1c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status @@ -0,0 +1 @@ +HӆR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/denormal_test/test.log`ӆ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0cdc4bc691d72de9d14a615769b59d179486a814 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 0.117s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6cb8129519a83a1e1f1dacbb590d01fb9e4feb85 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1af914c3a5256b7f6f6a1ebdc1942e95fa971674 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..3d8104ca237378eaf777c1cf4b4c55510785d790 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.560s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..38d1f71b2ee3e5f8f74e9c8383b798ffb0b24057 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_no_tsan_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2d88bd0878cc0448b437957abae5fb6790900fa4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/dense_update_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2112bdf6df52ca1f7b76a8c7f355ebf3804975c4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: AssignAdd = AssignAdd[T=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, Fill_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: AssignSub = AssignSub[T=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, Fill_1)]] +.... +---------------------------------------------------------------------- +Ran 7 tests in 4.641s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..303bd2c02d6ebe8332c8c510ac403c043fcaffa5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc02db78bd956f3c34993eb0d6e8b0abf98ab18f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.cache_status @@ -0,0 +1 @@ +HٸR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/depthtospace_op_test/test.log`ٸ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..8f8d26155b032c09080b599e825f75ef113807db --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 6.544s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..17fdecf2069f1a29e2c5c4b77bc83d81b2543c4f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..76bfe5e59fdb95db4d8982b8db0db7072f73f058 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..231569b42fffa566775eb2d3728c4c696f779c76 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2b7bfb36c1af92f35bf53dbdd1b899e8aa599bf5 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5ba027d65b3c663b2e4dc8cef64bec447481574a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log @@ -0,0 +1,63 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +FF..E tensorflow/core/client/tensor_c_api.cc:485] The determinant is not finite. + [[Node: BatchMatrixDeterminant = BatchMatrixDeterminant[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixDeterminant/input)]] +... +====================================================================== +FAIL: testBasic (__main__.DeterminantOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 48, in testBasic + self._compareDeterminant(np.array([[2., 3.], [3., 4.]]).astype(np.float32)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 41, in _compareDeterminant + matrix_x, tf.batch_matrix_determinant(matrix_x)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 34, in _compareDeterminantBase + self.assertAllClose(np_ans, out) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array(-1.0, dtype=float32) + y: array(254.99993896484375, dtype=float32) + +====================================================================== +FAIL: testBasicDouble (__main__.DeterminantOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 59, in testBasicDouble + self._compareDeterminant(np.array([[2., 3.], [3., 4.]]).astype(np.float64)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 41, in _compareDeterminant + matrix_x, tf.batch_matrix_determinant(matrix_x)) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/kernel_tests/determinant_op_test.py", line 34, in _compareDeterminantBase + self.assertAllClose(np_ans, out) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/determinant_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 100.0%) + x: array(-1.0000000000000004) + y: array(255.0000000000001) + +---------------------------------------------------------------------- +Ran 7 tests in 0.341s + +FAILED (failures=2) +not close lhs = -1.0 +not close rhs = 254.99993896484375 +not close dif = 256.0 +not close tol = 0.000255999938965 +not close lhs = -1.0000000000000004 +not close rhs = 255.0000000000001 +not close dif = 256.0 +not close tol = 0.000256 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd6b14362dd4358e3b8dd73d1704b6e450cd20f6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..212314afc620db1f74c8eae8d86f656df7756af7 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..afa7e499dc4faf87b42a5e20df12656a732b6a10 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 1-dim, received shape: [] + [[Node: BatchMatrixDiag = BatchMatrixDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixDiagPart = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] input's last two dimensions must be equal, received shape: [3,2] + [[Node: BatchMatrixDiagPart_1 = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixDiagPart = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] input's last two dimensions must be equal, received shape: [3,2] + [[Node: BatchMatrixDiagPart_1 = BatchMatrixDiagPart[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 1-dim, received shape: [] + [[Node: BatchMatrixDiag = BatchMatrixDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.......E tensorflow/core/client/tensor_c_api.cc:485] input must be at least 2-dim, received shape: [] + [[Node: BatchMatrixSetDiag = BatchMatrixSetDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, BatchMatrixSetDiag/diagonal)]] +E tensorflow/core/client/tensor_c_api.cc:485] must have diagonal.shape == input.shape[:-1], but received input shape: [1,1] and diagonal shape: [] + [[Node: BatchMatrixSetDiag_1 = BatchMatrixSetDiag[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixSetDiag_1/input, _recv_Placeholder_0)]] +.... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f0b276f50e51ac4258ab4a19883f383c3b6b9ce9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/division_future_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..73da51998cd4879ff40cd049b7226a5c08963869 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 49.564s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..38b55fd004f995b4e4bdc8e16aae51eda63e1277 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0ea1683fc7ed869069bc87edad37bd53c5633023 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c094d1fd1c83d0ccdb995381c5b16466492d3bef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f35fdc5baa9d0fc82c2c84dbe120ac597327836d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log @@ -0,0 +1,23 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] partitions[2] = 99 is not in [0, 4) + [[Node: DynamicPartition = DynamicPartition[T=DT_INT32, num_partitions=4, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1)]] +...E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,0] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,1] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[0,2] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,0] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,1] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] partitions[1,2] = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, _recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] partitions = 17 is not in [0, 7) + [[Node: DynamicPartition = DynamicPartition[T=DT_DOUBLE, num_partitions=7, _device="/job:localhost/replica:0/task:0/cpu:0"](DynamicPartition/data, DynamicPartition/partitions)]] +.... +---------------------------------------------------------------------- +Ran 8 tests in 4.304s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..68d2b4178c4f115e912446df0b33d7c482e64506 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f4da97af9656218fa4f5b0d94b12a5b3daca35af --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5f5ec7c99d52a376be87c083e5a5417e3534640d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......... +---------------------------------------------------------------------- +Ran 9 tests in 0.536s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad193abd50d62255bba1f9fade6f2cf3f5351642 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c27c79648f909936f3d897a578f4d38ca96044d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/edit_distance_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..114e6e576fcec09ec5ae6d614efe44e3dfccebe2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 0.636s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ad927fdd588cf09c9d7dc11b28331f0d273aa0b2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..46327695190957fd349b90a125bf19e38adc7e3c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..185220ac499964236e47b7d84083941dc2a4cfca --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.063s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e3701f7b9fee6599e31f57061ea733cb21d003df --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..35d8a7c97960443112a9184bb2e9394582da9d88 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..408f8061d2239a4e4c4c7199e472be30e4b545d3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.048s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..173b07217478dcda53b2a2e0d08c67cc611b8631 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9b3b366386ef1bbbb5107648714d227bf15a0f38 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.178s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5f25643f7cdd13b25ba1b597ed35ec1d0ec40b55 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HsR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log`s \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4801d4e2c47d9c780797fac32c806de4df09f66b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 3.316s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8d492f428af4856b397dbbf99548215b914b550e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log`g \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9749a6724857ad52256c568995d564da9fe9cdac --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 1.787s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..acfbea8215b45b6a8b05fe157cc8106e704ad3d0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..818195c728300e61e87fd876d08a0ce9952d4b70 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/embedding_ops_test.runfiles/tensorflow/python/ops/embedding_ops.py:76: DeprecationWarning: elementwise == comparison failed; this will raise an error in the future. + if params is None or params == []: # pylint: disable=g-explicit-bool-comparison +. +---------------------------------------------------------------------- +Ran 1 test in 4.971s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f7e9aa5bf11f3d9bcbc96df89b849c7d6b56308b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..18bcc60efca93e4cd8d8a189a0e77b911016dd96 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.550s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f4a9d8ee411e5e5b6cea095ff24cb1f5fec0fcf3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..082b28c0557cb9bd0383ce7c6e1ad3e93bdfbe09 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.551s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f140c9671f95acddc104e7c6b84c80259073e255 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +HdR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log`d \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..8a0695332df23df4bf1a63ff0ced821752355cc2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.906s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cf86ae8eadd895d2647215739f3e5c27acfadfee --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +HUR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log`U \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d9122eda4926238c97f95c4849c6e4a0c3c7e7e6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.071s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..aa35c7007d77516750a35d32301dfcfb86d28d94 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9e6e9e0929ca96783e4024c565c2b6c540dc858f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.376s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6c2dd1fbe25c0c44b9e39d91c0280bb140ac3998 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +H_R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log`_ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..609453d39193493f594d0066d1c2869de5964745 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.406s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c8271b16a0cfa7cc61a16ce1a40ea3ee94487568 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dd3d3965a1b45c9d7e054790b72d02d694041725 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.278s + +OK +Construct ids (2,) diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c8a9b49e7781639d3d41657112f2f2e0567f1282 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..ac7595e567a51024f39bfa2a330c1b56a2411dc7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.003s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5f8389026e878a3d961ef02992514fe8e2851e88 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..12feeedcb90b009342bdfd4e345a33047cf200a9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.636s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7738599e48c8f3cb78c3475c5aaf0d0bdf1e8e54 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..27bdafffe2d435c7522c0eab34674cef392898eb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 1.838s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b7ae659b7d30916f9201d6a7a05af79622cf2cac --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HxR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log`x \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5eec39fc1f1adc297919ebfcc689de3072ed1a12 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 3.635s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2f0acf6339679cd72255b77cabfa0d35048b9c7b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log`f \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5ce309daea8ff3d295befce3e5132df9d461b90f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.472s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..422c828bc5997f5a8454f2927a9b5d5b3a7a0afb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..faf784cff434d97df97b3f038b3247d4121bad6e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.087s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..778d09955e52f7b52bb9b5b513a0cf59677501ec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +HXR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log`X \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..36d423b192e6108086b25ec875d4e36c1d51c9b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.002s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2608dfb14f403c723d05b5376c00aadc37dbbca8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HVR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log`V \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..fc20076650a11a2517a1db778a29cda1ea833e84 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.067s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..668757a3fbcb13a46d428009234162c10a9a3d25 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..057255cd65b715bfc45a060f5e9474f25730df9a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a86d6ad1546e4f2d68b8bdcc1e505bc76591fde4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..42dc1a2ef10fed0618b94a76e27b0ca70ebcc69d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e3b4cb84bb4b8c6b74529c5eb34c938ea0dd7e74 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HWR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log`W \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..effeccdc4277e8052a66808e52b5578cab2b263d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +H\R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log`\ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0644b3a700ec49343affb2fcad9dc4fe1e366776 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3064d59264c19adb5f62414d8307d3261b00dc42 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HՍR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log`Ս \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..aa2839910824d6c5b3223baa2b7e234d181bcfcb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HPR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log`P \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..25d5d303db71289b016cb67333468c59a1e1be69 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HAR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log`A \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fc2a861a17bd72002acfeef3abf995e46ddf4510 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +H]R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log`] \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c0e093184797aa50f078794da95564bffe358f8e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.085s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..28e9deff64c6e89128c8fe1e5bac3098f71d0f95 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log`` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..abe11ab5b75580c2ef8ff1a759d787c1a03e0c8d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HOR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log`O \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8b25c6088eefdd7713b50313775e1e551de4686f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log`` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b6c4c3734a63cb430406808e4d9508272226a84d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +HNR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log`N \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7806635c03312dc4bf4ac531d572824b2006413a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HJR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log`J \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9b02257629e3470c1a9f4f70f459ddde28e53996 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HJR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log`J \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8f5fd5131c04e29964c32ed7b026229b7bdf375e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HқR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log`қ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..59668707f9d3a250d38ac030f996b72d8a93bafc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HPR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log`P \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b21ef03bfcbf7183ca2e008065a4307acc3514d6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +HQR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log`Q \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..200a420d67bb014c133f0affd5ecd508fefa1756 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HPR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log`P \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0b790fd8f5c4aa09f3db259e53e7058b79c07efe --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +H^R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log`^ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b13ce2ca2445923aba85ecc7e8d604ebe7ebda11 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.095s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fe42340b262020f587f7e7fad3be75caf10a2366 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +HCR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log`C \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2116ba0706e5a3eafcce4e009825173e16e6c9a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- + +---------------------------------------------------------------------- +Ran 0 tests in 0.000s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3a108b4653882ccd19f3523e7e46a0fa76ddde47 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +H[R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log`[ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e3c07a3c1f7a52d848c4c5cc560216950fbca6be --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.276s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9fd68c6b766a39ee3bb25322923d43152cf1a0f3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HZR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log`Z \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b518e8f16b8b8c746fa223e0774e2f4ae86eb042 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.081s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..97e36c4e467f1b6057d8b26f6ad6ab73c56ca15f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HYR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log`Y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..66c9b4ec89f779628dabda99b7c3535b578499bb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 0.001s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fac58d8c5e3b62218f3c9a0f233f24b4b9bc4456 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f0156a9f2a47cbc232002b48ff1af921345dddbd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.log @@ -0,0 +1,100 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F +====================================================================== +FAIL: testEmbeddingLookupSparse (__main__.EmbeddingLookupSparseTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/embedding_ops_test.runfiles/tensorflow/python/kernel_tests/embedding_ops_test.py", line 492, in testEmbeddingLookupSparse + self.assertAllClose(np_embedding_sum, tf_embedding_sum) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/embedding_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=1e-06, atol=1e-06 + +(mismatch 72.0%) + x: array([[[ 8.448595, 7.593005, 8.454767, 7.413278, 8.782759], + [ 7.310991, 7.12557 , 8.52357 , 6.854922, 7.505107]], +... + y: array([[[ 8.448563, 7.592976, 8.454735, 7.413249, 8.782725], + [ 7.310964, 7.125543, 8.523538, 6.854922, 7.505107]], +... + +---------------------------------------------------------------------- +Ran 1 test in 0.382s + +FAILED (failures=1) +not close where = (array([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, + 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, + 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, + 9, 9, 9], dtype=int32), array([0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, + 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, + 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, + 1, 1, 1], dtype=int32), array([0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, + 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, + 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2, 0, 1, 2, 3, 4, + 0, 1, 2], dtype=int32)) +not close lhs = [ 8.44859505 7.5930047 8.45476723 7.41327763 8.78275871 7.31099129 + 7.1255703 8.52357006 7.4246254 7.41721487 7.71634912 7.58712006 + 7.84750843 7.58918858 7.91347027 9.03167152 6.76311827 6.7903204 + 6.15790749 6.30196762 6.56560946 5.37691784 6.14742613 7.31896591 + 5.31727934 5.22977304 3.9097333 4.61583996 4.35010338 3.56915712 + 3.98374104 5.18283749 7.27362585 6.91972685 8.19124889 6.81198406 + 7.57513046 6.73609114 6.81410217 8.74727058 4.77912331 4.80917406 + 4.35416508 4.83077049 4.3559556 4.39052057 3.98514199 4.65107679 + 5.84204197 5.04387903 6.39392233 5.8021307 6.39493322 6.91574764 + 6.42352676 4.90941334 5.66608572 5.84245634 6.60977888 6.50486088 + 5.98240948 6.05690575 4.59763765 5.97476482 3.42980433 3.49528885 + 5.18251657 4.15056658 4.67466927 5.38920784 4.72274399 4.93055248] +not close rhs = [ 8.44856262 7.59297562 8.4547348 7.41324949 8.78272533 7.31096363 + 7.12554312 8.52353764 7.42459726 7.41718674 7.71631956 7.58709097 + 7.84747839 7.58915949 7.91344023 9.03163719 6.76309252 6.79029465 + 6.15788412 6.30194378 6.56558418 5.37689734 6.14740276 7.31893778 + 5.31725883 5.22975302 3.90971828 4.61582232 4.35008669 3.56914353 + 3.98372579 5.18281794 7.27359819 6.91970062 8.19121742 6.81195831 + 7.57510138 6.73606539 6.81407595 8.74723721 4.77910519 4.80915594 + 4.35414839 4.8307519 4.35593891 4.39050388 3.98512673 4.65105915 + 5.84201956 5.04385996 6.39389801 5.80210876 6.39490891 6.91572142 + 6.42350245 4.90939474 5.66606426 5.84243393 6.60975361 6.50483608 + 5.98238659 6.05688286 4.59762001 5.97474194 3.42979121 3.4952755 + 5.18249702 4.15055084 4.67465162 5.38918734 4.72272587 4.93053389] +not close dif = [ 3.24249268e-05 2.90870667e-05 3.24249268e-05 2.81333923e-05 + 3.33786011e-05 2.76565552e-05 2.71797180e-05 3.24249268e-05 + 2.81333923e-05 2.81333923e-05 2.95639038e-05 2.90870667e-05 + 3.00407410e-05 2.90870667e-05 3.00407410e-05 3.43322754e-05 + 2.57492065e-05 2.57492065e-05 2.33650208e-05 2.38418579e-05 + 2.52723694e-05 2.05039978e-05 2.33650208e-05 2.81333923e-05 + 2.05039978e-05 2.00271606e-05 1.50203705e-05 1.76429749e-05 + 1.66893005e-05 1.35898590e-05 1.52587891e-05 1.95503235e-05 + 2.76565552e-05 2.62260437e-05 3.14712524e-05 2.57492065e-05 + 2.90870667e-05 2.57492065e-05 2.62260437e-05 3.33786011e-05 + 1.81198120e-05 1.81198120e-05 1.66893005e-05 1.85966492e-05 + 1.66893005e-05 1.66893005e-05 1.52587891e-05 1.76429749e-05 + 2.24113464e-05 1.90734863e-05 2.43186951e-05 2.19345093e-05 + 2.43186951e-05 2.62260437e-05 2.43186951e-05 1.85966492e-05 + 2.14576721e-05 2.24113464e-05 2.52723694e-05 2.47955322e-05 + 2.28881836e-05 2.28881836e-05 1.76429749e-05 2.28881836e-05 + 1.31130219e-05 1.33514404e-05 1.95503235e-05 1.57356262e-05 + 1.76429749e-05 2.05039978e-05 1.81198120e-05 1.85966492e-05] +not close tol = [ 9.44856311e-06 8.59297597e-06 9.45473494e-06 8.41324982e-06 + 9.78272601e-06 8.31096349e-06 8.12554299e-06 9.52353821e-06 + 8.42459758e-06 8.41718702e-06 8.71631983e-06 8.58709063e-06 + 8.84747897e-06 8.58915973e-06 8.91344098e-06 1.00316374e-05 + 7.76309298e-06 7.79029506e-06 7.15788383e-06 7.30194370e-06 + 7.56558393e-06 6.37689709e-06 7.14740281e-06 8.31893794e-06 + 6.31725879e-06 6.22975267e-06 4.90971797e-06 5.61582237e-06 + 5.35008667e-06 4.56914358e-06 4.98372583e-06 6.18281774e-06 + 8.27359872e-06 7.91970069e-06 9.19121794e-06 7.81195831e-06 + 8.57510167e-06 7.73606553e-06 7.81407562e-06 9.74723753e-06 + 5.77910487e-06 5.80915594e-06 5.35414847e-06 5.83075189e-06 + 5.35593881e-06 5.39050370e-06 4.98512645e-06 5.65105893e-06 + 6.84201950e-06 6.04385968e-06 7.39389770e-06 6.80210860e-06 + 7.39490861e-06 7.91572165e-06 7.42350221e-06 5.90939453e-06 + 6.66606411e-06 6.84243378e-06 7.60975354e-06 7.50483605e-06 + 6.98238637e-06 7.05688262e-06 5.59761975e-06 6.97474161e-06 + 4.42979126e-06 4.49527533e-06 6.18249669e-06 5.15055081e-06 + 5.67465167e-06 6.38918709e-06 5.72272575e-06 5.93053392e-06] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..d838a994c5cce88e54b38980f57a67c41642eaf6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..408e5a0eb14a2cb9d04de8d445911f30653be2ec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2c785612256be71ead9d9249fd6f9108df572e00 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +. +---------------------------------------------------------------------- +Ran 1 test in 39.299s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..8224d80eee853a9288415a26675294fb703272d2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/embedding_ops_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a699b7933ddfb12738fdf155e081624de8e3f885 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..7bab076a11f9270716ed56e1925725ff08cb5d67 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... +---------------------------------------------------------------------- +Ran 5 tests in 0.516s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7e9ec9f1f5b2a66db45d2c7b867cfb53c470788b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/extract_image_patches_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ae5a3c2c76d85c8b0e2181dcd3d430bc06582c12 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/fft_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..30f4bd8aa4ebe045b15d18e645a507c5bafd2c3d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............... +---------------------------------------------------------------------- +Ran 15 tests in 0.059s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..8598d5c0f2534e42c0142921715ddb7e76c7b87e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..692dfc653b8d17bbeb06bef6eb4c51663c79c820 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/fifo_queue_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d3497905bd9cdf4968aec43768e39f9e91a4dccf --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log @@ -0,0 +1,73 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/fifo_queue_test.runfiles/tensorflow/python/kernel_tests/fifo_queue_test.py:1358: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(tf.string_ref, q.queue_ref.dtype) +........E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_4_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_5_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_7_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_8_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_9_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_11_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: fifo_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueUpTo/n)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_18_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +..........E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [2,3,3], got [2,3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [2,3,3], got [2,3,4] + [[Node: fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_EnqueueMany/component_0, _recv_Placeholder_0)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_36_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_37_fifo_queue' is closed. + [[Node: fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_EnqueueMany/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_39_fifo_queue' is closed. + [[Node: fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_enqueue/component_0)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [3,3], got [3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [3,3], got [3,4] + [[Node: fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_enqueue/component_0, _recv_Placeholder_0)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: fifo_queue_1 = FIFOQueue[capacity=15, component_types=[DT_FLOAT], container="", shapes=[], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has component types float but requested component types were int32 + [[Node: fifo_queue_3 = FIFOQueue[capacity=10, component_types=[DT_INT32], container="", shapes=[], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component shapes [] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component shapes [] but requested component shapes were [[1,1,2,3]] + [[Node: fifo_queue_5 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,3]], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [] + [[Node: fifo_queue_7 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: fifo_queue_9 = FIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,4]], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component types float but requested component types were float, int32 + [[Node: fifo_queue_11 = FIFOQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +................W tensorflow/core/kernels/queue_base.cc:294] _57_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _57_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue, fifo_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: fifo_queue_Dequeue = QueueDequeue[_class=["loc:@fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: fifo_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue_1, fifo_queue_1_enqueue/component_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: fifo_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](fifo_queue_1, fifo_queue_1_EnqueueMany_1/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@fifo_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, fifo_queue, fifo_queue_1)]] +...W tensorflow/core/kernels/queue_base.cc:302] _71_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Timed out waiting for notification +.... +---------------------------------------------------------------------- +Ran 78 tests in 17.274s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..5acc69a9559b4571d921d560f945b0cb6a98d610 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..96b8e9635ab2f995d29efb9966cfb32353065177 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9d9e9e7f94264222a0ba85f9d1ad608797eec3f7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_6"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite/RefEnter, map/while/Identity, map/while/add, map/while/Identity_1)]] +E....E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is int64 but Op is trying to write dtype int32. + [[Node: map/while/TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@map/TensorArray_3"], _device="/job:localhost/replica:0/task:0/cpu:0"](map/while/TensorArrayWrite_1/RefEnter, map/while/Identity, map/while/mul_1, map/while/Identity_2)]] +E...... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e4179952bb42ca285d4f9beec7ddb0663780687d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/gather_nd_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..41b4427588e8c4bd16ff1947030b99c375bc7506 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] flat indices[1, :] = [7] does not index into param (shape: [3]). + [[Node: GatherNd = GatherNd[Tindices=DT_INT32, Tparams=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](GatherNd/params, GatherNd/indices)]] +......E tensorflow/core/client/tensor_c_api.cc:485] flat indices[1, :] = [7] does not index into param (shape: [3]). + [[Node: GatherNd = GatherNd[Tindices=DT_INT32, Tparams=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](GatherNd/params, GatherNd/indices)]] +...... +---------------------------------------------------------------------- +Ran 12 tests in 0.836s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a15db3f738408638358cd1ba25723e4c435885f8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3822eb621dba11bb11dff687c071a9fbe4c63bda --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/gather_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..489c12480812c6b7973a7686f4e8a70733af5a88 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] indices[0,0] = 7 is not in [0, 3) + [[Node: Gather = Gather[Tindices=DT_INT32, Tparams=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Gather/params, Gather/indices)]] +.......E tensorflow/core/client/tensor_c_api.cc:485] indices[0,0] = 7 is not in [0, 3) + [[Node: Gather = Gather[Tindices=DT_INT32, Tparams=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Gather/params, Gather/indices)]] +....... +---------------------------------------------------------------------- +Ran 14 tests in 0.709s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bbb6f21dc81d124beac00e83d5a4058ba2cb6e4f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..75363a2ff9a8a0efdec4b1375c415df3decb3dce --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.cache_status @@ -0,0 +1 @@ +HĆR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/gradient_correctness_test/test.log`Ć \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a12430eb970b205ff87c4a217172406bd9dac56c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.137s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1436739ae5d58261590ba9119449925c7cdcff84 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3614b3be3647a14009d9ee9b3492826264e225f2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/identity_op_py_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..66fe5c112c7759d7e89fd3973dfd790808ab95c0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/identity_op_py_test.runfiles/tensorflow/python/kernel_tests/identity_op_py_test.py:51: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(shape, tensor.get_shape()) +...... +---------------------------------------------------------------------- +Ran 6 tests in 0.182s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e78e98d58187d823d800e79d08e56fc9567877f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..06d791724671278c5fff83049234679b79e271b5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/in_topk_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..bf20501da98ed2069b67d0d58214b320edbfb2c3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] targets[1] is out of range + [[Node: InTopK = InTopK[T=DT_INT32, k=2, _device="/job:localhost/replica:0/task:0/cpu:0"](InTopK/predictions, InTopK/targets)]] +....... +---------------------------------------------------------------------- +Ran 7 tests in 0.291s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a55995f33635629ec9f1846dcf2b096271574400 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d6947d63725cd577a2282739772b60c7737a2c30 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/init_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4f9b88c6a9473616089b31bdc1f90937b64934a2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....................................... +---------------------------------------------------------------------- +Ran 39 tests in 8.868s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2a6b18f69c65d68d54b78c0dcaf05be41c99b1d1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e83f0f2e391a21ac9d0d2dcae08de6c6c0482173 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status @@ -0,0 +1 @@ +HƇR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/io_ops_test/test.log`Ƈ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f3ab90e8639fff5ab4e50bb4fa9dfdd774d9fef0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/io_ops_test.runfiles/tensorflow/python/kernel_tests/io_ops_test.py:35: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/ReadFileTestc22qetbs'> + open(temp.name, 'wb').write(contents) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/io_ops_test.runfiles/tensorflow/python/kernel_tests/io_ops_test.py:35: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/ReadFileTestwva_umre'> + open(temp.name, 'wb').write(contents) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/io_ops_test.runfiles/tensorflow/python/kernel_tests/io_ops_test.py:35: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/ReadFileTestjnfcg7zx'> + open(temp.name, 'wb').write(contents) +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.937s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6f886e00f7ef4bd43480848036a277d3f196957 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b459fb3099bd5ed8611d13b155a8c13a01266344 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.cache_status @@ -0,0 +1 @@ +HqR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log`q \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7efedc1737d10621313c255f2797453324e56df9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.969s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_10_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..685578605280a852150a0467dd3bfe686f3d6bf2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..9681cd2bc17a3fab6cb145ead91de3926dd5347b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.103s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_11_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5407576cf0955b5a4a0e0aab56d134702c064bb0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.cache_status @@ -0,0 +1 @@ +HîR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log`î \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..65e60a1256d601f3dae673ef7ac518c50fa9cb33 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.776s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_12_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3c309ef9f7e219e4b36c3d3e05e72c354a3f7061 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.cache_status @@ -0,0 +1 @@ +HwR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log`w \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a37e7fd80b0fdf9cc990ba8475891ec9612ea28c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.103s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_13_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..88b8abbc74fe48a3f373b6b8ad6277c87ab2063d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.cache_status @@ -0,0 +1 @@ +HrR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log`r \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d4c2353f1edfc7ca0c0fbf5694c17ad3d6f2d694 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.786s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_14_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d8a6156985ea61c32df62da9b86bc7d2bcb8d4ba --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c2d4f195c84fef0a400c9e22fac04728a610f47a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.955s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_15_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e51afcbdca90a388826cf9d6d8508f8467751eb4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..a175901645a4a2eca9153855c0dc08ffa9e927ab --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.935s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_16_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8c1a8673c80f955ac3d7d966e4c04fc30fad334c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..50a80d8f7060e08bd9d3bdf69ac53478b61e9a9d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 14.266s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_17_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6db98a4fb09c2816beb4145de566621804fdc99c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.cache_status @@ -0,0 +1 @@ +HǼR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log`Ǽ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..179ac42cb946e8bc991e215dbc65400d067eaa73 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 12.606s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_18_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6cc3d7819a172e6efed797f4211aa417f105eecd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.cache_status @@ -0,0 +1 @@ +HyR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log`y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..61f8b915bbff93341126f90e50cd631b73a94410 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.557s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_19_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9df911422318b5c8098df0d3613154c57ef9edee --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b3e58994cb1850c48b548aeae662cb7defc13390 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 8.848s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_1_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9b941669f74caa4198d406d47b048a636828d3d5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.cache_status @@ -0,0 +1 @@ +H{R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log`{ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6c0c0bccc25afdbc342f78bcdc0db20c5e8f036e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.427s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_20_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bc2cf5e303c23b5dd7a0e931a6afbfd87462f473 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.cache_status @@ -0,0 +1 @@ +HkR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log`k \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f76452a1cc5a7931ba437b39eec60c747e85b527 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.556s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_21_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..442772874dd4854a6237f72c27622e3a4c987a43 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.cache_status @@ -0,0 +1 @@ +HjR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log`j \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0ddff1e58b94e633e0fef4161ebdc3b5c512999c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.132s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_22_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..eb770c7393853317509fd786dc1225509f9f70a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.cache_status @@ -0,0 +1 @@ +HyR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log`y \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..6f7399455331ca5b0b61f15e90c92efeea1ff1ad --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.251s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_23_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8ee1ec633883793cda35e98f16d3bd3f60bfbf5d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..835a658032f7c4e3074f42de1acfea46b6e0a58a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.915s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_24_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d1b3f2d5b6b37d2621e936e36dd9dc7f60bd4b8f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.cache_status @@ -0,0 +1 @@ +H׆R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log`׆ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..aea66535de96463118292f4238c788712d181557 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.017s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_25_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9d5feb12cdb876db9c1a081fc7c0197a922dc7a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4742d023d054fc83dd0fe4de70204bf0ad4773b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.401s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_26_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9748a534aed8f099f11958ee03442db69297a636 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5e1569e07a0330709081af4980dc5acd3a76ef2b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.178s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_27_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4a83521b5e54cbe2fe6b15e81a5f4a7715a0e7ef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..319cd7cf349128c5ec01ae89b55f291b00faf1cf --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 7.004s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_28_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0f0a8eaaf869d0eced386fe482e50c1a218f9864 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.cache_status @@ -0,0 +1 @@ +H~R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log`~ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..c7bba150362cd9df5c75145b90c2ef3b5607b7fa --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.879s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_29_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1763c214ac7ffab773d51da650c6f34a87df86b2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.cache_status @@ -0,0 +1 @@ +HƩR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log`Ʃ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b8aef37202a1d139263e456392d7412240670844 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.198s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_2_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b36d74edd3005ca104b00febc76089ac66534bda --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..2f97029dcdf2379dad869836e234fd78af20a567 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 5.196s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_30_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a576ccdeb4aa12da385902d7a586cf7f0fcf09c3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.cache_status @@ -0,0 +1 @@ +H{R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log`{ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..eb196d3668fb98e8de6bc4d88ba60add70c06781 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.895s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_31_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e994fa7d20aee3b7168ded72560b81cca4a5e324 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.cache_status @@ -0,0 +1 @@ +HwR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log`w \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..76c382eda785317846dc4098c69e1fcc0d09cfa9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.259s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_32_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..017af6ee3548f2d61ebecf54aac533fa90f0bfb2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..31fbad7b93270d8bdf4488b3f4e1ef2522e75a3c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.597s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_33_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..442934783dda64cdbba7832d9b7f07cdfa70f263 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..65cbf5a3931b409d842c7a01013b58a460a57a63 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 10.631s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_34_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..43172258f09c5c20d1baa1720dce18528ef8bf58 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.cache_status @@ -0,0 +1 @@ +HnR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log`n \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..437f6d4e6543f6def7a8b51ff6d6bedd136f00df --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.510s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_35_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1b879f62950b2d75e8975aa4cba6f666009e0e5d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.cache_status @@ -0,0 +1 @@ +HlR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log`l \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..370ed37b13f62f2fd328a80913984ee43cecc72c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 2.164s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_36_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9d914f816fa6dc89f731b70964dccde991840f8e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.cache_status @@ -0,0 +1 @@ +HiR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log`i \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f04c109029cae20349814fba06253108cdc3c128 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.494s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_37_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fc1b7147eadf4b2a49b6c6656c6c1f68d6458554 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.cache_status @@ -0,0 +1 @@ +HxR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log`x \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..d7d01d6ddd58ff3337d04e22650097d06f1db32a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.840s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_38_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..34621be2deccd2efb75999bb180af85c54bcbab7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..7ecdb540b7bf00f9f8cf1365600aea9a797ce071 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 5.466s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_39_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..999e99f6c8fa79e73df49d1f606cea185fb231b6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..dd7ade63e5500407443f0189950a3e9737e54925 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.570s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_3_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..57a66bde517352439f48b823b3356cd823d4ca12 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..0fe1302c65fe1077eb9409c12d824cee98c72a3f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 6.520s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_40_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4b4940f7bd5fdc204efa97220ab4a36ab11374a2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..783948aa7fa7dc93d9211dc7ff598b83aaa5a672 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 5.704s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_41_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..af5ea7955a1841ec5abf72726128379cecc8c09f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.cache_status @@ -0,0 +1 @@ +HrR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log`r \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5f533e5425edaa6fe50e8f5476a807989a129277 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 2.481s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_42_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6a9301d6ef37044039e50080bf2b0d85d2ae20ff --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.cache_status @@ -0,0 +1 @@ +HaR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log`a \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..e5437378d096e80567651b920a3e5932ab1f8798 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.111s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_43_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3c364b987e07f5fd235db4350118dfe2dc96f52f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.cache_status @@ -0,0 +1 @@ +HgR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log`g \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..4ec9d5da363d70b5121ce1905a76cd55f317bc0e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 1.668s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_44_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..432df8c5c004ade4f9dcfd666f3f39c450c90302 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..59d8fad1c979c37ec8e3c54c89b81c69eaa1dde4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 7.021s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_45_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..039991b5c993aa002e13d89c0e7fd4ad9182234f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.cache_status @@ -0,0 +1 @@ +HvR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log`v \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..db7c99b89ec58c96e8bf27291d51daafc2ac2d8f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.275s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_46_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..19943b28c30aa3690d2a89811eaef64696213d99 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.cache_status @@ -0,0 +1 @@ +HsR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log`s \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..68f0f35a6615346befb1427e55b644addd3df422 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 3.295s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_47_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7c6955d71b769a87fe8b6e4a85ae57d2da8de274 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.cache_status @@ -0,0 +1 @@ +H˄R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log`˄ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..75a6a64dff12e14c59a355cf8f46cdc0a0010656 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 5.146s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_48_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3eefd10f4c0cd5c8ec8b7aeaac94ce6ad86ad18d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..95890f96ca8eff6c2e7c50086e604447e4c7994b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 6.483s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_49_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a6024fa0d090a8db4a3fe54c148166ba8c99134a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..63ac56a3a48ac39366bba3666d3abe4e82031d1e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 6.306s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_4_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1a00e3b6356400401a4d4c9bc57e07f6bca9d78a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.cache_status @@ -0,0 +1 @@ +H߷R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log`߷ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..b49db305b355a56196f17d2c870aa5c46a8b5d2b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 4.782s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_50_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ac2cdf858f248390fd7a0d6c1448d9eec29391f1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.cache_status @@ -0,0 +1 @@ +HfR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log`f \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..16dbadd4d05b2e33edaface8235f45c43074bade --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.644s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_5_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5b92521b0638e3dc2fe6f58ef3ef4d9ecac49caa --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..74c75fa6acd68f80574b28db49303d3fd42472dc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 4.835s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_6_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..871f2d8288cf7da80136c70989a09ccad8ee798a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.cache_status @@ -0,0 +1 @@ +HdR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log`d \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..f3360e422734086db2eb5f4415069a3d09fc27a7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.068s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_7_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..26927bbf6355ec7b6d311ce99654c834b4787316 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.cache_status @@ -0,0 +1 @@ +H`R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log`` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..5cfa97c42beb8d9482549a32b9db10b77d58f693 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 1.123s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_8_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a49275d960fd4a72f3f541828c7fe486e6a8ab7f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.cache_status @@ -0,0 +1 @@ +HuR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log`u \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log new file mode 100644 index 0000000000000000000000000000000000000000..08723eec22f1cf9be3b53f3ccb9b679e1903fc10 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 3.881s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a6b19694351d7dfcd64d3c511cec55b75f598d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_grad_test/test_shard_9_of_50.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..683012a45c72ce3c141279ac2ac36f68c4cf5efb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/linalg_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..57dcffeb8d2811cb651202fca2b0804d8c211534 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 11.512s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..517a0e524588072388446609fd22d1a92194e6c4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a62e15e4854fbaf43b7190b1f53acea05f5fda75 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/listdiff_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ea0c51bf53b4bc46a55508f33c97dc4d86c74c9e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........... +---------------------------------------------------------------------- +Ran 11 tests in 4.412s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9bea2440354b82de87dffc054a3823adc9f9eafa --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..355ce36370b1859aae60713aaa08d235ec5798b0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/logging_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9765239b64f7c80c4cdb82b6f88472939b887303 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log @@ -0,0 +1,10 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Divide-by-zero] [less than x] + [[Node: Assert_1 = Assert[T=[DT_STRING, DT_STRING], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Less_1, Assert_1/data_0, Assert_1/data_1)]] +..I tensorflow/core/kernels/logging_ops.cc:79] [4 4 4...][4 4 4...][4 4 4...] +... +---------------------------------------------------------------------- +Ran 5 tests in 0.315s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..24c1fa0c27e88cad2a093782371fa3ee7f1b1a22 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..30734d9697b53bb84e0942a3c9fc15d1fe00f021 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/lrn_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b3e08652232c2de908e52f41820c598c13cb0ef5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 9.941s + +OK +LRN error for bias 1.9305756743620415 alpha 0.13875750939795073 beta 0.1871802555824036 is 5.96046e-08 +LRN error for bias 1.3785139276006235 alpha 1.747898397290457 beta 0.6373665098101637 is 5.96046e-08 +LRN error for bias 1.1735911712500888 alpha 1.0040742663250595 beta 1.7365867842757807 is 8.9407e-08 +LRN error for bias 1.068412466004688 alpha 1.4052709906417382 beta 0.9692218498470504 is 0.000436753 +LRN error for bias 1.9053857413309345 alpha 1.4723354556697223 beta 0.07299992478896365 is 5.96046e-08 +LRN error for bias 1.3196937194045342 alpha 0.17630169500526316 beta 1.8394902233142667 is 0.000700891 +LRN Gradient error for bias 1.932985413214637 alpha 0.1976761783580122 beta 0.3663977491920295 is 3.14713e-05 +LRN Gradient error for bias 1.1617226023739058 alpha 0.10317133103019371 beta 0.5081676678001571 is 3.48687e-05 +LRN Gradient error for bias 1.1945974738677603 alpha 0.9850207894395835 beta 0.29456257187734425 is 8.98028e-06 +LRN Gradient error for bias 1.1880282424155455 alpha 0.47147595319971813 beta 0.8538497068891747 is 0.19849 +LRN Gradient error for bias 1.0603165072655927 alpha 0.3422662726523642 beta 0.3569484409574476 is 3.60906e-05 +LRN Gradient error for bias 1.8695385434801783 alpha 0.9565620618368534 beta 0.3458903504095996 is 0.30273 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..27d5bcd40ae284fd7c7a3b0599dc0a6824781a01 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..adb68a9c751adb761f97f5ec778e6d89ce04085e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/matmul_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..3f32407fdf8f5cfba3a21daa45e9e6d27be74b93 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log @@ -0,0 +1,36 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............................ +---------------------------------------------------------------------- +Ran 28 tests in 10.098s + +OK +matmul input0 gradient err = 1.21236354289e-13 +matmul input0 gradient err = 1.65201186064e-13 +matmul input0 gradient err = 1.87183601952e-13 +matmul input0 gradient err = 2.6778579354e-13 +matmul input1 gradient err = 3.37507799486e-13 +matmul input1 gradient err = 3.37507799486e-13 +matmul input1 gradient err = 3.37507799486e-13 +matmul input1 gradient err = 3.37507799486e-13 +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. +Built without fp16 matmul support, skipping GPU test. diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4dcff6ad897d012c9b6b00aa056068919b65ab74 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5698fb1197529afb5d55af7cfdcc4d388674e73f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..29912279a97b47aff92268baf8edcf3a8135ad29 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] Input is not invertible. + [[Node: MatrixInverse = MatrixInverse[T=DT_FLOAT, adjoint=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +.... +---------------------------------------------------------------------- +Ran 7 tests in 1.859s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfb724f94da6dec9a8e37b2891eec9a677301d5e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a81fcbf48eda7485179ac60c91ec958b89f7ba89 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..687ad24d0874921fca28a8319f3c6d295bdd981e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 3.102s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d63e7bce7d3d44cb303abdfd0be19fadf625a1e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..34d55cf46e67c4470a9228f1fc0fcc8c9ca84a9c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..35b64ea6ca7d4a2a989cd585404079e92aeb9155 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: MatrixSolve = MatrixSolve[T=DT_FLOAT, adjoint=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const)]] +..... +---------------------------------------------------------------------- +Ran 7 tests in 1.928s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b70bd566f37187c2558457d6e060933c75224da3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b8cdc1ebcc0b140727d4c1a414564f54fd1adb1a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ef7dc9418dce7c03d966648d219f539f5940ea4c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: BatchMatrixTriangularSolve = BatchMatrixTriangularSolve[T=DT_FLOAT, adjoint=false, lower=true, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixTriangularSolve/matrix, BatchMatrixTriangularSolve/rhs)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input matrix is not invertible. + [[Node: BatchMatrixTriangularSolve_1 = BatchMatrixTriangularSolve[T=DT_FLOAT, adjoint=false, lower=true, _device="/job:localhost/replica:0/task:0/cpu:0"](BatchMatrixTriangularSolve_1/matrix, BatchMatrixTriangularSolve_1/rhs)]] +..... +---------------------------------------------------------------------- +Ran 7 tests in 3.057s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddcec37cfec9479e26d8560638617166d1f07645 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_triangular_solve_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b7a389869f7149b396908706e68092bd82a4e2e8 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..efaa59cb12f73a57a3201c9f78b39cf168ee10c8 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f12d8b5696838f4669ca54a28428bda8aba2f3cd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log @@ -0,0 +1,5 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] num_classes should be positive, got 0 + [[Node: multinomial/Multinomial = Multinomial[T=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](zeros, multinomial/Multinomial/num_samples)]] +... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..80c6e48b962f9b2cfdf10242fc940046d6913da2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status @@ -0,0 +1 @@ +HܔR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/numerics_test/test.log`ܔ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..896f7bdc14e54a0c528b61185468aa8c654f9d87 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log @@ -0,0 +1,27 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf and NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf and NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had Inf values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Div:0 : Tensor had NaN values + [[Node: CheckNumerics_2 = CheckNumerics[T=DT_FLOAT, message="Div:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Div, ^CheckNumerics_1)]] +...E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had NaN values + [[Node: VerifyFinite/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had NaN values + [[Node: VerifyFinite_1/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_1"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had Inf values + [[Node: VerifyFinite_2/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_2"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Input is not a number. : Tensor had Inf values + [[Node: VerifyFinite_3/CheckNumerics = CheckNumerics[T=DT_FLOAT, _class=["loc:@Const_3"], message="Input is not a number.", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_3)]] +... +---------------------------------------------------------------------- +Ran 8 tests in 0.715s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea22d5082e22f603255ee2c0e6cdcc9ec58d7dd3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..120dbb6b85708d4ae08e1b2067c46136cc66b8d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/one_hot_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..18c86ac53b22179b54462baaeee176f5cf441566 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 10.061s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..469535e5866bf9f39bb68faefe3935d8fd52749c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9205ea994d125cbd44dc5be0363de23300f6c197 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/pack_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e7733a202820e3ce59b70f18d2885a2f48ef703c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] Shapes of all inputs must match: values[0].shape = [] != values[1].shape = [1] + [[Node: packed_1/1 = Pack[N=3, T=DT_INT32, axis=0, _device="/job:localhost/replica:0/task:0/cpu:0"](packed_1/1/0, _recv_Placeholder_1_0, packed_1/1/2)]] +............... +---------------------------------------------------------------------- +Ran 17 tests in 10.093s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b1714cbc4382d570e9b8ce250e99a3d7c7b7f5b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..38e6f1171f3ac5f2d466675cf0d2c5ffec4fe0f1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/pad_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..21c7a964d1d668db83e6cfc26291eab1b772acf5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.........E tensorflow/core/client/tensor_c_api.cc:485] paddings must be less thanthan the dimension size: 2, 0 not less than 2 + [[Node: MirrorPad = MirrorPad[T=DT_INT32, mode="REFLECT", _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_1)]] +E tensorflow/core/client/tensor_c_api.cc:485] paddings must be no greater than the dimension size: 0, 3 greater than 2 + [[Node: MirrorPad_1 = MirrorPad[T=DT_INT32, mode="SYMMETRIC", _device="/job:localhost/replica:0/task:0/cpu:0"](Const_2, Const_3)]] +...... +---------------------------------------------------------------------- +Ran 15 tests in 2.968s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f621034aadc571e4011eefb4bc27ef003027e7dd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7982441f5c8cb28ead9a3ba6838a167faf9e32c1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.cache_status @@ -0,0 +1 @@ +HĴR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log`Ĵ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..5fc1263121dcc06f64a9bb4c0b17ca89c601c927 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log @@ -0,0 +1,69 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_2_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_3_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_5_padding_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_6_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_7_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +..E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_9_padding_fifo_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: padding_fifo_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueUpTo/n)]] +.....E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_14_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +../home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/padding_fifo_queue_test.runfiles/tensorflow/python/kernel_tests/padding_fifo_queue_test.py:35: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(tf.string_ref, q.queue_ref.dtype) +...E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +.............W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [2,?,3], got [2,3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [2,?,3], got [2,3,4] + [[Node: padding_fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_EnqueueMany/component_0, _recv_Placeholder_0)]] +...E tensorflow/core/client/tensor_c_api.cc:485] PaddingFIFOQueue '_32_padding_fifo_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_33_padding_fifo_queue' is closed. + [[Node: padding_fifo_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_EnqueueMany/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_35_padding_fifo_queue' is closed. + [[Node: padding_fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_enqueue/component_0)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 1. Expected [?,3], got [3,4] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 1. Expected [?,3], got [3,4] + [[Node: padding_fifo_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT32, DT_INT32], _class=["loc:@padding_fifo_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_enqueue/component_0, _recv_Placeholder_0)]] +....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: padding_fifo_queue_1 = PaddingFIFOQueue[capacity=15, component_types=[DT_FLOAT], container="", shapes=[[]], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has component types float but requested component types were int32 + [[Node: padding_fifo_queue_3 = PaddingFIFOQueue[capacity=10, component_types=[DT_INT32], container="", shapes=[[]], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component shapes [[]] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component shapes [[]] but requested component shapes were [[1,1,2,3]] + [[Node: padding_fifo_queue_5 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,3]], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [[]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [[1,1,2,3]] but requested component shapes were [[]] + [[Node: padding_fifo_queue_7 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[]], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: padding_fifo_queue_9 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT], container="", shapes=[[1,1,2,4]], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component types float but requested component types were float, int32 + [[Node: padding_fifo_queue_11 = PaddingFIFOQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", shapes=[[], []], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +....................W tensorflow/core/kernels/queue_base.cc:294] _57_padding_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _57_padding_fifo_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_padding_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _58_padding_fifo_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: padding_fifo_queue_Dequeue = QueueDequeue[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: padding_fifo_queue_DequeueMany = QueueDequeueMany[_class=["loc:@padding_fifo_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue, padding_fifo_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: padding_fifo_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue_1, padding_fifo_queue_1_enqueue/component_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: padding_fifo_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@padding_fifo_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](padding_fifo_queue_1, padding_fifo_queue_1_EnqueueMany_1/component_0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@padding_fifo_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, padding_fifo_queue, padding_fifo_queue_1)]] +.... +---------------------------------------------------------------------- +Ran 71 tests in 17.749s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f244e4144f13a05cd7dc0904e4db7dadb3975e94 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0a1e5faf3269d13e64d11e4013d28debc7ddd419 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..7db99d610e19e7578cf323da4894099a233cdab5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test.runfiles/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test.py:122: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + tf.logging.warn("Cannot test truncated normal op: %s" % str(e)) +WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test.runfiles/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test.py:149: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + tf.logging.warn("Cannot test truncated normal op: %s" % str(e)) +WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.WARNING:tensorflow:Cannot test truncated normal op: No module named 'scipy' +.. +---------------------------------------------------------------------- +Ran 9 tests in 0.023s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f1149654edbf4072ed81e2db91b962af6a8bb427 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parameterized_truncated_normal_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..cfaeafb4a05a2baab459fe86744195996d536100 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/parsing_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ad495f9ac3ce4e1501e58b6252252bd87dccbd13 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.....E tensorflow/core/client/tensor_c_api.cc:485] Error while parsing JSON: Expected an object key or }. +{] + ^ + [[Node: DecodeJSONExample = DecodeJSONExample[_device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +.....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: failing, Key: a, Index: 1. Number of float values != expected. values size: 2 but output shape: [1,3] +E tensorflow/core/client/tensor_c_api.cc:485] Name: failing, Key: a, Index: 1. Number of float values != expected. values size: 2 but output shape: [1,3] + [[Node: ParseExample/ParseExample = ParseExample[Ndense=1, Nsparse=0, Tdense=[DT_FLOAT], dense_shapes=[[1,3]], sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseExample/ParseExample/names, ParseExample/ParseExample/dense_keys_0, ParseExample/Const)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in1, Feature: c is required but could not be found. +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in2, Feature: c is required but could not be found. +E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature: c is required but could not be found. + [[Node: ParseExample/ParseExample = ParseExample[Ndense=3, Nsparse=1, Tdense=[DT_INT64, DT_STRING, DT_FLOAT], dense_shapes=[[1,3], [3,3], [2]], sparse_types=[DT_INT64], _device="/job:localhost/replica:0/task:0/cpu:0"](ParseExample/ParseExample/serialized, ParseExample/ParseExample/names, ParseExample/ParseExample/sparse_keys_0, ParseExample/ParseExample/dense_keys_0, ParseExample/ParseExample/dense_keys_1, ParseExample/ParseExample/dense_keys_2, ParseExample/Reshape, ParseExample/Reshape_1, ParseExample/Const)]] +........E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 1. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 0. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Name: in1, Key: a, Index: 1. Number of int64 values != expected. values size: 3 but output shape: [2] +E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Key: a, Index: 1. Number of int64 values != expected. values size: 3 but output shape: [2] + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list: a, Index: 2. Data types don't match. Expected type: int64 Feature is: float_list { + value: 2 + value: 3 +} + + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Name: in1, Feature list 'a' is required but could not be found. Did you mean to include it in feature_list_dense_missing_assumed_empty or feature_list_dense_defaults? + [[Node: ParseSingleSequenceExample/ParseSingleSequenceExample = ParseSingleSequenceExample[Ncontext_dense=0, Ncontext_sparse=0, Nfeature_list_dense=1, Nfeature_list_sparse=0, Tcontext_dense=[], context_dense_shapes=[], context_sparse_types=[], feature_list_dense_shapes=[[2]], feature_list_dense_types=[DT_INT64], feature_list_sparse_types=[], _device="/job:localhost/replica:0/task:0/cpu:0"](Const, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_missing_assumed_empty, ParseSingleSequenceExample/ParseSingleSequenceExample/feature_list_dense_keys_0, ParseSingleSequenceExample/ParseSingleSequenceExample/debug_name)]] +........ +---------------------------------------------------------------------- +Ran 32 tests in 2.986s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..39dd9d941cd1527468628d21de7247bd759d4c2e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..46c7ba4754c19f9053f25c6c27c6f0bef682face --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/partitioned_variables_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..fdeb372d321aa055e5556ad70fd69ec71be21775 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log @@ -0,0 +1,41 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/partitioned_variables_test.runfiles/tensorflow/python/ops/partitioned_variables.py:263: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "create_partitioned_variables is deprecated. Use " +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/partitioned_variables_test.runfiles/tensorflow/python/kernel_tests/partitioned_variables_test.py:236: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(expected_specs[i], slices[i]._save_slice_info.spec) +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +.WARNING:tensorflow:create_partitioned_variables is deprecated. Use tf.get_variable with a partitioner set, or tf.get_partitioned_variable_list, instead. +..... +---------------------------------------------------------------------- +Ran 14 tests in 26.080s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..269248a561e8da3b7449ae22a7acbaa47c5e7e29 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..922ff965b8d2d01ed4de9919a6b27af59f2b90b3 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2d1451ca088868167bbafa82532b6a31cc925eb3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e2cb362ae48e3fa5018f044e5feafd7abeb96c95 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/pooling_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..dfed1f3ba04dce3bac69827df749da83a9469c0b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log @@ -0,0 +1,46 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/pooling_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/pooling_ops_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +.......... +---------------------------------------------------------------------- +Ran 22 tests in 30.026s + +OK +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 2.74181e-06 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 2.5034e-06 +avg_pool gradient error = 2.38419e-07 +avg_pool gradient error = 3.86685e-06 +avg_pool gradient error = 9.53674e-07 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 2.38419e-07 +avg_pool gradient error = 2.02656e-06 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 1.2517e-06 +avg_pool gradient error = 3.86685e-06 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000549316 +max_pool gradient error = 0.000976562 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000549316 +max_pool gradient error = 0.000976562 +max_pool gradient error = 2.28882e-05 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +max_pool gradient error = 0.000167847 +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6c798d2dae4e9c8f251681cfad70bcb0e70f97e1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..45f2f773088e373c624560c6d5f13b1a74254650 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/priority_queue_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..16e3319ad64a83a284d7ebf991ad19851248c3c3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 0. Expected [], got [2] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 0. Expected [], got [2] + [[Node: priority_queue_enqueue = QueueEnqueue[Tcomponents=[DT_INT64, DT_STRING], _class=["loc:@priority_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](priority_queue, _recv_Placeholder_0, _recv_Placeholder_1_0)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shape mismatch in tuple component 0. Expected [2], got [2,2] +E tensorflow/core/client/tensor_c_api.cc:485] Shape mismatch in tuple component 0. Expected [2], got [2,2] + [[Node: priority_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_INT64, DT_STRING], _class=["loc:@priority_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](priority_queue, _recv_Placeholder_0, _recv_Placeholder_1_0)]] +.......... +---------------------------------------------------------------------- +Ran 11 tests in 24.479s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9fa9345b3985b59dade1e719af795b4d2321bb8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9a825d895e7a0807eabb2f8d559ac5f1ac9a4ca8 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..19e9e6375b169e6cd2cdcc736aad2217794be13e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log @@ -0,0 +1,242 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +W tensorflow/core/framework/op_kernel.cc:936] Unimplemented: Unsupported numpy type 20 +E tensorflow/core/client/tensor_c_api.cc:485] Unsupported numpy type 20 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_FLOAT], token="pyfunc_0", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +.W tensorflow/core/framework/op_kernel.cc:936] Unimplemented: Unsupported object type DType +E tensorflow/core/client/tensor_c_api.cc:485] Unsupported object type DType + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_DOUBLE], token="pyfunc_1", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +..E tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_9 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_9", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E...E tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_1014 is int32, but expects int64 + [[Node: PyFunc_1 = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1014", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +EE tensorflow/core/client/tensor_c_api.cc:485] 0-th value returned by pyfunc_1015 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1015", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +E... +====================================================================== +ERROR: testCOrder (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 730, in _do_call + return fn(*args) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 712, in _run_fn + status, run_metadata) + File "/usr/lib/python3.4/contextlib.py", line 66, in __exit__ + next(self.gen) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/errors.py", line 450, in raise_exception_on_not_ok_status + pywrap_tensorflow.TF_GetCode(status)) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_9 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_9", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 173, in testCOrder + self.assertAllEqual(val, x.eval()) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 556, in eval + return _eval_using_default_session(self, feed_dict, self.graph, session) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 3637, in _eval_using_default_session + return session.run(tensors, feed_dict) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_9 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_9", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op 'PyFunc', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 172, in testCOrder + x, = tf.py_func(lambda: np.array(val, order="F"), [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +====================================================================== +ERROR: testParallel (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 730, in _do_call + return fn(*args) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 712, in _run_fn + status, run_metadata) + File "/usr/lib/python3.4/contextlib.py", line 66, in __exit__ + next(self.gen) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/errors.py", line 450, in raise_exception_on_not_ok_status + pywrap_tensorflow.TF_GetCode(status)) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_1014 is int32, but expects int64 + [[Node: PyFunc_1 = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1014", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 194, in testParallel + session.run([x, y]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_1014 is int32, but expects int64 + [[Node: PyFunc_1 = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1014", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op 'PyFunc_1', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 191, in testParallel + y, = tf.py_func(blocking_get, [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +====================================================================== +ERROR: testStateful (__main__.PyOpTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 730, in _do_call + return fn(*args) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 712, in _run_fn + status, run_metadata) + File "/usr/lib/python3.4/contextlib.py", line 66, in __exit__ + next(self.gen) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/errors.py", line 450, in raise_exception_on_not_ok_status + pywrap_tensorflow.TF_GetCode(status)) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_1015 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1015", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 165, in testStateful + self.assertEqual(sess.run(x), 0) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 382, in run + run_metadata_ptr) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 655, in _run + feed_dict_string, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 723, in _do_run + target_list, options, run_metadata) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/client/session.py", line 743, in _do_call + raise type(e)(node_def, op, message) +tensorflow.python.framework.errors.InvalidArgumentError: 0-th value returned by pyfunc_1015 is int32, but expects int64 + [[Node: PyFunc = PyFunc[Tin=[], Tout=[DT_INT64], token="pyfunc_1015", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +Caused by op 'PyFunc', defined at: + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 198, in + tf.test.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/test.py", line 87, in main + return googletest.main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 84, in main + benchmark.benchmarks_main(true_main=g_main) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/benchmark.py", line 301, in benchmarks_main + true_main() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/platform/googletest.py", line 58, in g_main + return unittest_main(*args, **kwargs) + File "/usr/lib/python3.4/unittest/main.py", line 93, in __init__ + self.runTests() + File "/usr/lib/python3.4/unittest/main.py", line 244, in runTests + self.result = testRunner.run(self.test) + File "/usr/lib/python3.4/unittest/runner.py", line 168, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/suite.py", line 87, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/suite.py", line 125, in run + test(result) + File "/usr/lib/python3.4/unittest/case.py", line 625, in __call__ + return self.run(*args, **kwds) + File "/usr/lib/python3.4/unittest/case.py", line 577, in run + testMethod() + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/kernel_tests/py_func_test.py", line 164, in testStateful + x, = tf.py_func(lambda: next(producer), [], [tf.int64]) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/script_ops.py", line 160, in py_func + return gen_script_ops._py_func(input=inp, token=token, Tout=Tout, name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/ops/gen_script_ops.py", line 36, in _py_func + name=name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/op_def_library.py", line 703, in apply_op + op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 2298, in create_op + original_op=self._default_original_op, op_def=op_def) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/py_func_test.runfiles/tensorflow/python/framework/ops.py", line 1232, in __init__ + self._traceback = _extract_stack() + + +---------------------------------------------------------------------- +Ran 12 tests in 22.645s + +FAILED (errors=3) diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..795c81437121bd973046aa96df8265ebfe3579b5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..fb345ed07c257aaa1073294f8a60c2151deb1ff3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status @@ -0,0 +1 @@ +HҝR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/random_crop_test/test.log`ҝ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..2d825a95b85e219380bd965ac136ef2a3ccb53c3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 4.016s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..075b4ae4c87797c2d7fc7b9e490c121ce101a1c3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..79f9fd4d4907bcc3f439078ffba26d1ed61a6888 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/random_gamma_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..32a08abfb2428a3837cf471b60f0ff39afdbd70e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 4.635s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed8e670399913151c82151f59ddca797b7fdc104 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bd5e4c5572b537300f32c9d502cfd5e742cac327 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..722693e897a9c549d308907444a7eb798a4a1167 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d45b2f956b40ad57b057b971ddaba05828060b4e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.cache_status @@ -0,0 +1 @@ +HЂR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log`Ђ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e05fca34249e9f6c3fa338ae7621ca5f91938f5e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log @@ -0,0 +1,194 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +ERROR:tensorflow:Starting: testBigDequeueMany +ERROR:tensorflow:Finished: testBigDequeueMany +.ERROR:tensorflow:Starting: testBigEnqueueMany +ERROR:tensorflow:Finished: testBigEnqueueMany +.ERROR:tensorflow:Starting: testBlockingDequeueFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_2_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testBlockingDequeueFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_3_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testBlockingDequeueFromClosedQueue +.ERROR:tensorflow:Starting: testBlockingDequeueMany +ERROR:tensorflow:Finished: testBlockingDequeueMany +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_5_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_6_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedQueue +.ERROR:tensorflow:Starting: testBlockingDequeueManyFromClosedQueueWithElementsRemaining +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_7_random_shuffle_queue' is closed and has insufficient elements (requested 2, current size 0) + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueManyFromClosedQueueWithElementsRemaining +.ERROR:tensorflow:Starting: testBlockingDequeueUpTo +ERROR:tensorflow:Finished: testBlockingDequeueUpTo +.ERROR:tensorflow:Starting: testBlockingDequeueUpToFromClosedEmptyQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_9_random_shuffle_queue' is closed and has insufficient elements (requested 4, current size 0) + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +ERROR:tensorflow:Finished: testBlockingDequeueUpToFromClosedEmptyQueue +.ERROR:tensorflow:Starting: testBlockingDequeueUpToFromClosedQueueReturnsRemainder +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/random_shuffle_queue_test.runfiles/tensorflow/python/kernel_tests/random_shuffle_queue_test.py:739: DeprecationWarning: Please use assertEqual instead. + self.assertEquals(3, len(results)) +ERROR:tensorflow:Finished: testBlockingDequeueUpToFromClosedQueueReturnsRemainder +.ERROR:tensorflow:Starting: testBlockingDequeueUpToSmallerThanMinAfterDequeue +ERROR:tensorflow:Finished: testBlockingDequeueUpToSmallerThanMinAfterDequeue +.ERROR:tensorflow:Starting: testBlockingEnqueueManyToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_12_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_EnqueueMany_1/component_0)]] +ERROR:tensorflow:Finished: testBlockingEnqueueManyToClosedQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueManyToFullQueue +ERROR:tensorflow:Finished: testBlockingEnqueueManyToFullQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_14_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_enqueue/component_0)]] +ERROR:tensorflow:Finished: testBlockingEnqueueToClosedQueue +.ERROR:tensorflow:Starting: testBlockingEnqueueToFullQueue +ERROR:tensorflow:Finished: testBlockingEnqueueToFullQueue +.ERROR:tensorflow:Starting: testDequeue +ERROR:tensorflow:Finished: testDequeue +.ERROR:tensorflow:Starting: testDequeueFromClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_17_random_shuffle_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +ERROR:tensorflow:Finished: testDequeueFromClosedQueue +.ERROR:tensorflow:Starting: testDequeueInDifferentOrders +ERROR:tensorflow:Finished: testDequeueInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueMany +ERROR:tensorflow:Finished: testDequeueMany +.ERROR:tensorflow:Starting: testDequeueManyInDifferentOrders +ERROR:tensorflow:Finished: testDequeueManyInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueManyWithTensorParameter +ERROR:tensorflow:Finished: testDequeueManyWithTensorParameter +.ERROR:tensorflow:Starting: testDequeueUpToInDifferentOrders +ERROR:tensorflow:Finished: testDequeueUpToInDifferentOrders +.ERROR:tensorflow:Starting: testDequeueUpToNoBlocking +ERROR:tensorflow:Finished: testDequeueUpToNoBlocking +.ERROR:tensorflow:Starting: testDequeueUpToWithTensorParameter +ERROR:tensorflow:Finished: testDequeueUpToWithTensorParameter +.ERROR:tensorflow:Starting: testEmptyDequeueMany +ERROR:tensorflow:Finished: testEmptyDequeueMany +.ERROR:tensorflow:Starting: testEmptyDequeueManyWithNoShape +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +ERROR:tensorflow:Finished: testEmptyDequeueManyWithNoShape +.ERROR:tensorflow:Starting: testEmptyDequeueUpTo +ERROR:tensorflow:Finished: testEmptyDequeueUpTo +.ERROR:tensorflow:Starting: testEmptyDequeueUpToWithNoShape +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue's DequeueMany and DequeueUpTo require the components to have specified shapes. + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +ERROR:tensorflow:Finished: testEmptyDequeueUpToWithNoShape +.ERROR:tensorflow:Starting: testEmptyEnqueueMany +ERROR:tensorflow:Finished: testEmptyEnqueueMany +.ERROR:tensorflow:Starting: testEnqueue +ERROR:tensorflow:Finished: testEnqueue +.ERROR:tensorflow:Starting: testEnqueueAndBlockingDequeue +ERROR:tensorflow:Finished: testEnqueueAndBlockingDequeue +.ERROR:tensorflow:Starting: testEnqueueMany +ERROR:tensorflow:Finished: testEnqueueMany +.ERROR:tensorflow:Starting: testEnqueueManyToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_38_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_EnqueueMany/component_0)]] +ERROR:tensorflow:Finished: testEnqueueManyToClosedQueue +.ERROR:tensorflow:Starting: testEnqueueManyWithShape +ERROR:tensorflow:Finished: testEnqueueManyWithShape +.ERROR:tensorflow:Starting: testEnqueueToClosedQueue +E tensorflow/core/client/tensor_c_api.cc:485] RandomShuffleQueue '_40_random_shuffle_queue' is closed. + [[Node: random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_enqueue/component_0)]] +ERROR:tensorflow:Finished: testEnqueueToClosedQueue +.ERROR:tensorflow:Starting: testEnqueueWithShape +ERROR:tensorflow:Finished: testEnqueueWithShape +.ERROR:tensorflow:Starting: testHighDimension +ERROR:tensorflow:Finished: testHighDimension +.ERROR:tensorflow:Starting: testIncompatibleSharedQueueErrors +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_a' has capacity 10 but requested capacity was 15 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_a' has capacity 10 but requested capacity was 15 + [[Node: random_shuffle_queue_1 = RandomShuffleQueue[capacity=15, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_a", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_b' has min_after_dequeue 0 but requested min_after_dequeue was 5. +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_b' has min_after_dequeue 0 but requested min_after_dequeue was 5. + [[Node: random_shuffle_queue_3 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_b", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_c' has component types float but requested component types were int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_c' has component types float but requested component types were int32 + [[Node: random_shuffle_queue_5 = RandomShuffleQueue[capacity=10, component_types=[DT_INT32], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_c", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_d' has component shapes [] but requested component shapes were [[1,1,2,3]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_d' has component shapes [] but requested component shapes were [[1,1,2,3]] + [[Node: random_shuffle_queue_7 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[[1,1,2,3]], shared_name="q_d", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_e' has component shapes [[1,1,2,3]] but requested component shapes were [] + [[Node: random_shuffle_queue_9 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_e", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_f' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_f' has component shapes [[1,1,2,3]] but requested component shapes were [[1,1,2,4]] + [[Node: random_shuffle_queue_11 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[[1,1,2,4]], shared_name="q_f", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_g' has component types float but requested component types were float, int32 +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_g' has component types float but requested component types were float, int32 + [[Node: random_shuffle_queue_13 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT, DT_INT32], container="", min_after_dequeue=5, seed=0, seed2=0, shapes=[], shared_name="q_g", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Shared queue 'q_h' has random seeds (87654321, 12) but requested seeds are (87654321, 21). +E tensorflow/core/client/tensor_c_api.cc:485] Shared queue 'q_h' has random seeds (87654321, 12) but requested seeds are (87654321, 21). + [[Node: random_shuffle_queue_15 = RandomShuffleQueue[capacity=10, component_types=[DT_FLOAT], container="", min_after_dequeue=5, seed=87654321, seed2=21, shapes=[], shared_name="q_h", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +ERROR:tensorflow:Finished: testIncompatibleSharedQueueErrors +.ERROR:tensorflow:Starting: testMultiDequeueMany +ERROR:tensorflow:Finished: testMultiDequeueMany +.ERROR:tensorflow:Starting: testMultiDequeueUpToNoBlocking +ERROR:tensorflow:Finished: testMultiDequeueUpToNoBlocking +.ERROR:tensorflow:Starting: testMultiEnqueueAndDequeue +ERROR:tensorflow:Finished: testMultiEnqueueAndDequeue +.ERROR:tensorflow:Starting: testMultiEnqueueMany +ERROR:tensorflow:Finished: testMultiEnqueueMany +.ERROR:tensorflow:Starting: testParallelDequeue +ERROR:tensorflow:Finished: testParallelDequeue +.ERROR:tensorflow:Starting: testParallelDequeueMany +ERROR:tensorflow:Finished: testParallelDequeueMany +.ERROR:tensorflow:Starting: testParallelDequeueUpTo +ERROR:tensorflow:Finished: testParallelDequeueUpTo +.ERROR:tensorflow:Starting: testParallelDequeueUpToRandomPartition +ERROR:tensorflow:Finished: testParallelDequeueUpToRandomPartition +.ERROR:tensorflow:Starting: testParallelEnqueue +ERROR:tensorflow:Finished: testParallelEnqueue +.ERROR:tensorflow:Starting: testParallelEnqueueMany +ERROR:tensorflow:Finished: testParallelEnqueueMany +.ERROR:tensorflow:Starting: testQueueSizeAfterEnqueueAndDequeue +ERROR:tensorflow:Finished: testQueueSizeAfterEnqueueAndDequeue +.ERROR:tensorflow:Starting: testQueueSizeEmpty +ERROR:tensorflow:Finished: testQueueSizeEmpty +.ERROR:tensorflow:Starting: testResetOfBlockingOperation +W tensorflow/core/kernels/queue_base.cc:294] _55_random_shuffle_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:294] _55_random_shuffle_queue_1: Skipping cancelled enqueue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +W tensorflow/core/kernels/queue_base.cc:302] _56_random_shuffle_queue: Skipping cancelled dequeue attempt with queue not closed +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_DequeueUpTo = QueueDequeueUpTo[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueUpTo/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_DequeueMany = QueueDequeueMany[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue, random_shuffle_queue_DequeueMany/n)]] +E tensorflow/core/client/tensor_c_api.cc:485] Dequeue operation was cancelled + [[Node: random_shuffle_queue_Dequeue = QueueDequeue[_class=["loc:@random_shuffle_queue"], component_types=[DT_FLOAT], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: random_shuffle_queue_1_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue_1, random_shuffle_queue_1_enqueue/component_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Enqueue operation was cancelled + [[Node: random_shuffle_queue_1_EnqueueMany_1 = QueueEnqueueMany[Tcomponents=[DT_FLOAT], _class=["loc:@random_shuffle_queue_1"], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](random_shuffle_queue_1, random_shuffle_queue_1_EnqueueMany_1/component_0)]] +ERROR:tensorflow:Finished: testResetOfBlockingOperation +.ERROR:tensorflow:Starting: testScalarShapes +ERROR:tensorflow:Finished: testScalarShapes +.ERROR:tensorflow:Starting: testSelectQueue +ERROR:tensorflow:Finished: testSelectQueue +.ERROR:tensorflow:Starting: testSelectQueueOutOfRange +E tensorflow/core/client/tensor_c_api.cc:485] Index must be in the range [0, 2) but got 3 + [[Node: RefSelect = RefSelect[N=2, T=DT_STRING, _class=["loc:@random_shuffle_queue"], _device="/job:localhost/replica:0/task:0/cpu:0"](RefSelect/index, random_shuffle_queue, random_shuffle_queue_1)]] +ERROR:tensorflow:Finished: testSelectQueueOutOfRange +.ERROR:tensorflow:Starting: testSharedQueueSameSession +ERROR:tensorflow:Finished: testSharedQueueSameSession +.ERROR:tensorflow:Starting: test_session +ERROR:tensorflow:Finished: test_session +. +---------------------------------------------------------------------- +Ran 57 tests in 13.248s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..d121278d58418f0b772b16f009904a3a19b98b1b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..deb98b77c78e15b3c1255cb4cd0c5a4c7aabb451 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/reader_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d120401ed26c0c82ba57789d22d7ca4e98ac3bee --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log @@ -0,0 +1,62 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_6_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:314: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/fixed_length_record.0.txt'> + f = open(fn, "wb") +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:322: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/fixed_length_record.1.txt'> + files = self._CreateFiles() +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_8_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_11_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_14_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \001\020\001\030\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \001\020\001\030\001\"\001X + [[Node: ReaderRestoreState_3 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_3/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001 +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001 + [[Node: ReaderRestoreState_4 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_4/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001XExtraJunk +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': \010\001\020\001\030\001\"\001XExtraJunk + [[Node: ReaderRestoreState_5 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_5/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': PREFIX\010\001\020\001\030\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': PREFIX\010\001\020\001\030\001\"\001X + [[Node: ReaderRestoreState_6 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_6/state)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Could not parse state for IdentityReader 'test_reader': BOGUS\001\"\001X +E tensorflow/core/client/tensor_c_api.cc:485] Could not parse state for IdentityReader 'test_reader': BOGUS\001\"\001X + [[Node: ReaderRestoreState_7 = ReaderRestoreState[_class=["loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, ReaderRestoreState_7/state)]] +....E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_16_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_18_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderReadUpTo = ReaderReadUpTo[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue, ReaderReadUpTo/num_records)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_20_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +..E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_22_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:243: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/text_line.0.txt'> + f = open(fn, "wb") +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:274: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/text_line.1.txt'> + self._testOneEpoch(self._CreateFiles(crlf=True)) +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_24_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:271: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/text_line.1.txt'> + self._testOneEpoch(self._CreateFiles(crlf=False)) +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_26_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:277: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/text_line.1.txt'> + files = self._CreateFiles() +../home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:181: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/whole_file.0.txt'> + open(fn, "wb").write(c) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:181: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/whole_file.1.txt'> + open(fn, "wb").write(c) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/reader_ops_test.runfiles/tensorflow/python/kernel_tests/reader_ops_test.py:181: ResourceWarning: unclosed file <_io.BufferedWriter name='/tmp/reader_ops_test/whole_file.2.txt'> + open(fn, "wb").write(c) +.E tensorflow/core/client/tensor_c_api.cc:485] FIFOQueue '_30_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) + [[Node: ReaderRead = ReaderRead[_class=["loc:@fifo_queue", "loc:@test_reader"], _device="/job:localhost/replica:0/task:0/cpu:0"](test_reader, fifo_queue)]] +.. +---------------------------------------------------------------------- +Ran 23 tests in 2.835s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..aee56322418ed5c51f93ca843b44d4e4ab5119a1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..29a6e383a52bba40cef835b91834e6f3089e0760 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.cache_status @@ -0,0 +1 @@ +H۫R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/reduce_join_op_test/test.log`۫ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e9b8ba31651bca664c885549c1d94b87ec297608 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension -2 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](ReduceJoin/inputs, _recv_placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 2 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](ReduceJoin/inputs, _recv_placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 1 for input with 1 dimension(s) + [[Node: ReduceJoin = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_placeholder_0, ReduceJoin/reduction_indices)]] +E tensorflow/core/client/tensor_c_api.cc:485] Duplicate reduction dimension 1 + [[Node: ReduceJoin_1 = ReduceJoin[keep_dims=false, separator="", _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_placeholder_0, ReduceJoin_1/reduction_indices)]] +.................. +---------------------------------------------------------------------- +Ran 19 tests in 4.404s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7499c304859cbc53eb182b4e13ba157930b51e5b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e3e39999de90079d3479f5fe815d44c428ea55b0 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..069684a1533d7ae8b30bf4b334bee28e856d4b46 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log @@ -0,0 +1,5 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................F.............E tensorflow/core/client/tensor_c_api.cc:485] _ProdGrad NaN test : Tensor had NaN values + [[Node: CheckNumerics = CheckNumerics[T=DT_FLOAT, message="_ProdGrad NaN test", _device="/job:localhost/replica:0/task:0/cpu:0"](CheckNumerics/tensor)]] +................... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e7d24c255963e70ab6dd8863af202da7c2af688c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/relu_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..43de26fe00cc28911c2c33f0309386ed87e6e587 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.................. +---------------------------------------------------------------------- +Ran 18 tests in 2.171s + +OK +elu (float32) gradient err = 2.19345e-05 +elu (float64) gradient err = 1.50806227728e-07 +relu6 (float32) gradient err = 0 +relu6 (float64) gradient err = 0 +relu (float32) gradient of gradient err = 0 +relu (float64) gradient of gradient err = 0 +relu (float32) gradient err = 1.29342e-05 +relu (float64) gradient err = 8.881784197e-16 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3bbb6bf1acbc1c32e170a5db2f36a74a20384d0e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0460ea9dc30ac42127e5e236425024802ed7c008 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/reshape_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..806838ecbb4204b87270d70bf46ea87fa277a7d8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.............. +---------------------------------------------------------------------- +Ran 14 tests in 1.532s + +OK +Reshape gradient error = diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..631df924da8e6f462b32ff8601e6565ebc7f0cef --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..285ed32e08d946c050fc40c90d6b1175c5d97c31 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..090e7075c4629aae20cdb83b708dc40af91ee1fb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/rnn_cell_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c4b88588240fddb16542b375e0f4a0ea2f885188 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/rnn_cell_test.runfiles/tensorflow/python/ops/rnn_cell.py:273: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "deprecated. Use state_is_tuple=True." % self) +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +......./home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/rnn_cell_test.runfiles/tensorflow/python/ops/rnn_cell.py:408: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "deprecated. Use state_is_tuple=True." % self) +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +......... +---------------------------------------------------------------------- +Ran 18 tests in 11.250s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..09254dd0ed60109adccdd69cf790278f058a0b19 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6d7a2658d4c7ed0f072129beb8599fcaeff4de05 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..50cf99b1e4e8dbd2cda5ad261835943a4169936d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log @@ -0,0 +1,53 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/rnn_test.runfiles/tensorflow/python/ops/rnn_cell.py:408: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "deprecated. Use state_is_tuple=True." % self) +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +EWARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/rnn_test.runfiles/tensorflow/python/ops/rnn_cell.py:410: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + logging.warn("%s: The input_size parameter is deprecated." % self) +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: The input_size parameter is deprecated. +....WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +.WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9680f4103e675333d8f76bfa40ac44398cd3cca6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/save_restore_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..39f0449a7dbc8047eb564ff15ca337171a0d1985 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.101s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f17a861b405afc92607d4a32366c356fe036578 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2c12021391713160e23084241155c22b99f96b3d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/scalar_strict_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c5162375624f0fcd1d511cc948a1f64d19172fa6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log @@ -0,0 +1,117 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] In[0] should be a scalar: [1] + [[Node: Assert = Assert[T=[DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] In[0] should be a scalar: [1] + [[Node: Assert = Assert[T=[DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Concat dim tensor should be a scalar integer, but got shape [1] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Concat dim tensor should be a scalar integer, but got shape [1] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Expected concatenating dimensions in the range [0, 0), but got 0 + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[1] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[1] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[2] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] ConcatOp : Ranks of all input tensors should match: shape[0] = [1] vs. shape[2] = [] + [[Node: concat = Concat[N=3, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, _recv_Placeholder_3_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] dims must be a vector of int32, got shape [] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] dims must be a vector of int32, got shape [] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] value must be a scalar, got shape [1] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] value must be a scalar, got shape [1] + [[Node: Fill = Fill[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] tags must be scalar + [[Node: HistogramSummary = HistogramSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags must be scalar + [[Node: HistogramSummary = HistogramSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Tags must be a scalar + [[Node: ImageSummary = ImageSummary[T=DT_UINT8, bad_color=Tensor, max_images=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Tags must be a scalar + [[Node: ImageSummary = ImageSummary[T=DT_UINT8, bad_color=Tensor, max_images=3, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] The first dimension of paddings must be the rank of inputs[1,2] [] + [[Node: Pad = Pad[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] The first dimension of paddings must be the rank of inputs[1,2] [] + [[Node: Pad = Pad[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: shape must be a vector of {int32,int64}, got shape [] +E tensorflow/core/client/tensor_c_api.cc:485] shape must be a vector of {int32,int64}, got shape [] + [[Node: random_uniform/RandomUniform = RandomUniform[T=DT_INT32, dtype=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: shape must be a vector of {int32,int64}, got shape [] +E tensorflow/core/client/tensor_c_api.cc:485] shape must be a vector of {int32,int64}, got shape [] + [[Node: random_uniform/RandomUniform = RandomUniform[T=DT_INT32, dtype=DT_FLOAT, seed=0, seed2=0, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] start must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] start must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] limit must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] limit must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] delta must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] delta must be a scalar, not shape [1] + [[Node: range = Range[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] sizes input must be 1-D, not shape [] + [[Node: Reshape = Reshape[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] sizes input must be 1-D, not shape [] + [[Node: Reshape = Reshape[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [1] != [] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [1] != [] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [] != [1] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] tags and values not the same shape: [] != [1] (tag 'a') + [[Node: ScalarSummary = ScalarSummary[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilename = ShardedFilename[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilename = ShardedFilename[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilespec = ShardedFilespec[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_shards must be a scalar, got shape [1] + [[Node: ShardedFilespec = ShardedFilespec[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [1] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [1] and [] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [1] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected begin and size arguments to be 1-D tensors of size 1, but got shapes [] and [1] instead. + [[Node: Slice = Slice[Index=DT_INT32, T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] output_shape should be a vector, got shape [] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, SparseToDense/default_value)]] +E tensorflow/core/client/tensor_c_api.cc:485] output_shape should be a vector, got shape [] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0, SparseToDense/default_value)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Expected multiples to be 1-D, but got shape [] + [[Node: Tile = Tile[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected multiples to be 1-D, but got shape [] + [[Node: Tile = Tile[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] num_segments should be a scalar, not shape [1] + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] num_segments should be a scalar, not shape [1] + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_1_0, _recv_Placeholder_2_0)]] +.. +---------------------------------------------------------------------- +Ran 17 tests in 4.874s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..52528c09054cacf1b1854a58a2adb13800a180c8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f204e5a7eb5f7127bd055a2e4ada1c3b906160fb Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..86cb2de0f0387f4a13b29093263cfcd76e20b556 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got -1 + [[Node: Cumprod = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: Expected scan axis in the range [0, 2), but got 2 + [[Node: Cumprod_1 = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod_1/axis)]] +E tensorflow/core/client/tensor_c_api.cc:485] ScanOp: axis must be a scalar, not [1] + [[Node: Cumprod_2 = Cumprod[T=DT_FLOAT, exclusive=false, reverse=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Cumprod_2/axis)]] +.... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..deda6bd9ff3f13ed80bce26836016c8a8b65963d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status @@ -0,0 +1,2 @@ +H +R/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/scatter_ops_test/test.log` diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..43502484b3f3456f61ffdd607ccce4aaf75abd3a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log @@ -0,0 +1,19 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterAdd_1 = ScatterAdd[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, ScatterAdd_1/indices, ScatterAdd_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterAdd_2 = ScatterAdd[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable, ScatterAdd_2/indices, ScatterAdd_2/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterSub_1 = ScatterSub[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_1"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1, ScatterSub_1/indices, ScatterSub_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterSub_2 = ScatterSub[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_1"], use_locking=false, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1, ScatterSub_2/indices, ScatterSub_2/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[0] = -1 is not in [0, 6) + [[Node: ScatterUpdate_1 = ScatterUpdate[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_2"], use_locking=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2, ScatterUpdate_1/indices, ScatterUpdate_1/updates)]] +E tensorflow/core/client/tensor_c_api.cc:485] indices[2] = 6 is not in [0, 6) + [[Node: ScatterUpdate_2 = ScatterUpdate[T=DT_FLOAT, Tindices=DT_INT32, _class=["loc:@Variable_2"], use_locking=true, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_2, ScatterUpdate_2/indices, ScatterUpdate_2/updates)]] +...... +---------------------------------------------------------------------- +Ran 7 tests in 148.956s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f2ebf3098ba3e696f88fa6ca0763dfe2ec3174e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5d729c2d1f0dcfafbdbafe9d14fbb567c977d08f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f43d2f9dc32d4495bc7824fc5c45d0796ea1540a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log @@ -0,0 +1,87 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +..E tensorflow/core/client/tensor_c_api.cc:485] segment_ids should be the same size as dimension 0 of input. + [[Node: SegmentSum = SegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SegmentSum/segment_ids)]] +......E tensorflow/core/client/tensor_c_api.cc:485] Index 10 out of range [0, 10). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Index 10 out of range [0, 10). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Index -1 out of range [0, 10). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Index -1 out of range [0, 10). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Invalid number of segments + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid number of segments + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id -1 out of range [0, 2). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id -1 out of range [0, 2). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 0 out of range [0, 0). + [[Node: SparseSegmentMeanGrad = SparseSegmentMeanGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMeanGrad/indices, SparseSegmentMeanGrad/segment_ids, SparseSegmentMeanGrad/output_dim0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 0 out of range [0, 0). + [[Node: SparseSegmentSqrtNGrad = SparseSegmentSqrtNGrad[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSqrtNGrad/indices, SparseSegmentSqrtNGrad/segment_ids, SparseSegmentSqrtNGrad/output_dim0)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[1] == -1 out of range [0, 10) + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[1] == -1 out of range [0, 10) + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[3] == 10 out of range [0, 10) + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Bad: indices[3] == 10 out of range [0, 10) + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids are not increasing by 1 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] Segment id 1 out of range [0, 1), probably because 'segment_ids' input is not sorted. + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids do not start at 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +.E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentSum = SparseSegmentSum[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentSum/indices, SparseSegmentSum/segment_ids)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment ids must be >= 0 + [[Node: SparseSegmentMean = SparseSegmentMean[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, SparseSegmentMean/indices, SparseSegmentMean/segment_ids)]] +....E tensorflow/core/client/tensor_c_api.cc:485] segment_ids[0,0] = -1 is out of range [0, 2) + [[Node: UnsortedSegmentSum = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](UnsortedSegmentSum/data, UnsortedSegmentSum/segment_ids, UnsortedSegmentSum/num_segments)]] +E tensorflow/core/client/tensor_c_api.cc:485] segment_ids[0,0] = 7 is out of range [0, 2) + [[Node: UnsortedSegmentSum_1 = UnsortedSegmentSum[T=DT_INT32, Tindices=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](UnsortedSegmentSum_1/data, UnsortedSegmentSum_1/segment_ids, UnsortedSegmentSum_1/num_segments)]] +..... +---------------------------------------------------------------------- +Ran 40 tests in 8.241s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a423ccfaca18240b38b16d8b9393b7a9bf5e52cf --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..acb50202408e6e70f722a3ce0d9c8b0b138798f0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..950d2b8923bde4de227af47229d69ab39f73dace --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... +---------------------------------------------------------------------- +Ran 5 tests in 0.302s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..88cb99e7094329e4025af03ac8bd717a9e386578 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..467d0798cb1cad9b331edda5bc4c3a399e71081d Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a79701091d4983e9d14c442c8c096c87b2524b7c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..../home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/seq2seq_test.runfiles/tensorflow/python/ops/rnn_cell.py:273: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead + "deprecated. Use state_is_tuple=True." % self) +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +..WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. +. \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6081950b7e1e7663aea62cf15df632d2c7f1baec --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status @@ -0,0 +1 @@ +HϤR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/session_ops_test/test.log`Ϥ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b3f8b0a6a951d12b731fad350243b052b1906139 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 2.971s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..218d85c87103aa1307fa0b84e0dfe7f8cde535e8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..932ea75a8a3e388e5ffcfa03f6fa13262b721f42 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/shape_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0d37ad8287cc2e7e6c54d585c2c2ab32980e8005 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log @@ -0,0 +1,15 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............................. +---------------------------------------------------------------------- +Ran 29 tests in 23.766s + +OK +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 +tile(float) error = 8.881784197e-16 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..23a4d1abacb52e1d8fc8b5f1b63ed4e61c256a90 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..1e68c9344763923f049f1a4e39661d38e92f1485 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b70d03cf2ed1aa6adf35a01aad02b12e177e4e75 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log @@ -0,0 +1,3 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d28da1c5918c110e80881fa2743535a58f8b7bc4 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status @@ -0,0 +1 @@ +HڟR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/softmax_op_test/test.log`ڟ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f9d2bf1e44a418865e4c0a166b190629edfcd56e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 0.521s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b185ba77f96530f456dc01261e1cd075dd49f1a0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9aa8145d402797c35a0c9c58ed0d7cbb59495104 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/softplus_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..b0736eaa6870af142b142cc0b053b74049fe3efd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.352s + +OK +softplus (float) gradient err = 7.05719e-05 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec1e7d825cabf5d4d7d6f5bb4ea68cf5b2316115 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..59d88e566bb1ce6bbac4d6cbfec0ca3510ab2a18 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..14863579e77d79c6cf5267a64ddd3f2fea04197e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log @@ -0,0 +1,16 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.. +====================================================================== +FAIL: testGradient (__main__.SoftsignTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/softsign_op_test.runfiles/tensorflow/python/kernel_tests/softsign_op_test.py", line 62, in testGradient + self.assertLess(err, 1e-4) +AssertionError: 0.00095403194 not less than 0.0001 + +---------------------------------------------------------------------- +Ran 3 tests in 0.934s + +FAILED (failures=1) +softsign (float) gradient err = 0.000954032 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7637b87ab957642a72699438f2d7486350028111 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..15f3ee9855614fdda9e513e53d3b85612335ef3f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6bdaa3471e926876af6cc0fbea74aaddac29e1f0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...................... +---------------------------------------------------------------------- +Ran 22 tests in 7.200s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1bdc9599e9fa13c5185bef270694585f0a549aaa --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0c4f37fc2b6cdab906886215ef28ee6dadf202ea --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..6c999da7b43a67c0f856b7c7b326a596c98c8a5c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..................... +---------------------------------------------------------------------- +Ran 21 tests in 4.224s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb0c03f48ea9dd8ab0eead9a70208bb9a7fa0903 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..efc14c4595595e03611a1567e91149125e9d33ea --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_add_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..f8f325fbcefe1478fa746bd7284f819ded63141e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 11.295s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9acae7da5639525ed8135655e7c25bc6c3f32153 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..7f6500d9a7204fef1df7790a97763f4ac95ca801 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..029e156dd18500f3cfaefd4bbf49e55bd64be541 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] Input shapes must match: expected 3 for dimension 0 but got 2 at position 3 + [[Node: SparseConcat = SparseConcat[N=4, T=DT_FLOAT, concat_dim=1, _device="/job:localhost/replica:0/task:0/cpu:0"](Const, Const_3, Const_6, Const_9, Const_1, Const_4, Const_7, Const_10, Const_2, Const_5, Const_8, Const_11)]] +.... +---------------------------------------------------------------------- +Ran 11 tests in 1.949s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0f14c366611eda905901422cac64ac22b6364f69 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..3bc3227378a8bf871bad1489b65e375835a3df3f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log @@ -0,0 +1,131 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +F.FFF. +====================================================================== +FAIL: testGradientInput (__main__.MatMulGradientTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 132, in testGradientInput + a_dtype, b_dtype, name) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 121, in _testGradients + self.assertLess(err, 1/128.) +AssertionError: 1.0 not less than 0.0078125 + +====================================================================== +FAIL: testBasic (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 65, in testBasic + self._testCpuMatmul(x, y, x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: [repr failed] + y: array([[ 0., 0.], + [ 0., 0.], + [ 0., 0.], + [ 0., 0.]], dtype=float32) + +====================================================================== +FAIL: testLarge (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 79, in testLarge + self._testCpuMatmul(x, y, x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: [repr failed] + y: array([[ 0.320312, -0.079102, -0.292969, ..., -0.59668 , -0.158447, 0. ], + [-0.776796, 0.018007, -0.033283, ..., -0.280354, -0.050504, 0. ], + [ 0.482271, -0.881124, -0.361536, ..., -0.608088, -0.920013, 0. ],... + +====================================================================== +FAIL: testRandom (__main__.SparseMatMulTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 93, in testRandom + x_dtype=x_dtype, y_dtype=y_dtype) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/kernel_tests/sparse_matmul_op_test.py", line 58, in _testCpuMatmul + self.assertAllClose(np_ans, out, rtol=1e-4, atol=1e-4) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_matmul_op_test.runfiles/tensorflow/python/framework/test_util.py", line 442, in assertAllClose + np.testing.assert_allclose(a, b, rtol=rtol, atol=atol) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 1391, in assert_allclose + verbose=verbose, header=header) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Not equal to tolerance rtol=0.0001, atol=0.0001 + +(mismatch 100.0%) + x: [repr failed] + y: array([[ 5.695145e-01, 1.152898e+00, -3.808216e-01, -9.954863e-01, + -7.144663e-01, 4.951280e-02, -5.999081e-01, 1.498532e+00, + 0.000000e+00],... + +---------------------------------------------------------------------- +Ran 6 tests in 2.554s + +FAILED (failures=4) +not close where = (array([1, 2, 3], dtype=int32), array([0, 0, 0], dtype=int32)) +not close lhs = [[-1. -2. -3.]] +not close rhs = [ 0. 0. 0.] +not close dif = [[ 1. 2. 3.]] +not close tol = [ 9.99999975e-05 9.99999975e-05 9.99999975e-05] +not close where = (array([ 0, 1, 2, ..., 6306, 6307, 6308], dtype=int32), array([8, 8, 8, ..., 8, 8, 8], dtype=int32)) +not close lhs = [[-0.41357422 -0.82674038 0.3849704 ..., 0.55883878 -0.01299578 + -0.41357422]] +not close rhs = [ 0. 0. 0. ..., 0. 0. 0.] +not close dif = [[ 0.41357422 0.82674038 0.3849704 ..., 0.55883878 0.01299578 + 0.41357422]] +not close tol = [ 9.99999975e-05 9.99999975e-05 9.99999975e-05 ..., 9.99999975e-05 + 9.99999975e-05 9.99999975e-05] +not close where = (array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, + 34, 35, 36, 37], dtype=int32), array([8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], dtype=int32)) +not close lhs = [[-0.04473317 0.69989944 1.39558792 2.07388186 -1.36191034 -0.14028814 + -0.25532007 -0.13193226 -2.63911605 -1.37100196 0.7186383 0.5055365 + -1.00455379 -0.76084447 0.31362581 -0.81943047 1.97725105 0.96453285 + 0.9800567 -1.94838428 1.53259051 0.44888055 1.48108709 0.92545241 + 1.0691489 0.05797416 -3.12150836 -1.98492861 2.47905564 -1.11721933 + 1.22638917 0.80107683 1.02782917 0.10921459 1.9182862 1.08346832 + 2.49692488 1.26928258]] +not close rhs = [ 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. + 0. 0.] +not close dif = [[ 0.04473317 0.69989944 1.39558792 2.07388186 1.36191034 0.14028814 + 0.25532007 0.13193226 2.63911605 1.37100196 0.7186383 0.5055365 + 1.00455379 0.76084447 0.31362581 0.81943047 1.97725105 0.96453285 + 0.9800567 1.94838428 1.53259051 0.44888055 1.48108709 0.92545241 + 1.0691489 0.05797416 3.12150836 1.98492861 2.47905564 1.11721933 + 1.22638917 0.80107683 1.02782917 0.10921459 1.9182862 1.08346832 + 2.49692488 1.26928258]] +not close tol = [ 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05 9.99999975e-05 9.99999975e-05 + 9.99999975e-05 9.99999975e-05] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..efbbce1ce04ea6a9255ea739d927411a02904736 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a90aff33d802b73b100c882b231d4f633371a98b Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..695b650e6a6afc6a5ad825ab2b28b5701b2fe3b6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log @@ -0,0 +1,252 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.....not equal where = (array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], dtype=int32), array([0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, + 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9, 9, 0, 0, 0, + 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, + 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 0, 0, 1, 1, 1, 1, 3, 3, + 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 7, + 7, 7, 7, 7, 8, 8, 8, 9, 9, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, + 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, + 8, 8, 8, 8, 8, 8, 8, 8, 9, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, + 3, 3, 3, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 8, 8, 8, 8, 9, 0, 1, 1, 1, + 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, + 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, + 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 0, 0, 0, 0, 0, 0, 1, 1, + 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 6, 6, 6, 6, 7, 7, 7, 7, + 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 0, 0, 0, 2, 2, 2, 2, 2, 2, + 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6, 6, 7, + 8, 8, 8, 8, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, + 3, 3, 3, 3, 5, 5, 5, 5, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 9], dtype=int32), array([0, 3, 7, 9, 1, 6, 8, 1, 3, 4, 6, 1, 3, 6, 7, 8, 9, 2, 4, 7, 8, 3, 4, + 6, 7, 9, 0, 3, 4, 7, 0, 1, 3, 8, 9, 3, 7, 8, 1, 2, 3, 4, 8, 0, 3, 4, + 6, 7, 8, 0, 2, 4, 5, 7, 8, 9, 1, 3, 5, 6, 8, 9, 3, 8, 9, 2, 4, 0, 3, + 4, 6, 8, 9, 0, 3, 5, 7, 9, 5, 6, 9, 1, 4, 5, 6, 7, 1, 3, 4, 6, 0, 1, + 2, 4, 5, 6, 9, 1, 4, 5, 9, 0, 1, 3, 4, 6, 7, 9, 0, 2, 5, 6, 9, 0, 2, + 3, 5, 7, 8, 0, 6, 8, 0, 9, 1, 3, 4, 5, 7, 9, 0, 1, 2, 3, 6, 8, 9, 3, + 4, 7, 8, 9, 4, 6, 7, 8, 9, 0, 2, 6, 7, 4, 5, 7, 0, 2, 3, 5, 6, 8, 9, + 0, 1, 3, 4, 5, 6, 7, 9, 8, 0, 2, 5, 6, 9, 2, 3, 5, 1, 3, 4, 0, 2, 3, + 4, 5, 6, 1, 2, 4, 7, 0, 5, 7, 9, 1, 2, 6, 2, 3, 5, 8, 8, 4, 0, 1, 5, + 6, 7, 9, 3, 4, 6, 0, 6, 8, 9, 1, 3, 4, 6, 9, 0, 1, 3, 9, 2, 4, 6, 7, + 8, 0, 2, 6, 7, 8, 9, 1, 4, 6, 8, 0, 1, 2, 3, 4, 5, 7, 8, 9, 0, 3, 5, + 6, 7, 8, 9, 0, 1, 4, 9, 0, 2, 5, 8, 1, 4, 5, 6, 0, 4, 8, 0, 7, 3, 5, + 6, 8, 0, 1, 3, 4, 6, 7, 0, 1, 3, 4, 7, 8, 8, 0, 1, 3, 6, 7, 8, 2, 4, + 5, 6, 3, 4, 6, 8, 0, 5, 6, 7, 0, 2, 3, 9, 9, 1, 2, 5, 7, 1, 2, 3, 4, + 7, 9, 1, 2, 3, 5, 6, 7, 8, 9, 0, 1, 2, 5, 7, 8, 9, 0, 1, 3, 4, 5, 6, + 8, 9, 5, 6, 8, 9, 0, 1, 2, 3, 6, 7, 9, 2, 3, 5, 6, 7, 3, 5, 6, 7, 3, + 0, 1, 3, 4, 0, 2, 3, 7, 8, 0, 1, 3, 4, 8, 3, 5, 6, 7, 0, 2, 4, 8, 0, + 2, 5, 7, 8, 2, 3, 4, 7, 2, 3, 5, 6, 0, 3, 5, 6, 7, 9, 6], dtype=int32)) +not equal lhs = [ 0.93883246 1.01412082 0.98917174 1.04442954 1.11498821 1.18377244 + 1.41320956 1.72191668 1.42732489 1.52235126 1.63421333 1.32268047 + 1.12496412 1.11795437 1.21126854 1.16689777 1.23630023 0.78649241 + 0.92368329 0.79907608 1.01181257 1.31423771 1.2012645 1.28815663 + 1.31620753 1.09440219 1.35614562 1.14697075 1.11604321 1.1350255 + 1.6346283 1.59353864 1.52454376 1.49814773 1.39079022 1.282372 + 1.2972337 1.13939655 1.30551422 1.34149504 1.08525705 1.05065954 + 1.16195571 1.17801607 1.53945553 1.44759643 1.46756613 1.48310792 + 1.16574812 1.22055638 1.35837507 1.28036213 1.43654466 1.12049365 + 1.32362831 1.12595546 0.86506325 0.94924033 0.96520245 1.03020537 + 1.04717636 0.95454013 0.96508747 0.97169071 1.07450223 1.03588724 + 0.89996493 1.65730059 1.49927676 1.58228612 1.58865321 1.56888747 + 1.35639453 1.02387655 1.12912381 1.02888203 1.14986372 1.09167993 + 0.97614282 1.04295564 0.96051681 1.28649199 1.14548635 1.3167758 + 1.213359 1.16256487 0.90588224 1.08574367 0.90841848 0.91578311 + 1.48579407 1.20673347 1.58917165 1.31684196 1.2462635 1.54609632 + 1.56409431 1.24874079 1.13491189 1.14552546 1.1397649 1.09881341 + 1.10756862 1.04179132 1.03767979 0.93031687 1.06422985 0.86935943 + 1.31033266 1.26018333 1.22580719 1.28241241 1.3904649 1.19793713 + 1.08821189 1.13354897 1.41056168 1.39219546 1.39167416 0.86524206 + 1.07468259 1.02881157 1.07225275 1.00980592 1.1994462 1.17196774 + 1.23576534 1.25726914 1.10694277 1.12282157 1.1419729 1.09428322 + 1.1452626 1.00272644 0.9638353 0.99178475 1.18823588 1.09030175 + 1.24002337 1.23045754 1.09861231 1.40649354 0.98340696 0.85614675 + 1.03654957 1.05377281 0.95178211 1.93230462 1.0736891 0.93313354 + 1.16341269 0.87739974 1.03999639 0.87591141 1.0043416 0.77491444 + 0.78634381 0.82632381 0.79412818 0.92252457 0.98563951 1.0236845 + 0.83707905 0.96254623 1.00506973 1.05782831 0.83483416 0.97586596 + 1.03149772 0.94150227 1.18992078 1.19702494 1.23734558 1.15662861 + 1.21801579 1.00263464 0.9644751 0.98766625 1.15877569 1.04979408 + 1.05608058 1.2758739 1.59814727 1.62206244 1.30457532 1.59922481 + 1.27338827 1.10366547 0.97534913 1.08479655 0.93684256 0.91464365 + 1.11301339 0.92456627 0.97270304 1.84972203 1.58119845 1.40268159 + 1.7336247 1.71979594 1.75598657 1.76363933 1.3446542 1.29728019 + 1.67375672 1.44586372 1.53369665 1.67207813 1.53068101 1.55544662 + 1.50514412 1.50854683 1.35637283 1.4279834 1.40714574 1.56039524 + 1.49232936 1.2645632 1.32482624 1.55801892 1.37182486 1.48415077 + 1.06471443 1.17935014 1.03645039 1.19973803 0.92274117 0.91688842 + 0.98023123 0.96189475 0.92134273 0.99655902 1.01418757 0.87509048 + 0.8761009 1.04100728 0.86904478 1.07015514 0.963283 0.94498336 + 1.24122381 0.93329 0.94567114 0.95357239 0.94490588 1.05836987 + 0.99792701 0.93077719 0.90863311 1.02015924 1.49024427 1.67939699 + 1.46806657 1.65143466 1.43343747 1.55823791 1.29081964 0.98355108 + 0.93391114 0.91423965 0.91499245 1.14499271 1.25250089 1.06988943 + 1.00693142 1.15872467 1.12303507 1.1517626 0.98017865 1.04301512 + 0.80651581 0.91784334 1.33782852 1.35280013 1.7105906 1.35776448 + 1.52493727 1.39858782 0.95595419 0.92611182 0.88103217 1.00308454 + 0.8825987 1.05353808 0.97518027 0.97335732 1.10347879 1.20175874 + 1.22251678 1.05430853 0.9816162 1.4029125 1.22241735 1.26785314 + 1.35851586 1.28730702 1.49132931 1.47668922 1.81627822 1.8282907 + 1.53599763 0.92612237 1.05179524 0.80324739 1.04858291 1.08642101 + 1.22706699 1.24151528 1.17048371 1.00382006 1.00587213 1.01189816 + 0.97098178 1.32104945 0.97928566 1.00006676 1.15341663 1.17365289 + 1.144889 0.96942276 0.9122178 0.97917837 0.87845093 0.96327084 + 0.93321049 1.06022632 1.04467654 0.97008497 1.11130297 1.08575737 + 0.9047932 1.01635325 1.14553821 1.09362257 0.99051166 0.93589759 + 1.49712348 1.53561711 1.17547917 1.55859458 1.61901748 1.27386403 + 1.6191802 1.47757244 1.41475761 1.37239528 1.50032294 1.57396269 + 1.4278667 1.36602139 1.64113379 1.08959889 0.84157526 1.05351937 + 0.87561631 1.09985077 0.98236728 1.09558809 0.81477076 0.95304674 + 0.86286199 0.86340171 0.79288089 1.04264688 0.81647259 1.07429504 + 0.93737626 1.54525375 1.01245928 1.00670481 0.79214931 0.88937306 + 0.85520023 0.91740298 0.80427349 0.97566557 0.9930687 1.54951632 + 1.6008054 1.62522328 1.51110744 1.54766774 1.68847442 1.36400425 + 1.32563519 1.41437995 1.2946012 1.26156092 1.24498987 1.4001478 + 1.70420289 1.63268793 1.37846911 1.68596375 1.37309122 1.3672173 + 1.22063684 1.37420046 1.4589361 1.33770514 1.3502841 1.32706487 + 1.62423027 1.27113318 1.34275687 1.34105778 1.36394382 1.3162694 + 1.18009806 1.0976553 ]FF......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Operands do not have the same ranks; got shapes: 1 1 and 2 + [[Node: SparseSparseMaximum = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseTensor_1/indices, SparseTensor_1/values, SparseTensor_1/shape)]] +E tensorflow/core/client/tensor_c_api.cc:485] Operands do not have the same ranks; got shapes: 1 1 and 2 + [[Node: SparseSparseMaximum = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseTensor_1/indices, SparseTensor_1/values, SparseTensor_1/shape)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Operands' shapes do not match: got 1 and 2 for dimension 0 + [[Node: SparseSparseMaximum_1 = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor_3/indices, SparseTensor_3/values, SparseTensor_3/shape, SparseTensor_4/indices, SparseTensor_4/values, SparseTensor_4/shape)]] +E tensorflow/core/client/tensor_c_api.cc:485] Operands' shapes do not match: got 1 and 2 for dimension 0 + [[Node: SparseSparseMaximum_1 = SparseSparseMaximum[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor_3/indices, SparseTensor_3/values, SparseTensor_3/shape, SparseTensor_4/indices, SparseTensor_4/values, SparseTensor_4/shape)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension -3, for input with 2 dimensions. + [[Node: SparseReduceSum = SparseReduceSum[T=DT_INT32, keep_dims=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseReduceSum/reduction_axes)]] +E tensorflow/core/client/tensor_c_api.cc:485] Invalid reduction dimension 2, for input with 2 dimensions. + [[Node: SparseReduceSum_1 = SparseReduceSum[T=DT_INT32, keep_dims=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseTensor/indices, SparseTensor/values, SparseTensor/shape, SparseReduceSum_1/reduction_axes)]] +.....W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +.E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x <= y did not hold element-wise: x = ] [Identity_2:0] [2 5 6] [y = ] [control_dependency:0] [3 7 5] + [[Node: assert_less_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_less_equal/All, assert_less_equal/Assert/data_0, assert_less_equal/Assert/data_1, Identity_2, assert_less_equal/Assert/data_3, assert_less_equal/Assert/data_4, control_dependency)]] +..E tensorflow/core/client/tensor_c_api.cc:485] assertion failed: [Condition x == y did not hold element-wise: x = ] [Shape:0] [3] [y = ] [Shape_1:0] [2] + [[Node: assert_equal/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT32, DT_STRING, DT_STRING, DT_INT32], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](assert_equal/All, assert_equal/Assert/data_0, assert_equal/Assert/data_1, Shape, assert_equal/Assert/data_3, assert_equal/Assert/data_4, Shape_1)]] +............... +====================================================================== +FAIL: testCwiseDivAndMul (__main__.SparseMathOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 535, in testCwiseDivAndMul + self._check(sp_t / dense_t, sp_t_densified / dense_vals_np, sp_t) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 519, in _check + self.assertAllEqual(result_np, res_densified) + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/framework/test_util.py", line 492, in assertAllEqual + np.testing.assert_array_equal(a, b) + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 807, in assert_array_equal + verbose=verbose, header='Arrays are not equal') + File "/usr/local/lib/python3.4/dist-packages/numpy/testing/utils.py", line 733, in assert_array_compare + raise AssertionError(msg) +AssertionError: +Arrays are not equal + +(mismatch 41.0%) + x: array([[[ 0.938832, 0. , 0. , 1.014121, 0. , 0. , + 0. , 0.989172, 0. , 1.04443 ], + [ 0. , 1.114988, 0. , 0. , 0. , 0. ,... + y: array([[[ 0.938829, 0. , 0. , 1.014118, 0. , 0. , + 0. , 0.989169, 0. , 1.044426], + [ 0. , 1.114988, 0. , 0. , 0. , 0. ,... + +====================================================================== +FAIL: testGradients (__main__.SparseMathOpsTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/sparse_ops_test.runfiles/tensorflow/python/kernel_tests/sparse_ops_test.py", line 587, in testGradients + self.assertLess(err, 2e-4) +AssertionError: 0.0044629574 not less than 0.0002 + +---------------------------------------------------------------------- +Ran 40 tests in 48.262s + +FAILED (failures=2) + +not equal rhs = [ 0.93882942 1.0141176 0.98916852 1.04442608 1.11498797 1.18377221 + 1.41320932 1.72191644 1.42732477 1.52235115 1.63421309 1.32267821 + 1.12496221 1.11795247 1.21126652 1.16689575 1.2362982 0.78649139 + 0.92368215 0.79907507 1.01181126 1.31423759 1.20126438 1.28815651 + 1.31620741 1.09440207 1.35614276 1.14696848 1.11604095 1.13502324 + 1.63462591 1.59353638 1.5245415 1.49814558 1.3907882 1.28237164 + 1.29723334 1.13939619 1.30551112 1.34149194 1.08525455 1.05065703 + 1.16195297 1.17801523 1.53945446 1.44759548 1.46756518 1.48310685 + 1.16574728 1.22055554 1.35837412 1.28036118 1.4365437 1.12049294 + 1.32362747 1.12595463 0.86506283 0.94923985 0.96520197 1.03020489 + 1.04717588 0.95453972 0.96508586 0.97168905 1.07450044 1.03588736 + 0.89996505 1.65729797 1.49927425 1.5822835 1.58865058 1.56888497 + 1.35639226 1.02387631 1.12912345 1.02888179 1.14986348 1.09167969 + 0.97614235 1.04295504 0.96051633 1.28648996 1.14548457 1.31677377 + 1.21335888 1.16256475 0.90588045 1.08574152 0.90841669 0.91578132 + 1.4857862 1.20672715 1.58916318 1.31683493 1.24625695 1.54608822 + 1.56408596 1.24873662 1.1349082 1.14552164 1.13976109 1.09881318 + 1.10756826 1.04179096 1.03767955 0.93031657 1.06422961 0.86935914 + 1.31033206 1.26018262 1.22580647 1.28241169 1.39046419 1.19793236 + 1.0882076 1.13354456 1.41055608 1.39218998 1.39166856 0.86524212 + 1.07468271 1.02881169 1.07225108 1.00980437 1.19944382 1.17196536 + 1.23576295 1.25726664 1.10694051 1.1228193 1.14196682 1.0942775 + 1.14525652 1.00272119 0.96383017 0.99177951 1.18822956 1.09029663 + 1.24001765 1.23045182 1.09860718 1.40648711 0.98340476 0.85614479 + 1.03654718 1.05377042 0.95177996 1.9323045 1.07368863 0.93313313 + 1.16341221 0.8773995 1.03999615 0.87591124 1.00433969 0.77491295 + 0.78634226 0.8263222 0.79412663 0.92252278 0.98563755 1.02368307 + 0.83707786 0.96254492 1.0050683 1.05782688 0.83483303 0.97586459 + 1.03149629 0.94150233 1.18991983 1.19702411 1.23734462 1.15662777 + 1.21801484 1.00263214 0.96447265 0.98766381 1.15877151 1.04979026 + 1.05607688 1.27587378 1.59814703 1.62206233 1.30457509 1.59922457 + 1.27338815 1.10366488 0.97534853 1.08479595 0.93684202 0.91464341 + 1.11301315 0.92456603 0.9727028 1.84971893 1.58119571 1.4026792 + 1.73362112 1.71979237 1.75598288 1.76363575 1.34464931 1.29728007 + 1.67374337 1.44585228 1.53368449 1.67206478 1.53066885 1.55543423 + 1.50514317 1.50854576 1.35637188 1.42798257 1.4071449 1.56039429 + 1.49232852 1.26456296 1.324826 1.55801857 1.37182462 1.48415041 + 1.06471395 1.17934966 1.03644991 1.19973755 0.92273968 0.91688693 + 0.98022962 0.9618932 0.92134124 0.99655503 1.01418352 0.87508696 + 0.87609738 1.04100311 0.86904132 1.07015431 0.96328217 0.94498253 + 1.24122286 0.93328905 0.94567019 0.95357144 0.94490498 1.0583688 + 0.997926 0.9307763 0.90863222 1.02015817 1.49023616 1.67938793 + 1.46805859 1.65142572 1.43342972 1.55822945 1.29081261 0.98355073 + 0.93391079 0.91423929 0.91499215 1.14499235 1.25250041 1.06988907 + 1.00693095 1.15872324 1.12303364 1.15176117 0.9801774 1.0430125 + 0.80651373 0.91784096 1.33782864 1.35280025 1.71058965 1.35776365 + 1.52493632 1.39858699 0.95595372 0.92611134 0.88103169 1.00308406 + 0.88259828 1.05353749 0.97518009 0.97335714 1.10347867 1.2017585 + 1.22251654 1.0543083 0.98161614 1.40291142 1.2224164 1.26785219 + 1.35851479 1.28730607 1.49132812 1.47668886 1.81627786 1.82829046 + 1.53599739 0.92612141 1.05179417 0.80324656 1.04858184 1.08641994 + 1.22706592 1.24151409 1.17048252 1.00381994 1.00587201 1.01189792 + 0.97098154 1.32104933 0.97928256 1.00006354 1.15341294 1.17364919 + 1.1448884 0.96942222 0.91221726 0.97917777 0.87845045 0.96327025 + 0.93321007 1.06022584 1.04467607 0.97008449 1.11130238 1.0857569 + 0.90479273 1.01635277 1.14553726 1.09362173 0.99051088 0.93589687 + 1.49712336 1.53561687 1.17547905 1.55859387 1.61901677 1.27386343 + 1.61917949 1.47757185 1.41475701 1.37239468 1.50032234 1.57395852 + 1.42786288 1.36601782 1.64112949 1.08959842 0.84157497 1.05351889 + 0.87561595 1.09985042 0.98236686 1.09558773 0.81477064 0.95304662 + 0.86286193 0.86340159 0.79288083 1.04264677 0.81647253 1.07429492 + 0.9373762 1.54525363 1.01245809 1.00670362 0.79214841 0.88937205 + 0.85519928 0.91740197 0.80427259 0.9756645 0.99306756 1.5495162 + 1.60080528 1.62522316 1.51110733 1.54766762 1.68847418 1.36400414 + 1.32563508 1.41437972 1.29460073 1.26156044 1.2449894 1.4001472 + 1.70420277 1.63268781 1.37846899 1.68596363 1.3730911 1.36721718 + 1.22063673 1.37420034 1.45893598 1.33770168 1.35028064 1.32706153 + 1.62422609 1.27113307 1.34275675 1.34105754 1.3639437 1.31626928 + 1.18009794 1.09765399] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e0cb75f03d6f29a4fa2939d10c332786da82ed5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ef112a5aa447f4731e2937652140173ab17648b8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..a652c2fdd8f0e75f9730dd88399ddbb4e1ceb0a5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 1.516s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a578318b5e291aece3fd23145f770b6ac2408bd --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4a7a5d59b75421a865734d11a035bb9e71aac1d9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..59b809cd9fcfb30d6cd1df9d171b32a82c9c8f26 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/client/tensor_c_api.cc:485] Input to reshape is a tensor with 30 dense values, but the requested shape has 28 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Input to reshape is a SparseTensor with 30 dense values, but the requested shape requires a multiple of 4 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +.E tensorflow/core/client/tensor_c_api.cc:485] only one output shape size may be -1, not both 1 and 2 + [[Node: SparseReshape = SparseReshape[_device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0, _recv_Placeholder_2_0, SparseReshape/new_shape)]] +......... +---------------------------------------------------------------------- +Ran 14 tests in 2.086s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebd9d9174c9d7c4d380b3edb324592e7bdd36639 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..5eed448b9ce79d8455afb15ec410a50b4ffd3ab3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..0587816fb2bdabe050883001723b151952ef3eb3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Inconsistent rank across SparseTensors: rank prior to SparseTensor[1] was: 3 but rank of SparseTensor[1] is: 4 + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Could not parse serialized_sparse[1, 0] + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Requested SparseTensor of type int64 but SparseTensor[0].values.dtype() == int32 + [[Node: DeserializeManySparse = DeserializeManySparse[dtype=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](pack)]] +.... +---------------------------------------------------------------------- +Ran 6 tests in 0.454s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..9b038c58b044f392b2485ca0ac533f984e69aa0e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_serialization_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..346d7a204e7f5057dd806be25d8ef341e7f5e212 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_split_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..364122aea4f694098abf41f0af86b663f7762416 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +........ +---------------------------------------------------------------------- +Ran 8 tests in 1.131s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f2c8040df74055a159d732be1a1733f1a47d804f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..3b57cea5166e48bd48da19f5315787b7b6284e56 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_grad_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b22953db55842272b796e5a36e362b626a815ed5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..93d4acf340a89f081a6c003271e87f47ce0be18c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.... +---------------------------------------------------------------------- +Ran 4 tests in 84.917s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..70fbc0ebf812300d834567a625a0b1e98ff071f2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d44f555e1b466df76bc50fba861a94a15aed6fa7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d11d0503b4cbf0205956089204c63c8274c19550 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log @@ -0,0 +1,24 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..E tensorflow/core/client/tensor_c_api.cc:485] default_value should be a scalar. + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +.E tensorflow/core/client/tensor_c_api.cc:485] sparse_values has incorrect shape [3], should be [] or [2] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +..E tensorflow/core/client/tensor_c_api.cc:485] sparse_values has incorrect shape [2,1], should be [] or [2] + [[Node: SparseToDense = SparseToDense[T=DT_INT32, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +...W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [10] is out of bounds: need 0 <= index < [5] +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [10] is out of bounds: need 0 <= index < [5] + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +E tensorflow/core/client/tensor_c_api.cc:485] Indices are not valid (out of bounds). Shape: [5] + [[Node: SparseToDense_1 = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=false, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense_1/sparse_indices, SparseToDense_1/output_shape, SparseToDense_1/sparse_values, SparseToDense_1/default_value)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [1] is repeated +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [1] is repeated + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: indices[1] = [1] is out of order +E tensorflow/core/client/tensor_c_api.cc:485] indices[1] = [1] is out of order + [[Node: SparseToDense = SparseToDense[T=DT_FLOAT, Tindices=DT_INT32, validate_indices=true, _device="/job:localhost/replica:0/task:0/cpu:0"](SparseToDense/sparse_indices, SparseToDense/output_shape, SparseToDense/sparse_values, SparseToDense/default_value)]] +... +---------------------------------------------------------------------- +Ran 18 tests in 1.162s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b44896a5b5e78435db8b47473c3100c142089ae5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9aa549eb916ac28fc02d7586b95c0ee9980a9e6c Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..33fb1324709d5fb942b1879f5071c1778adab4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log @@ -0,0 +1,2 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..6962ce1663216c67ff73b0019adc08a37ee692c1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/sparsemask_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e792843d0a6c9b59043585c59fc9d836adddab70 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.076s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..27ca09227193484bc84243b7d7d2c05d72babd11 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..e0f6653c738c3d25b2be1b4b2264cac9bc08180e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status @@ -0,0 +1 @@ +HōR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/split_op_test/test.log`ō \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e4b0ae9f9142c295157446c34ce50c27811dfc09 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +......... +---------------------------------------------------------------------- +Ran 9 tests in 1.965s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1b2cdc08a4d829597daffa0d52013c44ec61006c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..01b1f967e788eb97277105a857aa5b6ea8238ff6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/stack_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..97e585936b78a65a3dac344275ae20eda9a52a92 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log @@ -0,0 +1,13 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.W tensorflow/core/framework/op_kernel.cc:936] Already exists: Resource _stacks/foo/N10tensorflow5StackE +E tensorflow/core/client/tensor_c_api.cc:485] Resource _stacks/foo/N10tensorflow5StackE + [[Node: Stack = Stack[elem_type=DT_FLOAT, stack_name="foo", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +W tensorflow/core/framework/op_kernel.cc:936] Already exists: Resource _stacks/foo/N10tensorflow5StackE +E tensorflow/core/client/tensor_c_api.cc:485] Resource _stacks/foo/N10tensorflow5StackE + [[Node: Stack_2 = Stack[elem_type=DT_FLOAT, stack_name="foo", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +....... +---------------------------------------------------------------------- +Ran 8 tests in 1.106s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..95ac5f7e0c57d4a8cf4fd649703653f9bfb45592 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..b12f3c2cc81370eae0f4d9053bc8a5295a680057 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/string_join_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..3205f081e53bca4bbe014c67ecda7ca7a5025b1a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.270s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..e939efbcd5c775a4a71e3dca435eeab4488b1238 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..9bfb46aa30bf90781c91a7040e7babb152c4ddd6 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..95e577967d5c9e701b40bf2a55e587ddeb3f7d1d --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...E tensorflow/core/common_runtime/executor.cc:334] Executor failed to create kernel. Invalid argument: Key must have 2 elements + [[Node: StringToHashBucketStrong = StringToHashBucketStrong[key=[98765], num_buckets=10, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Key must have 2 elements + [[Node: StringToHashBucketStrong = StringToHashBucketStrong[key=[98765], num_buckets=10, _device="/job:localhost/replica:0/task:0/cpu:0"](Const)]] +..... +---------------------------------------------------------------------- +Ran 8 tests in 0.217s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ddc9553bc95bb43f71d59126b2dfe2837cc4dd9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_hash_bucket_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a959bb1d5e2cc9605902cbf5150fb8fe4d37385e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.cache_status @@ -0,0 +1 @@ +HkR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/string_to_number_op_test/test.log`k \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e63f8f41d99313f1bac552b379eae500c0591f96 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log @@ -0,0 +1,26 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 10foobar + [[Node: StringToNumber = StringToNumber[out_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in subtract + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in absolute + cond = np.abs(a - b) > atol + rtol * np.abs(b) +/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/bin/tensorflow/python/kernel_tests/string_to_number_op_test.runfiles/tensorflow/python/framework/test_util.py:430: RuntimeWarning: invalid value encountered in greater + cond = np.abs(a - b) > atol + rtol * np.abs(b) +.E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 2.9 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: -2147483649 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +E tensorflow/core/client/tensor_c_api.cc:485] StringToNumberOp could not correctly convert string: 2147483648 + [[Node: StringToNumber = StringToNumber[out_type=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_Placeholder_0)]] +.. +---------------------------------------------------------------------- +Ran 3 tests in 0.083s + +OK +not close where = (array([], dtype=int32),) +not close lhs = [] +not close rhs = [] +not close dif = [] +not close tol = [] diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4c1d824dff158f9e66d9b79d0b9e794cc934de2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0641266a8689330e7f756dd8c3cec25fdac035ae --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/summary_audio_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..24afebc41fc87c75363d6f5ef681ff209d55fc6b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.228s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b4d31448ff78751e0e44bb1824badfcacc0cdaf5 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..c358405add5cdc018bb32b44760d44795812f6b2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/summary_image_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..e0cb3c79ea89912c9a8d49b4a77102dd5bb92287 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.760s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..feaa0e6d255ea771656e8a00a29e22ed315e9df0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ef3303610ae4ebf64de886545023fae76d381a36 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/summary_ops_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..41775eeaa947b8fb91a0788ee21dd0c69bb32835 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 0.288s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..fa7689ad15db5832580db530ddcb07f7103d8940 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..ee960ea9efad4c953e79b5e66edc70f2eb17659c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status @@ -0,0 +1 @@ +HĶR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/template_test/test.log`Ķ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..fa95e418949da089fc10acf734071e5af2fd0b34 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +................ +---------------------------------------------------------------------- +Ran 16 tests in 1.771s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..10682083a0a959af81a26386c3511fe268d684be --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4139bcd89c1a6a12267019fb71c4a9b00ccb8498 Binary files /dev/null and b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.cache_status differ diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..d3fe0559e977f78fb8a901fd95c5a9a51a3be56e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log @@ -0,0 +1,89 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...........E tensorflow/core/client/tensor_c_api.cc:485] Concat saw a scalar shape at index 0 but requires at least vectors. Did you mean to call pack? + [[Node: TensorArrayConcat = TensorArrayConcat[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has inconsistent shapes. Index 0 has (excepting dimension 0) shape: [] but index 2 has (excepting dimension 0) shape: [1] + [[Node: TensorArrayConcat_1 = TensorArrayConcat[_class=["loc:@TensorArray_4"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArrayWrite_5)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has size zero, but element shape is not fully defined. Currently only static shapes are supported when packing zero-size TensorArrays. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArray/Const)]] +.......W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_44: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_44: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=[1,2], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_45: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_45: Could not read index 0 twice because it was cleared after a previous read (perhaps try setting clear_after_read = false?). + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayUnpack)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is float but Op requested dtype int64. + [[Node: TensorArrayRead = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_48: Could not read from TensorArray index 1 because it has not yet been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_48: Could not read from TensorArray index 1 because it has not yet been written to. + [[Node: TensorArrayRead_1 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_1/index, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index -1 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index -1 but array size is: 3 + [[Node: TensorArrayRead_2 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_2/index, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: Tried to read from index 3 but array size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] Tried to read from index 3 but array size is: 3 + [[Node: TensorArrayRead_3 = TensorArrayRead[_class=["loc:@TensorArray"], dtype=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayRead_3/index, TensorArray/Const)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Expected lengths to be a vector, received shape: [] + [[Node: TensorArraySplit_1 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_1/value, _recv_Placeholder_0, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected sum of lengths to be equal to values.shape[0], but sum of lengths is 1 and value's shape is: [3] + [[Node: TensorArraySplit_3 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_3/value, TensorArraySplit_2/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Expected value to be at least a vector, but received shape: [] + [[Node: TensorArraySplit_5 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArraySplit_5/value, TensorArraySplit_4/ToInt64, TensorArray/Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray's size is not equal to the size of lengths (2 vs. 1), and the TensorArray is not marked as dynamically resizeable + [[Node: TensorArraySplit_7 = TensorArraySplit[T=DT_FLOAT, _class=["loc:@TensorArray_4"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArraySplit_7/value, TensorArraySplit_6/ToInt64, TensorArray_4/Const)]] +....E tensorflow/core/client/tensor_c_api.cc:485] Input value must have first dimension equal to the array size (2 vs. 3) + [[Node: TensorArrayUnpack = TensorArrayUnpack[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayUnpack/value, TensorArray/Const)]] +..W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_103: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_103: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArrayWrite)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_104@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_104@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_6 = TensorArrayWrite[T=DT_INT32, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad/TensorArrayGrad, TensorArrayWrite_6/index, TensorArrayWrite_6/value, TensorArrayWrite_5)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_106: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_106: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_8 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_8, TensorArrayWrite_8/index, TensorArrayWrite_8/value, TensorArrayWrite_7)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_107@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_107@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_13 = TensorArrayWrite[T=DT_INT64, _class=["loc:@TensorArray_8"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_1/TensorArrayGrad, TensorArrayWrite_13/index, TensorArrayWrite_13/value, TensorArrayWrite_12)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_109: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_109: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_15 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_16, TensorArrayWrite_15/index, TensorArrayWrite_15/value, TensorArrayWrite_14)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_110@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_110@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_20 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray_16"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_2/TensorArrayGrad, TensorArrayWrite_20/index, TensorArrayWrite_20/value, TensorArrayWrite_19)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_112: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_112: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_22 = TensorArrayWrite[T=DT_DOUBLE, _class=["loc:@TensorArray_24"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_24, TensorArrayWrite_22/index, TensorArrayWrite_22/value, TensorArrayWrite_21)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_113@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_113@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_27 = TensorArrayWrite[T=DT_DOUBLE, _class=["loc:@TensorArray_24"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_3/TensorArrayGrad, TensorArrayWrite_27/index, TensorArrayWrite_27/value, TensorArrayWrite_26)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_115: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_115: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_29 = TensorArrayWrite[T=DT_COMPLEX64, _class=["loc:@TensorArray_32"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_32, TensorArrayWrite_29/index, TensorArrayWrite_29/value, TensorArrayWrite_28)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_116@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_116@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_34 = TensorArrayWrite[T=DT_COMPLEX64, _class=["loc:@TensorArray_32"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_4/TensorArrayGrad, TensorArrayWrite_34/index, TensorArrayWrite_34/value, TensorArrayWrite_33)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_118: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_118: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_36 = TensorArrayWrite[T=DT_COMPLEX128, _class=["loc:@TensorArray_40"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_40, TensorArrayWrite_36/index, TensorArrayWrite_36/value, TensorArrayWrite_35)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_119@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_119@grad: Could not aggregate to TensorArray index 1 because the existing shape is [] but the new input shape is [1]. + [[Node: TensorArrayWrite_41 = TensorArrayWrite[T=DT_COMPLEX128, _class=["loc:@TensorArray_40"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArrayGrad_5/TensorArrayGrad, TensorArrayWrite_41/index, TensorArrayWrite_41/value, TensorArrayWrite_40)]] +.W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_120: Could not write to TensorArray index 2 because it has already been written to. +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_120: Could not write to TensorArray index 2 because it has already been written to. + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArrayWrite)]] +...E tensorflow/core/client/tensor_c_api.cc:485] TensorArray dtype is float but Op is trying to write dtype string. + [[Node: TensorArrayWrite = TensorArrayWrite[T=DT_STRING, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite/index, TensorArrayWrite/value, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_130: Tried to write to index -1 but array is not resizeable and size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_130: Tried to write to index -1 but array is not resizeable and size is: 3 + [[Node: TensorArrayWrite_1 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_1/index, TensorArrayWrite_1/value, TensorArray/Const)]] +W tensorflow/core/framework/op_kernel.cc:936] Invalid argument: TensorArray foo_131: Tried to write to index 3 but array is not resizeable and size is: 3 +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray foo_131: Tried to write to index 3 but array is not resizeable and size is: 3 + [[Node: TensorArrayWrite_2 = TensorArrayWrite[T=DT_FLOAT, _class=["loc:@TensorArray"], _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2/index, TensorArrayWrite_2/value, TensorArray/Const)]] +......................E tensorflow/core/client/tensor_c_api.cc:485] Concat saw a scalar shape at index 0 but requires at least vectors. Did you mean to call pack? + [[Node: TensorArrayConcat = TensorArrayConcat[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArrayWrite_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has inconsistent shapes. Index 0 has (excepting dimension 0) shape: [] but index 2 has (excepting dimension 0) shape: [1] + [[Node: TensorArrayConcat_1 = TensorArrayConcat[_class=["loc:@TensorArray_4"], dtype=DT_FLOAT, element_shape_except0=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray_4, TensorArrayWrite_5)]] +.E tensorflow/core/client/tensor_c_api.cc:485] TensorArray has size zero, but element shape is not fully defined. Currently only static shapes are supported when packing zero-size TensorArrays. + [[Node: TensorArrayPack = TensorArrayPack[_class=["loc:@TensorArray"], dtype=DT_FLOAT, element_shape=, _device="/job:localhost/replica:0/task:0/cpu:0"](TensorArray, TensorArray/Const)]] +...... \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..8025728d65434382164f0ca47b29dbbfe55b04bb --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/topk_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1807be9308e9256688dd2a52fa6cc863ede64330 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log @@ -0,0 +1,9 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Need k >= 0, got -7 + [[Node: TopKV2 = TopKV2[T=DT_FLOAT, sorted=true, _device="/job:localhost/replica:0/task:0/cpu:0"](TopKV2/input, _recv_Placeholder_0)]] +.......... +---------------------------------------------------------------------- +Ran 10 tests in 0.755s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..0656d0ffc6249a417d9cd12ef48fc3cbb7f8d23e --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bcb0f1a072390b16eb25b6bae18bd440ab792916 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/trace_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4a10a3d44b6b70b9c9d689a44728164b5716f4fc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....... +---------------------------------------------------------------------- +Ran 7 tests in 0.296s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..c77b61c61e3bf79d46dd0788282ff2c74085316a --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4f0705f2bbd2a8c88fc38c3905a68aafbcf5ebd1 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/transpose_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..9f387606d2291f1f02111f9e84e7aa94040d9fad --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log @@ -0,0 +1,11 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +....E tensorflow/core/client/tensor_c_api.cc:485] Transposing a tensor of rank 11 is not implemented. + [[Node: transpose_1 = Transpose[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](transpose_1/x, transpose_1/perm)]] +E tensorflow/core/client/tensor_c_api.cc:485] 2 is missing from {0,1,1}. + [[Node: transpose_3 = Transpose[T=DT_DOUBLE, _device="/job:localhost/replica:0/task:0/cpu:0"](transpose_3/x, transpose_3/perm)]] +............. +---------------------------------------------------------------------- +Ran 17 tests in 30.348s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..968eb4af0adc151eea6ef5fa15adcba09e717a91 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..0432ef9599e47a9859440cceb1290bb6c05ae4c7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/unique_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..1c88b82f4ba83b66a71580eae3126d47ef834260 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +...... +---------------------------------------------------------------------- +Ran 6 tests in 3.441s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..7cccb0858831f17e8c8c6016b870af95adb646db --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..4a0c94fe727d5786535e4cd2ca32ee96e1fb7e26 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/unpack_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..c64094197f5cb3ad223a103a2ebefc94ba5390c0 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +............. +---------------------------------------------------------------------- +Ran 13 tests in 8.827s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2dad1d190ef5e3bd55b69b4d0517e05dd13bbee2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..bb1ce3b6b639fac81b3531b64cc4645dab6e8ac8 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.cache_status @@ -0,0 +1 @@ +HͬR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/variable_ops_test/test.log`ͬ \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..faeaf523eaf7f3c9961e2bc8a99ea3a77d8ac91f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log @@ -0,0 +1,17 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +..............W tensorflow/core/framework/op_kernel.cc:936] Not found: Resource tmp_var/bad/N10tensorflow19TemporaryVariableOp6TmpVarE does not exist. +E tensorflow/core/client/tensor_c_api.cc:485] Resource tmp_var/bad/N10tensorflow19TemporaryVariableOp6TmpVarE does not exist. + [[Node: DestroyTemporaryVariable = DestroyTemporaryVariable[T=DT_FLOAT, _class=["loc:@TemporaryVariable"], var_name="bad", _device="/job:localhost/replica:0/task:0/cpu:0"](TemporaryVariable)]] +.W tensorflow/core/framework/op_kernel.cc:936] Not found: Resource tmp_var/dup/N10tensorflow19TemporaryVariableOp6TmpVarE does not exist. +W tensorflow/core/framework/op_kernel.cc:936] Not found: Resource tmp_var/dup/N10tensorflow19TemporaryVariableOp6TmpVarE does not exist. +E tensorflow/core/client/tensor_c_api.cc:485] Resource tmp_var/dup/N10tensorflow19TemporaryVariableOp6TmpVarE does not exist. + [[Node: DestroyTemporaryVariable_1 = DestroyTemporaryVariable[T=DT_FLOAT, _class=["loc:@TemporaryVariable"], var_name="dup", _device="/job:localhost/replica:0/task:0/cpu:0"](TemporaryVariable)]] +.W tensorflow/core/framework/op_kernel.cc:936] Already exists: Resource tmp_var/dup/N10tensorflow19TemporaryVariableOp6TmpVarE +E tensorflow/core/client/tensor_c_api.cc:485] Resource tmp_var/dup/N10tensorflow19TemporaryVariableOp6TmpVarE + [[Node: TemporaryVariable_1 = TemporaryVariable[dtype=DT_FLOAT, shape=[1,2], var_name="dup", _device="/job:localhost/replica:0/task:0/cpu:0"]()]] +....... +---------------------------------------------------------------------- +Ran 23 tests in 1.232s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..e5cf68d53eac4fc6584faaa0e3863d523107eb41 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..f6c0d9aca7d6171a6914bb83f4d9c37c43fe140b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/variable_scope_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..17d0b1321142a17785adeace24c29877e4a0d701 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log @@ -0,0 +1,17 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-5552893055865721494, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-5552893055865721494, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_FLOAT, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=2229230496437129501, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_FLOAT, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.............................. +---------------------------------------------------------------------- +Ran 31 tests in 4.188s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbbbe00f0cfa39674087a7ac1a0e7f0f7a0ef9b9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..791f6cb76e9426c157652ec74494b012c26034d9 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/variables_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..ec0621c4be95f8a7dc4e9538fed3b5e3ebf3f4bc --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log @@ -0,0 +1,33 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: Variable/read = Identity[T=DT_INT32, _class=["loc:@Variable"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: Variable/read = Identity[T=DT_INT32, _class=["loc:@Variable"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: Variable_1/read = Identity[T=DT_INT32, _class=["loc:@Variable_1"], _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +.........E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: _send_v0_0 = _Send[T=DT_INT32, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=-8509565634171693803, tensor_name="v0:0", _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value v0 + [[Node: v0/read = Identity[T=DT_INT32, _class=["loc:@v0"], _device="/job:localhost/replica:0/task:0/cpu:0"](v0)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT32, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT32, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +.E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT64, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Reached limit of 3 + [[Node: CountUpTo = CountUpTo[T=DT_INT64, _class=["loc:@Variable"], limit=3, _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=2968049080362916197, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=2968049080362916197, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +..E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable + [[Node: _send_Variable_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1752319863277284562, tensor_name="Variable:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable)]] +E tensorflow/core/client/tensor_c_api.cc:485] Attempting to use uninitialized value Variable_1 + [[Node: _send_Variable_1_0 = _Send[T=DT_FLOAT, client_terminated=true, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1752319863277284562, tensor_name="Variable_1:0", _device="/job:localhost/replica:0/task:0/cpu:0"](Variable_1)]] +........ +---------------------------------------------------------------------- +Ran 31 tests in 4.540s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..bde7f2a76597754893d176a322617f69f1555171 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..a5d2fba53a14b8e9a2fb9bb01d20c374cdfa5376 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status @@ -0,0 +1 @@ +HىR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/where_op_test/test.log`ى \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..fa402327b7caefad1d95c0480b93d07e44f9ccf7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log @@ -0,0 +1,7 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +... +---------------------------------------------------------------------- +Ran 3 tests in 0.071s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..3715d7d3e747bf0a5fc77ab3f8e70050fc2250d7 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..2cca380daa272170c15c6021b4a3d523f49de384 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/xent_op_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..4f45d9e5bd0ef648ed7b8e91b48c27f46da41f3c --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log @@ -0,0 +1,8 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +.......... +---------------------------------------------------------------------- +Ran 10 tests in 0.642s + +OK +cross entropy gradient err = 1.59837451053e-08 diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c99204547af1e8b7d0c16360ef50b9ad61bb97f --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status new file mode 100644 index 0000000000000000000000000000000000000000..d7aa2a764298da85f51d9dda9138ba8a02aeb85b --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.cache_status @@ -0,0 +1 @@ +HR/home/pi/.cache/bazel/_bazel_pi/4770c5ca1786316d370c900c0b614a6d/tensorflow/bazel-out/local_linux-py3-opt/testlogs/tensorflow/python/kernel_tests/zero_division_test/test.log` \ No newline at end of file diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log new file mode 100644 index 0000000000000000000000000000000000000000..8f54fb19ac1edd6823b22b74a8721d5af3653ad3 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log @@ -0,0 +1,31 @@ +exec ${PAGER:-/usr/bin/less} "$0" || exit 1 +----------------------------------------------------------------------------- +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv = Div[T=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_1, Const)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_1 = Div[T=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_3, Const_2)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_2 = Div[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_5, Const_4)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod = Mod[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_5, Const_4)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_3 = Div[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_7, Const_6)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_1 = Mod[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_7, Const_6)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_4 = Div[T=DT_UINT8, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_9, Const_8)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_5 = Div[T=DT_INT16, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_11, Const_10)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_6 = Div[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_13, Const_12)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_2 = Mod[T=DT_INT32, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_13, Const_12)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: floordiv_7 = Div[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_15, Const_14)]] +E tensorflow/core/client/tensor_c_api.cc:485] Integer division by zero + [[Node: mod_3 = Mod[T=DT_INT64, _device="/job:localhost/replica:0/task:0/cpu:0"](Const_15, Const_14)]] +.. +---------------------------------------------------------------------- +Ran 2 tests in 0.246s + +OK diff --git a/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..f3600c43d553ca8f4a9c78cfcb5b78d61a9caba2 --- /dev/null +++ b/data/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml @@ -0,0 +1,6 @@ + + + + + +