Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Blob directly instead of shared_ptr for internal layer buffers #742

Merged
merged 7 commits into from
Jul 20, 2014

Commits on Jul 20, 2014

  1. use Blob directly instead of shared_ptr for ConvolutionLayer::bias_mu…

    …ltiplier_
    
    This will make layer reshaping easier and more uniform, and is
    consistent with col_buffer_.
    longjon committed Jul 20, 2014
    Configuration menu
    Copy the full SHA
    00ecb24 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40054a7 View commit details
    Browse the repository at this point in the history
  3. use Blob directly instead of shared_ptr for PoolingLayer::max_idx_

    Again, this is more uniform, and will simplify the implementation of
    Reshape.
    longjon committed Jul 20, 2014
    Configuration menu
    Copy the full SHA
    0354406 View commit details
    Browse the repository at this point in the history
  4. use Blob directly instead of shared_ptr for DropoutLayer::rand_vec_

    This will simplify the implementation of Reshape by making allocation
    automatic. There is no need for shared_ptr here, and this is more
    uniform with buffers used by other layers.
    longjon committed Jul 20, 2014
    Configuration menu
    Copy the full SHA
    f6696d8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b8159f7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6761735 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    21b0190 View commit details
    Browse the repository at this point in the history