Commit bc2c1a9e authored by Scott Cyphers's avatar Scott Cyphers

Compiler errors

parent 9ecc157d
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
#include <type_traits> #include <type_traits>
#include <vector> #include <vector>
#include "ngraph/shape.hpp"
namespace ngraph namespace ngraph
{ {
namespace runtime namespace runtime
......
...@@ -37,21 +37,21 @@ namespace ngraph ...@@ -37,21 +37,21 @@ namespace ngraph
typename ET::type rtol, typename ET::type rtol,
typename ET::type atol); typename ET::type atol);
extern template bool ngraph::test::all_close<ngraph::element::Float32>( extern template bool all_close<element::Float32>(
const std::vector<std::shared_ptr< const std::vector<std::shared_ptr<
ngraph::runtime::ParameterizedTensorView<ngraph::element::Float32>>>& as, runtime::ParameterizedTensorView<element::Float32>>>& as,
const std::vector<std::shared_ptr< const std::vector<std::shared_ptr<
ngraph::runtime::ParameterizedTensorView<ngraph::element::Float32>>>& bs, runtime::ParameterizedTensorView<element::Float32>>>& bs,
ngraph::element::Float32::type rtol, element::Float32::type rtol,
ngraph::element::Float32::type atol); element::Float32::type atol);
extern template bool ngraph::test::all_close<ngraph::element::Float64>( extern template bool all_close<element::Float64>(
const std::vector<std::shared_ptr< const std::vector<std::shared_ptr<
ngraph::runtime::ParameterizedTensorView<ngraph::element::Float64>>>& as, runtime::ParameterizedTensorView<element::Float64>>>& as,
const std::vector<std::shared_ptr< const std::vector<std::shared_ptr<
ngraph::runtime::ParameterizedTensorView<ngraph::element::Float64>>>& bs, runtime::ParameterizedTensorView<element::Float64>>>& bs,
ngraph::element::Float64::type rtol, element::Float64::type rtol,
ngraph::element::Float64::type atol); element::Float64::type atol);
/// @brief Same as numpy.allclose /// @brief Same as numpy.allclose
/// @param a First tensor to compare /// @param a First tensor to compare
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment