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

Promote caffe-0.14 branch to master #114

Merged
merged 515 commits into from
Feb 13, 2016
Merged

Promote caffe-0.14 branch to master #114

merged 515 commits into from
Feb 13, 2016
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 26, 2015

  1. Configuration menu
    Copy the full SHA
    990835f View commit details
    Browse the repository at this point in the history
  2. MVNLayer fixes.

    Fix the MVNLayer tests so they actually test what they claim.
    
    MVNLayer fixes: sum_multiplier_ sized correctly; backward gradient calculation.
    
    Gradient calculation per analysis of seanbell, found here:
    BVLC#1938
    
    Fixes according to review comments.
    jyegerlehner committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    1f3f952 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c548a79 View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#2981 from maaskola/draw-deconvolution

    Draw Deconvolution layers like Convolution layers
    jeffdonahue committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    93b4835 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    215bea0 View commit details
    Browse the repository at this point in the history
  6. Fix previous mistake on unimplemented top and address pyramid_height_…

    …==1 in SPPLayer
    
    also, do nothing in SPPLayer Reshape if already reshaped once and bottom size unchanged
    ronghanghu committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    292dbc5 View commit details
    Browse the repository at this point in the history
  7. Merge pull request BVLC#2970 from ronghanghu/spp-fix

    Fix SPPLayer top blob num and address `pyramid_height_ == 1`
    ronghanghu committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    b7e4bfe View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2015

  1. Merge pull request BVLC#2944 from philkr/python_layer_param

    Give the python layer parameter/weight blobs.
    longjon committed Aug 27, 2015
    Configuration menu
    Copy the full SHA
    f572eef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f64b9e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d7fe4d View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#2989 from jyegerlehner/embed-layer-compile-wa…

    …rning
    
    Fix EmbedLayer compiler warning for unused variable.
    jeffdonahue committed Aug 27, 2015
    Configuration menu
    Copy the full SHA
    4c561fd View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2015

  1. fix GPU data race

    Previously, the prefetch GPU -> top GPU and prefetch CPU -> prefetch GPU
    copies were launched concurrently in separate streams, allowing the next
    batch to be copied in before the current one is read.
    
    This patch explicitly synchronizes the prefetch -> top copy wrt the
    host, preventing the CPU -> GPU from being launched until its
    completion.
    longjon committed Aug 30, 2015
    Configuration menu
    Copy the full SHA
    846f2c3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#2894 from mfigurnov/fix-truncation-warning

    Fix truncation of value warning
    ronghanghu committed Aug 30, 2015
    Configuration menu
    Copy the full SHA
    d3dc7b4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request BVLC#2998 from longjon/data-race

    Fix a recently introduced race condition in DataLayer
    jeffdonahue committed Aug 30, 2015
    Configuration menu
    Copy the full SHA
    d362894 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2015

  1. Configuration menu
    Copy the full SHA
    a675172 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3007 from philkr/neg_lr_mult

    Compute backward for negative lr_mult
    jeffdonahue committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    2d55e31 View commit details
    Browse the repository at this point in the history
  3. Cleanup: Fixup capitalisation of Caffe_POSTFIX.

    Replaces CAffe_POSTFIX -> Caffe_POSTFIX.
    darrengarvey committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    b04000e View commit details
    Browse the repository at this point in the history
  4. Fix memory leak in convert_mnist_siamese_data.

    This fixes a memory leak by using delete[] rather than plain delete.
    darrengarvey committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    e8f96f5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#3008 from darrengarvey/cleanup-cmake-variable

    Cleanup: Fixup capitalisation of Caffe_POSTFIX.
    jeffdonahue committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    6567ce1 View commit details
    Browse the repository at this point in the history
  6. cifar10: Fix examples by setting snapshot_format.

    Commit 4227828 set the default binary format from HDF5 to BINARYPROTO to
    fix BVLC#2885. This broke the cifar10 examples which relied on this default.
    
    This commit specifies the snapshot_format explicitly since the rest of the
    example relies on this being HDF5.
    darrengarvey committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    583194a View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2015

  1. Fix up documentation errors.

    Fix some doxygen warnings about an undocumented argument in Blob and
    incorrect documentation for SoftmaxWithLossLayer::Forward_cpu().
    darrengarvey committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    6f5812c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ca0ab6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request BVLC#3009 from darrengarvey/cleanup-documentation-…

    …warnings
    
    Fix up documentation errors.
    jeffdonahue committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    e7a1dd0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#3011 from darrengarvey/fixup-cifar10-example

    cifar10: Fix examples by setting snapshot_format.
    jeffdonahue committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    d900435 View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#3012 from lukeyeager/convert-imageset-logging

    Show output from convert_imageset tool
    jeffdonahue committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    35980eb View commit details
    Browse the repository at this point in the history
  6. Merge pull request BVLC#3010 from darrengarvey/fixup-memory-leak-siamese

    Fix memory leak in convert_mnist_siamese_data.
    jeffdonahue committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    cbb2ed1 View commit details
    Browse the repository at this point in the history
  7. Merge pull request BVLC#2990 from mattdawkins/add-openblas-path

    Add extra OpenBLAS include search path
    jeffdonahue committed Sep 2, 2015
    Configuration menu
    Copy the full SHA
    e8e660d View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2015

  1. Configuration menu
    Copy the full SHA
    d1a0345 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    784dfdd View commit details
    Browse the repository at this point in the history
  3. Merge pull request BVLC#3014 from jeffdonahue/trivial-slice-concat

    Allow trivial slice/concat
    ronghanghu committed Sep 3, 2015
    Configuration menu
    Copy the full SHA
    66823b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    46c3f00 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c248474 View commit details
    Browse the repository at this point in the history
  6. Merge pull request BVLC#2959 from jeffdonahue/netspec-allow-non-itera…

    …ble-repeated
    
    NetSpec: don't require lists to specify single-element repeated fields
    jeffdonahue committed Sep 3, 2015
    Configuration menu
    Copy the full SHA
    50cbf01 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2015

  1. Merge pull request BVLC#3023 from jeffdonahue/param-debug-info-fix

    fix Net debug_info to report learnable params
    shelhamer committed Sep 4, 2015
    Configuration menu
    Copy the full SHA
    0486127 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1bdc18c View commit details
    Browse the repository at this point in the history
  3. Fix AccuracyLayerTest for per-class accuracy.

    Fix AccuracyLayerTest for per-class accuracy. Previously in BVLC#2935, it crashes since the test accuracy is nan (0/0) when a class never appear.
    ronghanghu committed Sep 4, 2015
    Configuration menu
    Copy the full SHA
    aa40ab9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#3027 from ronghanghu/fix-accuracy-test

    Fix AccuracyLayerTest for per-class accuracy.
    shelhamer committed Sep 4, 2015
    Configuration menu
    Copy the full SHA
    c09c30d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9a244f9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5cc76ad View commit details
    Browse the repository at this point in the history
  7. Merge pull request BVLC#3024 from danielgordon10/python-solver-fix

    [pycaffe] expose all solvers for direct instantiation (although note get_solver)
    shelhamer committed Sep 4, 2015
    Configuration menu
    Copy the full SHA
    5367a1a View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2015

  1. Configuration menu
    Copy the full SHA
    1394cdc View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2015

  1. Minor: missing space in string formatting

    Sean Bell committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    8fbac04 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3048 from seanbell/minor-string-fix

    Minor: missing space in string formatting
    ronghanghu committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    4f8775c View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2015

  1. Use EXPECT_NEAR in EltwiseLayer test

    Otherwise there seem to be some numerical issues causing BLAS results not exactly same as evaluated results in test code.
    ronghanghu committed Sep 14, 2015
    Configuration menu
    Copy the full SHA
    3456259 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#2941 from thatguymike/MultiGPUDocs

    Add some documentation on Multi-GPU support
    ronghanghu committed Sep 14, 2015
    Configuration menu
    Copy the full SHA
    5b3ad4d View commit details
    Browse the repository at this point in the history
  3. Merge pull request BVLC#3063 from ronghanghu/use-expectnear-in-eltwis…

    …elayertest
    
    Use EXPECT_NEAR in EltwiseLayer test
    ronghanghu committed Sep 14, 2015
    Configuration menu
    Copy the full SHA
    f87658a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ab554cb View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#3049 from seanbell/check-snapshot-prefix

    Check that the snapshot directory is writeable before starting training
    ronghanghu committed Sep 14, 2015
    Configuration menu
    Copy the full SHA
    e4baef2 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2015

  1. Configuration menu
    Copy the full SHA
    b7f9cba View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2015

  1. Merge pull request BVLC#3070 from mohomran/resize_nd-image_bug

    bug in caffe.io.resize_image when applied to images with 2 or >3 channels
    jeffdonahue committed Sep 16, 2015
    Configuration menu
    Copy the full SHA
    71e0587 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d3a8b2 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2015

  1. Separate IO dependencies

    OpenCV, LMDB, LevelDB and Snappy are made optional via switches
    (USE_OPENCV, USE_LMDB, USE_LEVELDB) available for Make and CMake
    builds. Since Snappy is a LevelDB dependency, its use is determined by
    USE_LEVELDB. HDF5 is left bundled because it is used for serializing
    weights and solverstates.
    eelstork committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    f3a933a View commit details
    Browse the repository at this point in the history
  2. Fix case in CMake notices

    eelstork committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    2349c6d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    68c9e2b View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#2523 from BonsaiAI/separate-io-dependencies

    Separate dependencies for configurable installation
    jeffdonahue committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    5ff3734 View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#3074 from ronghanghu/show-use-cpu

    Get back 'USE CPU' print for caffe train
    ronghanghu committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    2a585f7 View commit details
    Browse the repository at this point in the history
  6. [build] include IO dependencies by default

    keep old behavior by including leveldb, lmdb, and opencv by default
    shelhamer committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    e75ae96 View commit details
    Browse the repository at this point in the history
  7. Merge pull request BVLC#3081 from shelhamer/include-io-by-default

    include IO dependencies by default
    shelhamer committed Sep 17, 2015
    Configuration menu
    Copy the full SHA
    3d12b5d View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2015

  1. Configuration menu
    Copy the full SHA
    f75d594 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2015

  1. Configuration menu
    Copy the full SHA
    4c2ff16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0813f32 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9d8206e View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#2049 from jeffdonahue/nd-convolution

    ND convolution with im2col
    jeffdonahue committed Sep 19, 2015
    Configuration menu
    Copy the full SHA
    2e1c1cb View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#3083 from yanchen036/master

    refine format of switch case statement in solver
    longjon committed Sep 19, 2015
    Configuration menu
    Copy the full SHA
    68655b5 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2015

  1. [build] check xcode command line tools version >= 6

    future-proof version check for BLAS libraries on OS X
    fix BVLC#3092
    shelhamer committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    da75a0e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a40c2a0 View commit details
    Browse the repository at this point in the history
  3. Merge pull request BVLC#3095 from longjon/fix-deconv-backward

    Fix broken DeconvolutionLayer GPU backward caused by ND conv typo
    jeffdonahue committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    9dca961 View commit details
    Browse the repository at this point in the history
  4. fix broken conv/deconv reshaping caused by reading bottom shape in

    LayerSetUp
    
    This also eliminates the extra copying of bottom's shape.
    longjon committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    6a00eca View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2015

  1. Merge pull request BVLC#3093 from shelhamer/check-xcode-clt-version

    [build] check xcode command line tools version >= 6
    shelhamer committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    58e4ea4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3096 from longjon/fix-conv-reshape

    Fix broken conv/deconv reshaping
    longjon committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    d425e59 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2015

  1. [test] TestReshape: check small then large

    checking large then small can mask failure since the smaller shape
    memory will fit within the larger shape.
    shelhamer committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    74e1745 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae77b15 View commit details
    Browse the repository at this point in the history
  3. [test] TestReshape: check that shapes actually change

    Check that output spatial shape varies with input shape while the output
    num matches the input num.
    shelhamer committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    b8c81bd View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#3112 from shelhamer/test-reshape-harder

    [test] Test Reshape more rigorously
    shelhamer committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    ff6b288 View commit details
    Browse the repository at this point in the history
  5. Merge pull request BVLC#2951 from dplarson/examples_readme_link

    [examples] fix link to feature visualization notebook
    shelhamer committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    37dc63c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    84e390c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ebc9963 View commit details
    Browse the repository at this point in the history
  8. Merge pull request BVLC#2978 from lukeyeager/h5t_integer

    Allow H5T_INTEGER in HDF5 files
    jeffdonahue committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    349ff65 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    859f938 View commit details
    Browse the repository at this point in the history
  10. Merge pull request BVLC#3115 from lukeyeager/fix-generate-sample-data

    Fix generate_sample_data.py
    jeffdonahue committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    674b349 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2015

  1. Configuration menu
    Copy the full SHA
    200bd40 View commit details
    Browse the repository at this point in the history
  2. Add argmax_param axis

    timmeinhardt committed Sep 25, 2015
    Configuration menu
    Copy the full SHA
    6c02c8b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c77d5e5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9b2d267 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a2a5e22 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    def3d3c View commit details
    Browse the repository at this point in the history
  7. Merge pull request BVLC#3118 from ducha-aiki/patch-1

    Fix parse_log.sh against "prefetch queue empty" messages
    shelhamer committed Sep 25, 2015
    Configuration menu
    Copy the full SHA
    aa6900a View commit details
    Browse the repository at this point in the history
  8. Merge pull request BVLC#3032 from ronghanghu/ban-pythonlayer-in-parallel

    Disallow PythonLayer in Multi-GPU training
    shelhamer committed Sep 25, 2015
    Configuration menu
    Copy the full SHA
    3b85440 View commit details
    Browse the repository at this point in the history
  9. Add flag on how host memory is allocated

    Add a bool flag to record whether a host memory is allocated using malloc or
    cudaMallocHost, and free correspondingly using this flag, instead of depending on Caffe::mode(), which is mutable during runtime.
    ronghanghu committed Sep 25, 2015
    Configuration menu
    Copy the full SHA
    bd5f154 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2015

  1. Merge pull request BVLC#3073 from ronghanghu/consistent-malloc-free

    Ensure consistency between memory alloc and free
    ronghanghu committed Sep 26, 2015
    Configuration menu
    Copy the full SHA
    ff16f6e View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2015

  1. Fix a typo

    Fix a typo in the message.
    Yang Song committed Sep 29, 2015
    Configuration menu
    Copy the full SHA
    96ba513 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3128 from hjss06/patch-1

    Fix a typo
    ronghanghu committed Sep 29, 2015
    Configuration menu
    Copy the full SHA
    942df00 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2015

  1. Add versioning for v0.14

    * shared library
    * caffe binary (caffe --version)
    * python module (caffe.__version__)
    lukeyeager committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    5cb40b4 View commit details
    Browse the repository at this point in the history
  2. test

    drnikolaev committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    9b903b5 View commit details
    Browse the repository at this point in the history
  3. Initial cuDNN v3 support

    slayton58 authored and drnikolaev committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    c8073dc View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2015

  1. Configuration menu
    Copy the full SHA
    c089a2e View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3069 from timmeinhardt/argmax

    Add argmax_param "axis" to maximise output along the specified axis
    shelhamer committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    01e15d0 View commit details
    Browse the repository at this point in the history
  3. Add CNMeM support

    488f126
    
    Conflicts:
    	Makefile
    	Makefile.config.example
    	src/caffe/layers/cudnn_conv_layer.cpp
    	src/caffe/layers/cudnn_conv_layer.cu
    	src/caffe/layers/cudnn_lcn_layer.cpp
    	src/caffe/layers/cudnn_lcn_layer.cu
    NV-slayton authored and drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    441bddc View commit details
    Browse the repository at this point in the history
  4. Cmake support for CNMeM

    438add5
    
    Conflicts:
    	CMakeLists.txt
    	cmake/Templates/CaffeConfig.cmake.in
    slayton58 authored and drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    fd0d640 View commit details
    Browse the repository at this point in the history
  5. Move to centralized cuDNN handle

    38d6baf
    
    Conflicts:
    	src/caffe/layers/cudnn_conv_layer.cpp
    	src/caffe/layers/cudnn_conv_layer.cu
    slayton58 authored and drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    6aaf7b1 View commit details
    Browse the repository at this point in the history
  6. Turn off cuDNN in TravisCI script

    lukeyeager authored and drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    4a57fff View commit details
    Browse the repository at this point in the history
  7. Fix potential CNMEM_NOT_INITIALIZED errors

    dummy alloc / free in MemoryHandlerActivator to ensure that
    the memory pool has been set up before any potential operations
    slayton58 authored and drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    62582cb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    98cc023 View commit details
    Browse the repository at this point in the history
  9. Merge pull request BVLC#3133 from kashefy/badge

    add badge for travis build and license
    shelhamer committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    6eae122 View commit details
    Browse the repository at this point in the history
  10. unused variables warning

    drnikolaev committed Oct 1, 2015
    Configuration menu
    Copy the full SHA
    f0d6549 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    848bfda View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2015

  1. Add a caffe.io.write_mean function to the MATLAB interface

    Useful for exporting models from MATLAB (e.g. MatConvNet) to Caffe
    zoharby authored and zoharby committed Oct 5, 2015
    Configuration menu
    Copy the full SHA
    552a84a View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3058 from zoharby/master

    Add a caffe.io.write_mean function to the MATLAB interface
    ronghanghu committed Oct 5, 2015
    Configuration menu
    Copy the full SHA
    92dc4e6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    64f948a View commit details
    Browse the repository at this point in the history
  4. Merge pull request BVLC#3152 from jeffdonahue/silence-backward-fix

    SilenceLayer Backward bugfix (fixes BVLC#3151)
    jeffdonahue committed Oct 5, 2015
    Configuration menu
    Copy the full SHA
    8ef3d63 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2015

  1. fixes BVLC#3163

    eerwitt committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    e061546 View commit details
    Browse the repository at this point in the history
  2. Merge pull request BVLC#3164 from eerwitt/layer-documentation-sample-…

    …fixes
    
    Documentation References ImageNet Sample Location
    ronghanghu committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    04c7c36 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2015

  1. CUDNN config improved

    borisfom committed Oct 8, 2015
    Configuration menu
    Copy the full SHA
    02630e0 View commit details
    Browse the repository at this point in the history
  2. Initial cuDNN v3 support

    slayton58 committed Oct 8, 2015
    Configuration menu
    Copy the full SHA
    ffee008 View commit details
    Browse the repository at this point in the history
  3. Fixing memory handler

    borisfom committed Oct 8, 2015
    Configuration menu
    Copy the full SHA
    17b90a2 View commit details
    Browse the repository at this point in the history
  4. Fixing memory handler

    borisfom committed Oct 8, 2015
    Configuration menu
    Copy the full SHA
    ee9ab75 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2015

  1. CNMEM fix

    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    dfd65ed View commit details
    Browse the repository at this point in the history
  2. Renamed handler class

    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    cda2e18 View commit details
    Browse the repository at this point in the history
  3. Reverted rename for now

    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    36eaec8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1 from borisfom/caffe-0.14-cnmem

    Caffe 0.14 cnmem
    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    636998d View commit details
    Browse the repository at this point in the history
  5. restored missed functions

    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    ab8a646 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2 from borisfom/caffe-0.14-cnmem

    restored missed functions
    borisfom committed Oct 9, 2015
    Configuration menu
    Copy the full SHA
    f642fb6 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2015

  1. restored use_pool check

    borisfom committed Oct 10, 2015
    Configuration menu
    Copy the full SHA
    46cc594 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from borisfom/caffe-0.14-cnmem

    restored use_pool check
    borisfom committed Oct 10, 2015
    Configuration menu
    Copy the full SHA
    8740cce View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2015

  1. Configuration menu
    Copy the full SHA
    d82e665 View commit details
    Browse the repository at this point in the history
  2. perparing for merge

    borisfom committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    ba10864 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b395e9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3931c20 View commit details
    Browse the repository at this point in the history
  5. 488f126

    Add CNMeM support
    
    Conflicts:
    	Makefile
    	Makefile.config.example
    	src/caffe/layers/cudnn_conv_layer.cpp
    	src/caffe/layers/cudnn_conv_layer.cu
    	src/caffe/layers/cudnn_lcn_layer.cpp
    	src/caffe/layers/cudnn_lcn_layer.cu
    NV-slayton authored and drnikolaev committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    908f082 View commit details
    Browse the repository at this point in the history
  6. 438add5

    Cmake support for CNMeM
    
    Conflicts:
    	CMakeLists.txt
    	cmake/Templates/CaffeConfig.cmake.in
    slayton58 authored and drnikolaev committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    f1928b9 View commit details
    Browse the repository at this point in the history
  7. 38d6baf

    Move to centralized cuDNN handle
    
    Conflicts:
    	src/caffe/layers/cudnn_conv_layer.cpp
    	src/caffe/layers/cudnn_conv_layer.cu
    slayton58 authored and drnikolaev committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    83b4124 View commit details
    Browse the repository at this point in the history
  8. Fix potential CNMEM_NOT_INITIALIZED errors

    dummy alloc / free in MemoryHandlerActivator to ensure that
    the memory pool has been set up before any potential operations
    slayton58 authored and drnikolaev committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    350658d View commit details
    Browse the repository at this point in the history
  9. cnmem merge

    borisfom committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    5a02f49 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2015

  1. cnmem merge

    borisfom committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    6ba96ee View commit details
    Browse the repository at this point in the history
  2. Merged CNMEM, tests passed

    borisfom committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    14eaf93 View commit details
    Browse the repository at this point in the history
  3. CNMEM case checked

    borisfom committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    0b70f2a View commit details
    Browse the repository at this point in the history
  4. peer/self ordering fix

    drnikolaev committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    9405436 View commit details
    Browse the repository at this point in the history
  5. Polished MemoryHandler

    borisfom committed Oct 13, 2015
    Configuration menu
    Copy the full SHA
    5dcff36 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2015

  1. LINT fixes

    borisfom committed Oct 14, 2015
    Configuration menu
    Copy the full SHA
    d5b7d26 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2015

  1. CPU_ONLY fix

    borisfom committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    00d6a1b View commit details
    Browse the repository at this point in the history
  2. macro redefinition fix

    borisfom committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    b2daa56 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2015

  1. Names normalized

    borisfom committed Oct 18, 2015
    Configuration menu
    Copy the full SHA
    906002c View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2015

  1. deleted submodule

    borisfom committed Oct 19, 2015
    Configuration menu
    Copy the full SHA
    d12b5cc View commit details
    Browse the repository at this point in the history
  2. Squashed '.3rdparty/cnmem/' content from commit e817a7a

    git-subtree-dir: .3rdparty/cnmem
    git-subtree-split: e817a7a2889389eaf934fe66a9744878b900acba
    borisfom committed Oct 19, 2015
    Configuration menu
    Copy the full SHA
    6480847 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d25e6a5 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2015

  1. CNMEM integration

    borisfom committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    8a16cbd View commit details
    Browse the repository at this point in the history
  2. Travis build has Cmake 2.8.7

    borisfom committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    8635051 View commit details
    Browse the repository at this point in the history
  3. Removing Cmake

    borisfom committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    ce1c463 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f462d1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    80af4b1 View commit details
    Browse the repository at this point in the history
  6. Fixing CUDNN options

    borisfom committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    7d5d1cf View commit details
    Browse the repository at this point in the history
  7. Cleanup for PR submission

    borisfom committed Oct 20, 2015
    Configuration menu
    Copy the full SHA
    e191830 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0792af7 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2015

  1. Merge pull request #42 from drnikolaev/caffe-0.14

    CUDNN v4 upgrade.  Optionally, CNMEM used for GPU pool allocation.
    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    c3cd5c8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #39 from lukeyeager/nvidia/versioning

    Add versioning for v0.14
    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    ec192dd View commit details
    Browse the repository at this point in the history
  3. Mark v0.14.0-beta

    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    f432085 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c3cb945 View commit details
    Browse the repository at this point in the history
  5. Allow old-style shape in blobproto_to_array

    Fixes BVLC#3199
    Bug introduced in BVLC#3170
    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    a0ac905 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d2c063c View commit details
    Browse the repository at this point in the history
  7. clean up logging for Net init

    - condense conditions by `LOG_IF`
    - only log memory use once after all tops
    shelhamer authored and lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    61379dc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b1e2caf View commit details
    Browse the repository at this point in the history
  9. Re-ordering some lines in build files

    Enforcing a consistent ordering - OpenCV, LevelDB, LMDB
    
    This will allow me to add the ALLOW_LMDB_NOLOCK option just after the
    USE_LMDB option, while keeping the IO dependency options together.
    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    6f57970 View commit details
    Browse the repository at this point in the history
  10. Add ALLOW_LMDB_NOLOCK build option

    This option lets you open LMDB files with the MDB_NOLOCK flag. You
    should not set this flag if you will be reading LMDBs with any
    possibility of simultaneous read and write.
    lukeyeager committed Oct 21, 2015
    Configuration menu
    Copy the full SHA
    749a636 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2015

  1. Remove versioned symlinks from tools

    Leaving it for the shared library only
    lukeyeager committed Oct 22, 2015
    Configuration menu
    Copy the full SHA
    4617bd6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #44 from lukeyeager/nvidia/cherry-picks

    Cherry pick some commits for v0.14
    lukeyeager committed Oct 22, 2015
    Configuration menu
    Copy the full SHA
    8468d18 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #46 from lukeyeager/nvidia/cmake-too-much-versioning

    Remove versioned symlinks from tools
    lukeyeager committed Oct 22, 2015
    Configuration menu
    Copy the full SHA
    aaf7ff0 View commit details
    Browse the repository at this point in the history
  4. Mark v0.14.0-beta.1

    lukeyeager committed Oct 22, 2015
    Configuration menu
    Copy the full SHA
    013db36 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2015

  1. Added batch normalization layer with test and examples

    Conflicts:
    	include/caffe/common_layers.hpp
    ducha-aiki authored and lukeyeager committed Oct 28, 2015
    Configuration menu
    Copy the full SHA
    74a8f12 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e48dcda View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2015

  1. Configuration menu
    Copy the full SHA
    d52bc27 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2015

  1. 32-bit LMDB fix

    borisfom committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    285f900 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #52 from borisfom/caffe-0.14-lmdb-fix

    32-bit LMDB fix
    borisfom committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    ae1ac60 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #56 from lukeyeager/nvidia/fix-destroy-cudnn

    Fix cuDNN handle destruction error
    slayton58 committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    9068a9e View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2015

  1. Properly set GPU arena in test and time functions

    Michael Houston committed Oct 31, 2015
    Configuration menu
    Copy the full SHA
    713b02f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #59 from thatguymike/arena_fix

    Properly set GPU arena in test and time functions
    thatguymike committed Oct 31, 2015
    Configuration menu
    Copy the full SHA
    3cb5b8f View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2015

  1. Configuration menu
    Copy the full SHA
    36385b7 View commit details
    Browse the repository at this point in the history
  2. fixed CPU only

    borisfom committed Nov 1, 2015
    Configuration menu
    Copy the full SHA
    cce736f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #62 from borisfom/caffe-0.14-cub-alloc

    Added CUB memory pool. CNMEM pool kept as default if USE_CNMEM set.
    borisfom committed Nov 1, 2015
    Configuration menu
    Copy the full SHA
    fc52f18 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2015

  1. Merge pull request #51 from lukeyeager/nvidia/batchnorm

    Cherry-pick batch normalization PR.  Still pending cuDNNv4 version
    thatguymike committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    715ef61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d7d568a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #64 from lukeyeager/nvidia/fix-gradient-accumulation

    Cherry-pick gradient accumulation fix for v0.14
    lukeyeager committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    d4236c3 View commit details
    Browse the repository at this point in the history
  4. Mark v0.14.0-rc.1

    lukeyeager committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    4486988 View commit details
    Browse the repository at this point in the history
  5. Revert "Mark v0.14.0-rc.1"

    This reverts commit 4486988.
    
    Not ready yet.
    lukeyeager committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    9aef99d View commit details
    Browse the repository at this point in the history
  6. TravisCI: wget cmake with --no-check-certificate

    ```
    --2015-11-03 22:31:11--  http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Resolving www.cmake.org (www.cmake.org)... 66.194.253.19
    Connecting to www.cmake.org (www.cmake.org)|66.194.253.19|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following]
    --2015-11-03 22:31:11--  http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Resolving cmake.org (cmake.org)... 66.194.253.19
    Connecting to cmake.org (cmake.org)|66.194.253.19|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following]
    --2015-11-03 22:31:11--  https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Connecting to cmake.org (cmake.org)|66.194.253.19|:443... connected.
    ERROR: no certificate subject alternative name matches
            requested host name `cmake.org'.
    To connect to cmake.org insecurely, use `--no-check-certificate'.
    ```
    lukeyeager committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    1fafd7f View commit details
    Browse the repository at this point in the history
  7. Merge pull request #66 from lukeyeager/fix-travis-cmake-download

    TravisCI: wget cmake with --no-check-certificate
    lukeyeager committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    ba220d5 View commit details
    Browse the repository at this point in the history
  8. Fixing CMake build

    borisfom committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    c2aae00 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2015

  1. Merge pull request #65 from borisfom/caffe-0.14-workspaces-fix

    Fixing CMake build
    lukeyeager committed Nov 4, 2015
    Configuration menu
    Copy the full SHA
    6233c68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    560d270 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5dcaa09 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #69 from borisfom/caffe-0.14-workspaces-fix

    Restored missed CNMEM switches
    lukeyeager committed Nov 4, 2015
    Configuration menu
    Copy the full SHA
    1c91b46 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #68 from borisfom/caffe-0.14-tempbuf-fix

    Added gpu_memory::buffer class to help in no-pool config
    lukeyeager committed Nov 4, 2015
    Configuration menu
    Copy the full SHA
    83401d6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6ef51a4 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #70 from borisfom/caffe-0.14-cnmem-95

    restored 95% of memory grabbed by CNMEM
    lukeyeager committed Nov 4, 2015
    Configuration menu
    Copy the full SHA
    b14de8d View commit details
    Browse the repository at this point in the history
  8. Mark v0.14.0-rc.1

    lukeyeager committed Nov 4, 2015
    Configuration menu
    Copy the full SHA
    6804029 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2015

  1. Configuration menu
    Copy the full SHA
    4f02a0b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #71 from lukeyeager/nvidia/fix-py3-travis-boost

    Cherry-pick TravisCI python3 fix
    lukeyeager committed Nov 5, 2015
    Configuration menu
    Copy the full SHA
    62ad22d View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2015

  1. Configuration menu
    Copy the full SHA
    18fc267 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2015

  1. Merge pull request #73 from borisfom/caffe-0.14

    Adding out of memory handler, making arena bins more detailed
    borisfom committed Nov 10, 2015
    Configuration menu
    Copy the full SHA
    934b378 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2015

  1. Change multi-solver handling by dividing user batch by gpu count, whi…

    …ch is the solver count currently
    Michael Houston committed Nov 18, 2015
    Configuration menu
    Copy the full SHA
    a1fbccd View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2015

  1. Configuration menu
    Copy the full SHA
    66d5580 View commit details
    Browse the repository at this point in the history
  2. Make backward pass work when global stats is active for BatchNormLayer

    including minor code cleaning
    kkhoot authored and lukeyeager committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    f31002d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #78 from thatguymike/divide_batch_by_solvers

    Change multi-solver handling by dividing user batch by gpu count
    lukeyeager committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    2eeec26 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #79 from lukeyeager/nvidia/fix-batchnorm

    Cherry-pick batchnorm fixes
    lukeyeager committed Nov 19, 2015
    Configuration menu
    Copy the full SHA
    31ee158 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2015

  1. Removing CNMEM switches

    Removed CNMEM references
    borisfom committed Nov 20, 2015
    Configuration menu
    Copy the full SHA
    54811d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #82 from borisfom/caffe-0.14

    Removing CNMEM switches
    lukeyeager committed Nov 20, 2015
    Configuration menu
    Copy the full SHA
    3bfc708 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2015

  1. Configuration menu
    Copy the full SHA
    e0e6432 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1680b0 View commit details
    Browse the repository at this point in the history
  3. Fix travis and test issue

    Michael Houston committed Nov 21, 2015
    Configuration menu
    Copy the full SHA
    35d07ea View commit details
    Browse the repository at this point in the history
  4. Merge pull request #83 from thatguymike/divide_batch_by_solvers

    Fix gradient test to handle batch size correctly now that we divide
    thatguymike committed Nov 21, 2015
    Configuration menu
    Copy the full SHA
    49f752d View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2015

  1. Cleanup docs to reflect multigpu batch change

    Michael Houston committed Nov 23, 2015
    Configuration menu
    Copy the full SHA
    1664af4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #84 from thatguymike/multigpudocupdate

    Cleanup docs to reflect multigpu batch change
    lukeyeager committed Nov 23, 2015
    Configuration menu
    Copy the full SHA
    1206d56 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2015

  1. Configuration menu
    Copy the full SHA
    ff38824 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #80 from andrei-pokrovsky/caffe-0.14

    Add cudnn v4 batch normalization integration
    thatguymike committed Nov 24, 2015
    Configuration menu
    Copy the full SHA
    e9f8357 View commit details
    Browse the repository at this point in the history
  3. Mark v0.14.0-rc.2

    lukeyeager committed Nov 24, 2015
    Configuration menu
    Copy the full SHA
    72760f2 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2015

  1. CUB allocator improvements: no guessing in get_info, infinite pool, l…

    …imiting memory overuse for large blocks
    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    155beaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c742401 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #86 from borisfom/caffe-0.14

    Pool allocator fixes
    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    4cd523f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7bd0991 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #87 from NVIDIA/revert-86-caffe-0.14

    Revert "Pool allocator fixes"
    thatguymike committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    3c378a8 View commit details
    Browse the repository at this point in the history
  6. Dynamically reshape and adjust pool

    Michael Houston committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    1fdefe9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4e936f7 View commit details
    Browse the repository at this point in the history
  8. Fixing GPU arena setup

    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    b61ebf0 View commit details
    Browse the repository at this point in the history
  9. Fixed debug print

    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    37d8e76 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #88 from thatguymike/cub_usage_fixes

    Dynamically reshape and adjust pool.  Part 1 of fixing this.  @borisfom has some improvements in #89 but we have more debugging to do.
    thatguymike committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    082bf14 View commit details
    Browse the repository at this point in the history
  11. Merge with upstream

    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    64aa3a1 View commit details
    Browse the repository at this point in the history
  12. d

    borisfom committed Dec 2, 2015
    Configuration menu
    Copy the full SHA
    1c67845 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2015

  1. Configuration menu
    Copy the full SHA
    b52ab92 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #90 from thatguymike/boris_cub_merge

    Cross merge fixes from Boris
    thatguymike committed Dec 3, 2015
    Configuration menu
    Copy the full SHA
    b000617 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81baeda View commit details
    Browse the repository at this point in the history
  4. Mark v0.14.0-rc.3

    lukeyeager committed Dec 3, 2015
    Configuration menu
    Copy the full SHA
    db610fd View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2015

  1. Configuration menu
    Copy the full SHA
    d632465 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2016

  1. Merge from upstream

    borisfom committed Jan 12, 2016
    Configuration menu
    Copy the full SHA
    1e51bbd View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2016

  1. Mark v0.14.0-rc.3

    lukeyeager authored and borisfom committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    3fc98dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a2ab8e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a3d7b22 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2016

  1. Fixing Lint errors

    borisfom committed Jan 14, 2016
    Configuration menu
    Copy the full SHA
    e1fe549 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2016

  1. Merge pull request #101 from borisfom/caffe-0.14

    gpu_memory cleanup, fixes possible init issue
    drnikolaev committed Jan 15, 2016
    Configuration menu
    Copy the full SHA
    8eebbb4 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2016

  1. cuDNN and pooling fixes

    drnikolaev committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    569aa49 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #102 from drnikolaev/pooling-cudnn-fixes

    cuDNN and pooling fixes
    borisfom committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    b3a4a1a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3724101 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2016

  1. Merge pull request #103 from thatguymike/maxpool_workaround

    Cleaner workaround for max pool
    drnikolaev committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    4d58e6d View commit details
    Browse the repository at this point in the history
  2. Fix commentary

    thatguymike committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    fc6dea9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #104 from thatguymike/maxpool_commentary

    Fix commentary
    thatguymike committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    c960bcf View commit details
    Browse the repository at this point in the history
  4. Mark v0.14.0

    lukeyeager committed Jan 20, 2016
    Configuration menu
    Copy the full SHA
    2e4d2ae View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2016

  1. Configuration menu
    Copy the full SHA
    4440513 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #105 from drnikolaev/fix2

    weight updates should be done with beta=1
    thatguymike committed Jan 21, 2016
    Configuration menu
    Copy the full SHA
    b9b83d4 View commit details
    Browse the repository at this point in the history
  3. Mark v0.14.1

    lukeyeager committed Jan 21, 2016
    Configuration menu
    Copy the full SHA
    c887de9 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2016

  1. 200169109 fix

    drnikolaev committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    b0074e1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #108 from drnikolaev/nvcaffe-0.14-orig

    200169109 fix
    lukeyeager committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    3ba0387 View commit details
    Browse the repository at this point in the history
  3. Mark v0.14.2

    lukeyeager committed Jan 29, 2016
    Configuration menu
    Copy the full SHA
    29361c7 View commit details
    Browse the repository at this point in the history