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_conv_runner",
":gpu_executable",
":hlo_algorithm_blacklist",
":hlo_algorithm_denylist",
":ir_emission_utils",
":stream_executor_util",
"@com_google_absl//absl/algorithm:container",
@ -1660,9 +1660,9 @@ tf_proto_library_cc(
)
cc_library(
name = "hlo_algorithm_blacklist",
srcs = ["hlo_algorithm_blacklist.cc"],
hdrs = ["hlo_algorithm_blacklist.h"],
name = "hlo_algorithm_denylist",
srcs = ["hlo_algorithm_denylist.cc"],
hdrs = ["hlo_algorithm_denylist.h"],
deps = [
":gpu_autotuning_proto_cc",
"//tensorflow/compiler/xla:debug_options_flags",
@ -1673,12 +1673,12 @@ cc_library(
)
tf_cc_test(
name = "hlo_algorithm_blacklist_test",
srcs = ["hlo_algorithm_blacklist_test.cc"],
name = "hlo_algorithm_denylist_test",
srcs = ["hlo_algorithm_denylist_test.cc"],
data = ["data/hlo_algorithm_denylist.pbtxt"],
tags = ["no_pip"],
deps = [
":hlo_algorithm_blacklist",
":hlo_algorithm_denylist",
"//tensorflow/core:lib",
"//tensorflow/core:test",
"//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/convolution_thunk.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/stream_executor_util.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.
==============================================================================*/
#include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_blacklist.h"
#include "tensorflow/compiler/xla/service/gpu/hlo_algorithm_denylist.h"
#include <string>

View File

@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
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/platform/env.h"