Name unnamed namespace as convolution_details.

This commit is contained in:
jdanieck 2021-01-28 15:10:11 +01:00
parent b25ab40bd0
commit cea526ec49

View File

@ -38,7 +38,7 @@ namespace ngraph
{ {
namespace reference namespace reference
{ {
namespace namespace convolution_details
{ {
constexpr size_t in_batch_axis = 0; constexpr size_t in_batch_axis = 0;
constexpr size_t in_channel_axis = 1; constexpr size_t in_channel_axis = 1;
@ -191,6 +191,8 @@ namespace ngraph
const Strides&) const Strides&)
{ {
using namespace convolution_details;
// this implementation supports 1D, 2D and 3D convolutions // this implementation supports 1D, 2D and 3D convolutions
NGRAPH_CHECK(in_shape.size() >= 3 && in_shape.size() <= 5, NGRAPH_CHECK(in_shape.size() >= 3 && in_shape.size() <= 5,
"Unsupported input rank: ", "Unsupported input rank: ",