blob: 536fe6415f53815a95d93ec154984b130446c1fd [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SINGA_MODEL_LAYER_SLICE_H_
#define SINGA_MODEL_LAYER_SLICE_H_
#include <utility>
#include <string>
#include <vector>
#include "singa/model/layer.h"
namespace singa {
/**
* Slice the tensor from the source layer along the give axis and according to
* the give slicep points.
*/
class Slice : public Layer {
public:
/// \copydoc Layer::layer_type()
// const std::string layer_type() const override { return "Slice"; }
/// \copydoc Layer::Setup(const LayerConf&);
void Setup(const Shape& in_sample, const LayerConf& conf) override;
/// the i-th subshape is the shape of the i-th output tensor
const Shape GetOutputSampleShape(int k) override {
CHECK(out_sample_shapes_.size()) << "You may haven't call Setup()";
return out_sample_shapes_[k];
}
/// \copydoc Layer::Forward(int flag, const Tensor&)
const vector<Tensor> Forward(int flag, const vector<Tensor>& input) override;
/// \copydoc Layer::Backward(int, const Tensor&, const Tensor&);
const std::pair<vector<Tensor>, vector<Tensor>> Backward(int flag,
const vector<Tensor>& grad) override;
protected:
/// >= 0
int axis_ = 0;
/// out_sample_shapes_[i] is the shape of the i-th output tensor
vector<Shape> out_sample_shapes_;
/// slice point, end offset of each output
vector<size_t> slice_point_;
};
} // namespace singa
#endif // SINGA_MODEL_LAYER_CONCAT_H_