Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
SparseConvNet
Commits
dcd1428d
Commit
dcd1428d
authored
Dec 18, 2018
by
Benjamin Graham
Browse files
BSD license
parent
879d0b68
Changes
110
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
sparseconvnet/SCN/CUDA/AveragePooling.cpp
sparseconvnet/SCN/CUDA/AveragePooling.cpp
+1
-1
sparseconvnet/SCN/CUDA/AveragePooling.cu
sparseconvnet/SCN/CUDA/AveragePooling.cu
+1
-1
sparseconvnet/SCN/CUDA/BatchNormalization.cpp
sparseconvnet/SCN/CUDA/BatchNormalization.cpp
+1
-1
sparseconvnet/SCN/CUDA/BatchNormalization.cu
sparseconvnet/SCN/CUDA/BatchNormalization.cu
+1
-1
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cpp
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cpp
+1
-1
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cu
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cu
+1
-1
sparseconvnet/SCN/CUDA/Convolution.cpp
sparseconvnet/SCN/CUDA/Convolution.cpp
+1
-1
sparseconvnet/SCN/CUDA/Convolution.cu
sparseconvnet/SCN/CUDA/Convolution.cu
+1
-1
sparseconvnet/SCN/CUDA/Deconvolution.cpp
sparseconvnet/SCN/CUDA/Deconvolution.cpp
+1
-1
sparseconvnet/SCN/CUDA/Deconvolution.cu
sparseconvnet/SCN/CUDA/Deconvolution.cu
+1
-1
sparseconvnet/SCN/CUDA/IOLayers.cpp
sparseconvnet/SCN/CUDA/IOLayers.cpp
+1
-1
sparseconvnet/SCN/CUDA/IOLayers.cu
sparseconvnet/SCN/CUDA/IOLayers.cu
+1
-1
sparseconvnet/SCN/CUDA/LeakyReLU.cpp
sparseconvnet/SCN/CUDA/LeakyReLU.cpp
+1
-1
sparseconvnet/SCN/CUDA/LeakyReLU.cu
sparseconvnet/SCN/CUDA/LeakyReLU.cu
+1
-1
sparseconvnet/SCN/CUDA/MaxPooling.cpp
sparseconvnet/SCN/CUDA/MaxPooling.cpp
+1
-1
sparseconvnet/SCN/CUDA/MaxPooling.cu
sparseconvnet/SCN/CUDA/MaxPooling.cu
+1
-1
sparseconvnet/SCN/CUDA/NetworkInNetwork.cpp
sparseconvnet/SCN/CUDA/NetworkInNetwork.cpp
+1
-1
sparseconvnet/SCN/CUDA/RuleBookIterator.h
sparseconvnet/SCN/CUDA/RuleBookIterator.h
+1
-1
sparseconvnet/SCN/CUDA/SparseToDense.cpp
sparseconvnet/SCN/CUDA/SparseToDense.cpp
+1
-1
sparseconvnet/SCN/CUDA/SparseToDense.cu
sparseconvnet/SCN/CUDA/SparseToDense.cu
+1
-1
No files found.
sparseconvnet/SCN/CUDA/AveragePooling.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/AveragePooling.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#include "RuleBookIterator.h"
...
...
sparseconvnet/SCN/CUDA/BatchNormalization.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/BatchNormalization.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#include <cassert>
...
...
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/BatchwiseMultiplicativeDropout.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
,
Int
NTX
,
Int
NTY
>
...
...
sparseconvnet/SCN/CUDA/Convolution.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/Convolution.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#include "RuleBookIterator.h"
...
...
sparseconvnet/SCN/CUDA/Deconvolution.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/Deconvolution.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#define TACC double
...
...
sparseconvnet/SCN/CUDA/IOLayers.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/IOLayers.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
// Rulebook Format
...
...
sparseconvnet/SCN/CUDA/LeakyReLU.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/LeakyReLU.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/MaxPooling.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/MaxPooling.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#include "RuleBookIterator.h"
...
...
sparseconvnet/SCN/CUDA/NetworkInNetwork.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#include <algorithm>
...
...
sparseconvnet/SCN/CUDA/RuleBookIterator.h
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
#ifndef CUDA_RULEBOOKITERATOR_H
...
...
sparseconvnet/SCN/CUDA/SparseToDense.cpp
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
template
<
typename
T
>
...
...
sparseconvnet/SCN/CUDA/SparseToDense.cu
View file @
dcd1428d
// Copyright 2016-present, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the license found in the
// This source code is licensed under the
BSD-style
license found in the
// LICENSE file in the root directory of this source tree.
// NTX must be >=2 so r is filled properly
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment