Skip to content

Commit

Permalink
Merge pull request BVLC#23 from BVLC/master
Browse files Browse the repository at this point in the history
merge with latest caffe [TravisCI] - build protobuf3 GA
  • Loading branch information
bittnt authored and Andrei Polzounov committed Sep 8, 2016
1 parent c3f763c commit 9cd3d8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/caffe/layer_factory.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @brief A layer factory that allows one to register layers.
* During runtime, registered layers could be called by passing a LayerParameter
* During runtime, registered layers can be called by passing a LayerParameter
* protobuffer to the CreateLayer function:
*
* LayerRegistry<Dtype>::CreateLayer(param);
Expand Down
2 changes: 1 addition & 1 deletion include/caffe/solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace caffe {
/**
* @brief Enumeration of actions that a client of the Solver may request by
* implementing the Solver's action request function, which a
* a client may optionally provide in order to request early termination
* client may optionally provide in order to request early termination
* or saving a snapshot without exiting. In the executable caffe, this
* mechanism is used to allow the snapshot to be saved when stopping
* execution with a SIGINT (Ctrl-C).
Expand Down
2 changes: 1 addition & 1 deletion include/caffe/solver_factory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* and its type is its C++ class name, but without the "Solver" at the end
* ("MyAwesomeSolver" -> "MyAwesome").
*
* If the solver is going to be created simply by its constructor, in your c++
* If the solver is going to be created simply by its constructor, in your C++
* file, add the following line:
*
* REGISTER_SOLVER_CLASS(MyAwesome);
Expand Down
2 changes: 1 addition & 1 deletion scripts/travis/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ else
dh-autoreconf \
unzip

wget https://github.com/google/protobuf/archive/v3.0.0-beta-3.tar.gz -O protobuf3.tar.gz
wget https://github.com/google/protobuf/archive/3.0.0-GA.tar.gz -O protobuf3.tar.gz
tar -xzf protobuf3.tar.gz -C $PROTOBUF3_DIR --strip 1
rm protobuf3.tar.gz
cd $PROTOBUF3_DIR
Expand Down

0 comments on commit 9cd3d8e

Please sign in to comment.