aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/random
diff options
context:
space:
mode:
authorGravatar Josh Levenberg <josh11b@tensorflow.org>2016-01-19 15:52:47 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2016-01-20 07:49:23 -0800
commitc8eaac926c929e07ac8db69f67803a2223ff2d93 (patch)
treeeef7fef1eaee8fa36db1069c6b3d5c2113dfc66d /tensorflow/core/lib/random
parent7ffa2d77111d75589f37ecf0ec6e8ee1fe53b995 (diff)
Many tensorflow/core build clean ups.
Change: 112523833
Diffstat (limited to 'tensorflow/core/lib/random')
-rw-r--r--tensorflow/core/lib/random/distribution_sampler_test.cc1
-rw-r--r--tensorflow/core/lib/random/philox_random_test.cc2
-rw-r--r--tensorflow/core/lib/random/random_distributions_test.cc2
-rw-r--r--tensorflow/core/lib/random/random_test.cc2
-rw-r--r--tensorflow/core/lib/random/simple_philox_test.cc2
-rw-r--r--tensorflow/core/lib/random/weighted_picker_test.cc1
6 files changed, 4 insertions, 6 deletions
diff --git a/tensorflow/core/lib/random/distribution_sampler_test.cc b/tensorflow/core/lib/random/distribution_sampler_test.cc
index f2af56ce3d..94dccb8daa 100644
--- a/tensorflow/core/lib/random/distribution_sampler_test.cc
+++ b/tensorflow/core/lib/random/distribution_sampler_test.cc
@@ -19,7 +19,6 @@ limitations under the License.
#include <memory>
#include <vector>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/lib/random/simple_philox.h"
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/port.h"
diff --git a/tensorflow/core/lib/random/philox_random_test.cc b/tensorflow/core/lib/random/philox_random_test.cc
index 79a1559628..51b9cdd6bd 100644
--- a/tensorflow/core/lib/random/philox_random_test.cc
+++ b/tensorflow/core/lib/random/philox_random_test.cc
@@ -21,11 +21,11 @@ limitations under the License.
#include <unordered_map>
#include <vector>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/lib/random/philox_random_test_utils.h"
#include "tensorflow/core/lib/random/random.h"
#include "tensorflow/core/lib/random/random_distributions.h"
#include "tensorflow/core/platform/logging.h"
+#include "tensorflow/core/platform/test.h"
namespace tensorflow {
namespace random {
diff --git a/tensorflow/core/lib/random/random_distributions_test.cc b/tensorflow/core/lib/random/random_distributions_test.cc
index 78ddc53630..4d3e4a5cdc 100644
--- a/tensorflow/core/lib/random/random_distributions_test.cc
+++ b/tensorflow/core/lib/random/random_distributions_test.cc
@@ -21,11 +21,11 @@ limitations under the License.
#include <unordered_map>
#include <vector>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/lib/random/philox_random.h"
#include "tensorflow/core/lib/random/philox_random_test_utils.h"
#include "tensorflow/core/lib/random/random.h"
#include "tensorflow/core/platform/logging.h"
+#include "tensorflow/core/platform/test.h"
namespace tensorflow {
namespace random {
diff --git a/tensorflow/core/lib/random/random_test.cc b/tensorflow/core/lib/random/random_test.cc
index a42d9c1238..9da0b1b8be 100644
--- a/tensorflow/core/lib/random/random_test.cc
+++ b/tensorflow/core/lib/random/random_test.cc
@@ -16,8 +16,8 @@ limitations under the License.
#include "tensorflow/core/lib/random/random.h"
#include <set>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/test.h"
namespace tensorflow {
namespace random {
diff --git a/tensorflow/core/lib/random/simple_philox_test.cc b/tensorflow/core/lib/random/simple_philox_test.cc
index 8897408b6f..60f7978aaf 100644
--- a/tensorflow/core/lib/random/simple_philox_test.cc
+++ b/tensorflow/core/lib/random/simple_philox_test.cc
@@ -18,9 +18,9 @@ limitations under the License.
#include <set>
#include <string>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/test.h"
namespace tensorflow {
namespace random {
diff --git a/tensorflow/core/lib/random/weighted_picker_test.cc b/tensorflow/core/lib/random/weighted_picker_test.cc
index a6a7f5b440..dff4836d14 100644
--- a/tensorflow/core/lib/random/weighted_picker_test.cc
+++ b/tensorflow/core/lib/random/weighted_picker_test.cc
@@ -18,7 +18,6 @@ limitations under the License.
#include <string.h>
#include <vector>
-#include "testing/base/public/gunit.h"
#include "tensorflow/core/lib/random/simple_philox.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/macros.h"