rephrase wording

This commit is contained in:
jgehw 2020-08-31 16:42:37 +02:00
parent 786c85a58b
commit 8cc5a3a9de
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ template <typename T>
struct DepthToSpaceOpFunctor<CPUDevice, T, FORMAT_NCHW> {
void operator()(const CPUDevice& d, typename TTypes<T, 4>::ConstTensor input,
int block_size, typename TTypes<T, 4>::Tensor output) {
LOG(FATAL) << "dummy implementation to make debug build compile";
LOG(FATAL) << "Trivial implementation to make debug build compile.";
}
};
#endif

View File

@ -194,7 +194,7 @@ template <typename T>
struct SpaceToDepthOpFunctor<CPUDevice, T, FORMAT_NCHW> {
void operator()(const CPUDevice& d, typename TTypes<T, 4>::ConstTensor input,
int block_size, typename TTypes<T, 4>::Tensor output) {
LOG(FATAL) << "dummy implementation to make debug build compile";
LOG(FATAL) << "Trivial implementation to make debug build compile.";
}
};
#endif