Skip to content

Commit

Permalink
[INTEL MKL] Removed the macro TF_CALL_DATASET_TYPES as it is redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixiaom committed Apr 30, 2019
1 parent a068d4a commit 39170eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tensorflow/core/kernels/gather_nd_op_cpu_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ limitations under the License.
#include "tensorflow/core/platform/types.h"
#include "tensorflow/core/util/util.h"

#define TF_CALL_DATASET_TYPES(m) TF_CALL_ALL_TYPES(m) TF_CALL_QUANTIZED_TYPES(m)

namespace tensorflow {

typedef Eigen::ThreadPoolDevice CPUDevice;
Expand Down Expand Up @@ -153,7 +151,8 @@ struct GatherNdSlice<CPUDevice, T, Index, IXDIM> {
REGISTER_GATHER_ND_FULL(type, int32); \
REGISTER_GATHER_ND_FULL(type, int64)

TF_CALL_DATASET_TYPES(REGISTER_GATHER_ND_CPU);
TF_CALL_ALL_TYPES(REGISTER_GATHER_ND_CPU);
TF_CALL_QUANTIZED_TYPES(REGISTER_GATHER_ND_CPU);

} // namespace functor

Expand Down

0 comments on commit 39170eb

Please sign in to comment.