Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
azai91 committed Aug 27, 2018
1 parent ebd62bd commit b07262f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions include/mxnet/random_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
* \file random_generator.h
* \brief Parallel random number generator.
*/
#ifndef MXNET_COMMON_RANDOM_GENERATOR_H_
#define MXNET_COMMON_RANDOM_GENERATOR_H_
#ifndef MXNET_RANDOM_GENERATOR_H_
#define MXNET_RANDOM_GENERATOR_H_

#include "./base.h"
#include <random>
#include <new>
#include "./base.h"

#if MXNET_USE_CUDA
#include <curand_kernel.h>
Expand Down Expand Up @@ -209,4 +209,4 @@ class RandGenerator<gpu, double> {
} // namespace random
} // namespace common
} // namespace mxnet
#endif // MXNET_COMMON_RANDOM_GENERATOR_H_
#endif // MXNET_RANDOM_GENERATOR_H_
2 changes: 1 addition & 1 deletion src/common/random_generator.cu
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
* \brief gpu implements for parallel random number generator.
*/

#include <algorithm>
#include <mxnet/random_generator.h>
#include <algorithm>
#include "../operator/mxnet_op.h"

namespace mxnet {
Expand Down

0 comments on commit b07262f

Please sign in to comment.