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
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
sparseconvnet/SCN/CUDA/UnPooling.cpp
sparseconvnet/SCN/CUDA/UnPooling.cpp
+1
-1
sparseconvnet/SCN/CUDA/UnPooling.cu
sparseconvnet/SCN/CUDA/UnPooling.cu
+1
-1
sparseconvnet/SCN/Metadata/32bits.h
sparseconvnet/SCN/Metadata/32bits.h
+1
-1
sparseconvnet/SCN/Metadata/64bits.h
sparseconvnet/SCN/Metadata/64bits.h
+1
-1
sparseconvnet/SCN/Metadata/ActivePoolingRules.h
sparseconvnet/SCN/Metadata/ActivePoolingRules.h
+1
-1
sparseconvnet/SCN/Metadata/ConvolutionRules.h
sparseconvnet/SCN/Metadata/ConvolutionRules.h
+1
-1
sparseconvnet/SCN/Metadata/FullConvolutionRules.h
sparseconvnet/SCN/Metadata/FullConvolutionRules.h
+1
-1
sparseconvnet/SCN/Metadata/IOLayersRules.h
sparseconvnet/SCN/Metadata/IOLayersRules.h
+1
-1
sparseconvnet/SCN/Metadata/Metadata.cpp
sparseconvnet/SCN/Metadata/Metadata.cpp
+1
-1
sparseconvnet/SCN/Metadata/Metadata.h
sparseconvnet/SCN/Metadata/Metadata.h
+1
-1
sparseconvnet/SCN/Metadata/PermutohedralSubmanifoldConvolutionRules.h
...t/SCN/Metadata/PermutohedralSubmanifoldConvolutionRules.h
+1
-1
sparseconvnet/SCN/Metadata/RandomizedStrideRules.h
sparseconvnet/SCN/Metadata/RandomizedStrideRules.h
+1
-1
sparseconvnet/SCN/Metadata/RectangularRegions.h
sparseconvnet/SCN/Metadata/RectangularRegions.h
+1
-1
sparseconvnet/SCN/Metadata/SubmanifoldConvolutionRules.h
sparseconvnet/SCN/Metadata/SubmanifoldConvolutionRules.h
+1
-1
sparseconvnet/SCN/cuda.cu
sparseconvnet/SCN/cuda.cu
+1
-1
sparseconvnet/SCN/misc/drawCurve.cpp
sparseconvnet/SCN/misc/drawCurve.cpp
+1
-1
sparseconvnet/SCN/pybind.cpp
sparseconvnet/SCN/pybind.cpp
+1
-1
sparseconvnet/SCN/sparseconvnet.h
sparseconvnet/SCN/sparseconvnet.h
+1
-1
sparseconvnet/SCN/sparseconvnet_cpu.cpp
sparseconvnet/SCN/sparseconvnet_cpu.cpp
+1
-1
sparseconvnet/SCN/sparseconvnet_cuda.cpp
sparseconvnet/SCN/sparseconvnet_cuda.cpp
+1
-1
No files found.
sparseconvnet/SCN/CUDA/UnPooling.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/UnPooling.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/Metadata/32bits.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.
#include <array>
...
...
sparseconvnet/SCN/Metadata/64bits.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.
#include <array>
...
...
sparseconvnet/SCN/Metadata/ActivePoolingRules.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 ACTIVEPOOLING_H
...
...
sparseconvnet/SCN/Metadata/ConvolutionRules.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 CONVOLUTIONRULES_H
...
...
sparseconvnet/SCN/Metadata/FullConvolutionRules.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 FULLDECONVOLUTIONRULES_H
...
...
sparseconvnet/SCN/Metadata/IOLayersRules.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 INPUTLAYER_H
...
...
sparseconvnet/SCN/Metadata/Metadata.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 "Metadata.h"
...
...
sparseconvnet/SCN/Metadata/Metadata.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 Metadata_H
...
...
sparseconvnet/SCN/Metadata/PermutohedralSubmanifoldConvolutionRules.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 PERMUTOHEDRALSUBMANIFOLDCONVOLUTIONRULES_H
...
...
sparseconvnet/SCN/Metadata/RandomizedStrideRules.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 RSRRULES_H
...
...
sparseconvnet/SCN/Metadata/RectangularRegions.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 RECTANGULARREGIONS_H
...
...
sparseconvnet/SCN/Metadata/SubmanifoldConvolutionRules.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 SUBMANIFOLDCONVOLUTIONRULES_H
...
...
sparseconvnet/SCN/cuda.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 <ATen/ATen.h>
...
...
sparseconvnet/SCN/misc/drawCurve.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.
// Helper function to draw pen strokes with
...
...
sparseconvnet/SCN/pybind.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 <torch/extension.h>
...
...
sparseconvnet/SCN/sparseconvnet.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.
#include "Metadata/Metadata.h"
...
...
sparseconvnet/SCN/sparseconvnet_cpu.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.
#define ENABLE_OPENMP YES
...
...
sparseconvnet/SCN/sparseconvnet_cuda.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.
#define ENABLE_OPENMP YES
...
...
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