aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/sparse_matmul_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/sparse_matmul_op.cc')
-rw-r--r--tensorflow/core/kernels/sparse_matmul_op.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/kernels/sparse_matmul_op.cc b/tensorflow/core/kernels/sparse_matmul_op.cc
index 8a94508589..6a3f3dfc77 100644
--- a/tensorflow/core/kernels/sparse_matmul_op.cc
+++ b/tensorflow/core/kernels/sparse_matmul_op.cc
@@ -1412,7 +1412,7 @@ class PinnedToCurrentCPU {
int ret = 0;
ret = sched_getaffinity(0, sizeof(cpu_set_t), &old_cpu_set);
if (ret != 0) {
- PLOG(WARNING) << "sched_getaffinity";
+ VLOG(WARNING) << "sched_getaffinity";
return;
}
valid = true;
@@ -1421,7 +1421,7 @@ class PinnedToCurrentCPU {
CPU_SET(sched_getcpu(), &new_cpu_set);
ret = sched_setaffinity(0, sizeof(cpu_set_t), &new_cpu_set);
if (ret != 0) {
- PLOG(WARNING) << "sched_setaffinity";
+ VLOG(WARNING) << "sched_setaffinity";
}
}
~PinnedToCurrentCPU() {