aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/armnn/layers/Pooling2dLayer.cpp2
-rw-r--r--src/armnnCaffeParser/README.md6
-rw-r--r--src/armnnConverter/README.md2
-rw-r--r--src/armnnTfParser/README.md6
4 files changed, 2 insertions, 14 deletions
diff --git a/src/armnn/layers/Pooling2dLayer.cpp b/src/armnn/layers/Pooling2dLayer.cpp
index dbeee840e8..0deafaacdd 100644
--- a/src/armnn/layers/Pooling2dLayer.cpp
+++ b/src/armnn/layers/Pooling2dLayer.cpp
@@ -78,7 +78,7 @@ std::vector<TensorShape> Pooling2dLayer::InferOutputShapes(const std::vector<Ten
}
// MakeS sure that border operations will start from inside the input and not the padded area.
- // This is what both Caffe and CL do...
+ // This is what CL does...
if ((size - 1)*stride >= inSize + lowPad)
{
--size;
diff --git a/src/armnnCaffeParser/README.md b/src/armnnCaffeParser/README.md
deleted file mode 100644
index 194254ce05..0000000000
--- a/src/armnnCaffeParser/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Arm NN Caffe parser
-
-`armnnCaffeParser` is a library for loading neural networks defined in Caffe protobuf files into the Arm NN runtime.
-
-For more information, a list of supported Caffe layers, and the networks that have been tested,
-please visit our [doxygen documentation](https://arm-software.github.io/armnn/latest/parsers.xhtml#S4_caffe_parser).
diff --git a/src/armnnConverter/README.md b/src/armnnConverter/README.md
index 81322bc016..6c8ab27458 100644
--- a/src/armnnConverter/README.md
+++ b/src/armnnConverter/README.md
@@ -1,5 +1,5 @@
# The ArmnnConverter
The `ArmnnConverter` is a program for converting neural networks from other formats to Arm NN format.
-Currently the program supports models in Caffe, Onnx, Tensorflow Protocol Buffers and Tensorflow Lite FlatBuffers formats.
+Currently the program supports models in Onnx and Tensorflow Lite FlatBuffers formats.
Run the program with no arguments to see command-line help.
diff --git a/src/armnnTfParser/README.md b/src/armnnTfParser/README.md
deleted file mode 100644
index 9894fa9ce7..0000000000
--- a/src/armnnTfParser/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# The Arm NN TensorFlow parser
-
-`armnnTfParser` is a library for loading neural networks defined by TensorFlow protobuf files into the Arm NN runtime.
-
-For more information, a list of supported TensorFlow layers, and the networks that have been tested,
-please visit our [doxygen documentation](https://arm-software.github.io/armnn/latest/parsers.xhtml#S7_tf_parser). \ No newline at end of file