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
tianlh
LightGBM-DCU
Commits
32ef7603
Commit
32ef7603
authored
Apr 13, 2019
by
Nikita Titov
Committed by
Guolin Ke
Apr 13, 2019
Browse files
added copyright message in files (#2101)
parent
50ce01b5
Changes
95
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
69 additions
and
6 deletions
+69
-6
src/treelearner/data_partition.hpp
src/treelearner/data_partition.hpp
+4
-0
src/treelearner/feature_histogram.hpp
src/treelearner/feature_histogram.hpp
+4
-0
src/treelearner/feature_parallel_tree_learner.cpp
src/treelearner/feature_parallel_tree_learner.cpp
+4
-0
src/treelearner/gpu_tree_learner.cpp
src/treelearner/gpu_tree_learner.cpp
+4
-0
src/treelearner/gpu_tree_learner.h
src/treelearner/gpu_tree_learner.h
+4
-0
src/treelearner/leaf_splits.hpp
src/treelearner/leaf_splits.hpp
+4
-0
src/treelearner/ocl/histogram16.cl
src/treelearner/ocl/histogram16.cl
+7
-2
src/treelearner/ocl/histogram256.cl
src/treelearner/ocl/histogram256.cl
+7
-2
src/treelearner/ocl/histogram64.cl
src/treelearner/ocl/histogram64.cl
+7
-2
src/treelearner/parallel_tree_learner.h
src/treelearner/parallel_tree_learner.h
+4
-0
src/treelearner/serial_tree_learner.cpp
src/treelearner/serial_tree_learner.cpp
+4
-0
src/treelearner/serial_tree_learner.h
src/treelearner/serial_tree_learner.h
+4
-0
src/treelearner/split_info.hpp
src/treelearner/split_info.hpp
+4
-0
src/treelearner/tree_learner.cpp
src/treelearner/tree_learner.cpp
+4
-0
src/treelearner/voting_parallel_tree_learner.cpp
src/treelearner/voting_parallel_tree_learner.cpp
+4
-0
No files found.
src/treelearner/data_partition.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_DATA_PARTITION_HPP_
#define LIGHTGBM_TREELEARNER_DATA_PARTITION_HPP_
...
...
src/treelearner/feature_histogram.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_FEATURE_HISTOGRAM_HPP_
#define LIGHTGBM_TREELEARNER_FEATURE_HISTOGRAM_HPP_
...
...
src/treelearner/feature_parallel_tree_learner.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <cstring>
#include <vector>
...
...
src/treelearner/gpu_tree_learner.cpp
View file @
32ef7603
/*!
* Copyright (c) 2017 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifdef USE_GPU
#include "gpu_tree_learner.h"
...
...
src/treelearner/gpu_tree_learner.h
View file @
32ef7603
/*!
* Copyright (c) 2017 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_GPU_TREE_LEARNER_H_
#define LIGHTGBM_TREELEARNER_GPU_TREE_LEARNER_H_
...
...
src/treelearner/leaf_splits.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_LEAF_SPLITS_HPP_
#define LIGHTGBM_TREELEARNER_LEAF_SPLITS_HPP_
...
...
src/treelearner/ocl/histogram16.cl
View file @
32ef7603
//
this
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
//
or
included
in
a
C++11
source
file
as
a
string
literal
/*!
*
Copyright
(
c
)
2017
Microsoft
Corporation.
All
rights
reserved.
*
Licensed
under
the
MIT
License.
See
LICENSE
file
in
the
project
root
for
license
information.
*
*
\brief
This
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
*
or
included
in
a
C++11
source
file
as
a
string
literal.
*/
#
ifndef
__OPENCL_VERSION__
//
If
we
are
including
this
file
in
C++,
//
the
entire
source
file
following
(
except
the
last
#
endif
)
will
become
...
...
src/treelearner/ocl/histogram256.cl
View file @
32ef7603
//
this
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
//
or
included
in
a
C++11
source
file
as
a
string
literal
/*!
*
Copyright
(
c
)
2017
Microsoft
Corporation.
All
rights
reserved.
*
Licensed
under
the
MIT
License.
See
LICENSE
file
in
the
project
root
for
license
information.
*
*
\brief
This
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
*
or
included
in
a
C++11
source
file
as
a
string
literal.
*/
#
ifndef
__OPENCL_VERSION__
//
If
we
are
including
this
file
in
C++,
//
the
entire
source
file
following
(
except
the
last
#
endif
)
will
become
...
...
src/treelearner/ocl/histogram64.cl
View file @
32ef7603
//
this
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
//
or
included
in
a
C++11
source
file
as
a
string
literal
/*!
*
Copyright
(
c
)
2017
Microsoft
Corporation.
All
rights
reserved.
*
Licensed
under
the
MIT
License.
See
LICENSE
file
in
the
project
root
for
license
information.
*
*
\brief
This
file
can
either
be
read
and
passed
to
an
OpenCL
compiler
directly,
*
or
included
in
a
C++11
source
file
as
a
string
literal.
*/
#
ifndef
__OPENCL_VERSION__
//
If
we
are
including
this
file
in
C++,
//
the
entire
source
file
following
(
except
the
last
#
endif
)
will
become
...
...
src/treelearner/parallel_tree_learner.h
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_PARALLEL_TREE_LEARNER_H_
#define LIGHTGBM_TREELEARNER_PARALLEL_TREE_LEARNER_H_
...
...
src/treelearner/serial_tree_learner.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include "serial_tree_learner.h"
#include <LightGBM/network.h>
...
...
src/treelearner/serial_tree_learner.h
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_SERIAL_TREE_LEARNER_H_
#define LIGHTGBM_TREELEARNER_SERIAL_TREE_LEARNER_H_
...
...
src/treelearner/split_info.hpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#ifndef LIGHTGBM_TREELEARNER_SPLIT_INFO_HPP_
#define LIGHTGBM_TREELEARNER_SPLIT_INFO_HPP_
...
...
src/treelearner/tree_learner.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/tree_learner.h>
#include "gpu_tree_learner.h"
...
...
src/treelearner/voting_parallel_tree_learner.cpp
View file @
32ef7603
/*!
* Copyright (c) 2016 Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <LightGBM/utils/common.h>
#include <cstring>
...
...
Prev
1
2
3
4
5
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