mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
Merge pull request #48283 from reedwm/cherrypick-sparse-to-dense
2.5-rc1 cherry-pick request: Disable GPU SparseToDense
This commit is contained in:
commit
fadc35d749
|
|
@ -273,6 +273,9 @@ class SparseToDenseGPU : public AsyncOpKernel {
|
|||
bool validate_indices_;
|
||||
};
|
||||
|
||||
// TODO(b/184077412): SparseToDense causes an illegal access error.
|
||||
|
||||
#if 0
|
||||
#define REGISTER_GPU_KERNELS(type, index_type) \
|
||||
REGISTER_KERNEL_BUILDER(Name("SparseToDense") \
|
||||
.Device(DEVICE_GPU) \
|
||||
|
|
@ -292,6 +295,7 @@ REGISTER_GPU_KERNELS_ALL(bool)
|
|||
|
||||
#undef REGISTER_GPU_KERNELS_ALL
|
||||
#undef REGISTER_GPU_KERNELS
|
||||
#endif
|
||||
|
||||
#endif // GOOGLE_CUDA
|
||||
|
||||
|
|
|
|||
|
|
@ -1121,7 +1121,7 @@ tf_py_test(
|
|||
],
|
||||
)
|
||||
|
||||
cuda_py_test(
|
||||
tf_py_test(
|
||||
name = "sparse_to_dense_op_py_test",
|
||||
size = "small",
|
||||
srcs = ["sparse_to_dense_op_py_test.py"],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user