Rename hlo_algorithm_blacklist to hlo_algorithm_denylist

PiperOrigin-RevId: 322821382
Change-Id: Iea0de84b3c82562b5649fc0a6092cd2fb473c83a
This commit is contained in:
Karmel Allison 2020-07-23 10:59:17 -07:00 committed by TensorFlower Gardener
parent 0f0e85d768
commit e656213aff
5 changed files with 10 additions and 10 deletions

View File

@ -686,7 +686,7 @@ cc_library(
":gpu_autotuning_proto_cc", ":gpu_autotuning_proto_cc",
":gpu_conv_runner", ":gpu_conv_runner",
":gpu_executable", ":gpu_executable",
":hlo_algorithm_blacklist", ":hlo_algorithm_denylist",
":ir_emission_utils", ":ir_emission_utils",
":stream_executor_util", ":stream_executor_util",
"@com_google_absl//absl/algorithm:container", "@com_google_absl//absl/algorithm:container",
@ -1660,9 +1660,9 @@ tf_proto_library_cc(
) )
cc_library( cc_library(
name = "hlo_algorithm_blacklist", name = "hlo_algorithm_denylist",
srcs = ["hlo_algorithm_blacklist.cc"], srcs = ["hlo_algorithm_denylist.cc"],
hdrs = ["hlo_algorithm_blacklist.h"], hdrs = ["hlo_algorithm_denylist.h"],
deps = [ deps = [
":gpu_autotuning_proto_cc", ":gpu_autotuning_proto_cc",
"//tensorflow/compiler/xla:debug_options_flags", "//tensorflow/compiler/xla:debug_options_flags",
@ -1673,12 +1673,12 @@ cc_library(
) )
tf_cc_test( tf_cc_test(
name = "hlo_algorithm_blacklist_test", name = "hlo_algorithm_denylist_test",
srcs = ["hlo_algorithm_blacklist_test.cc"], srcs = ["hlo_algorithm_denylist_test.cc"],
data = ["data/hlo_algorithm_denylist.pbtxt"], data = ["data/hlo_algorithm_denylist.pbtxt"],
tags = ["no_pip"], tags = ["no_pip"],
deps = [ deps = [
":hlo_algorithm_blacklist", ":hlo_algorithm_denylist",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/core:test", "//tensorflow/core:test",
"//tensorflow/core:test_main", "//tensorflow/core:test_main",

View File

@ -24,7 +24,7 @@ limitations under the License.
#include "tensorflow/compiler/xla/service/gpu/backend_configs.pb.h" #include "tensorflow/compiler/xla/service/gpu/backend_configs.pb.h"
#include "tensorflow/compiler/xla/service/gpu/convolution_thunk.h" #include "tensorflow/compiler/xla/service/gpu/convolution_thunk.h"
#include "tensorflow/compiler/xla/service/gpu/gpu_autotuning.pb.h" #include "tensorflow/compiler/xla/service/gpu/gpu_autotuning.pb.h"
#include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_blacklist.h" #include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_denylist.h"
#include "tensorflow/compiler/xla/service/gpu/ir_emission_utils.h" #include "tensorflow/compiler/xla/service/gpu/ir_emission_utils.h"
#include "tensorflow/compiler/xla/service/gpu/stream_executor_util.h" #include "tensorflow/compiler/xla/service/gpu/stream_executor_util.h"
#include "tensorflow/compiler/xla/service/hlo_casting_utils.h" #include "tensorflow/compiler/xla/service/hlo_casting_utils.h"

View File

@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
==============================================================================*/ ==============================================================================*/
#include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_blacklist.h" #include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_denylist.h"
#include <string> #include <string>

View File

@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
==============================================================================*/ ==============================================================================*/
#include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_blacklist.h" #include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_denylist.h"
#include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/lib/io/path.h"
#include "tensorflow/core/platform/env.h" #include "tensorflow/core/platform/env.h"