Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 29, 2022
1 parent bbd88a5 commit 8ccbd69
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
5 changes: 2 additions & 3 deletions perception/tensorrt_yolo/lib/src/plugins/mish.cu
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@
* SOFTWARE.
*/

#include <stdio.h>
#include <mish.hpp>

#include <cuda_runtime_api.h>

#include <mish.hpp>
#include <stdio.h>

namespace yolo
{
Expand Down
12 changes: 6 additions & 6 deletions perception/tensorrt_yolo/lib/src/plugins/nms.cu
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@
* DEALINGS IN THE SOFTWARE.
*/

#include <cuda.h>
#include <thrust/device_ptr.h>
#include <thrust/execution_policy.h>
#include <thrust/gather.h>
#include <thrust/sequence.h>

#include <algorithm>
#include <cmath>
#include <cstdint>
#include <iostream>
#include <stdexcept>
#include <vector>

#include <cuda.h>
#include <thrust/device_ptr.h>
#include <thrust/execution_policy.h>
#include <thrust/gather.h>
#include <thrust/sequence.h>

#if CUDART_VERSION >= 11000
#include <cub/device/device_radix_sort.cuh>
#include <cub/iterator/counting_input_iterator.cuh>
Expand Down
8 changes: 4 additions & 4 deletions perception/tensorrt_yolo/lib/src/plugins/yolo_layer.cu
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
* DEALINGS IN THE SOFTWARE.
*/

#include <stdio.h>
#include <stdexcept>
#include <cuda_utils.hpp>
#include <yolo_layer.hpp>

#include <math_constants.h>
#include <stdio.h>

#include <cuda_utils.hpp>
#include <yolo_layer.hpp>
#include <stdexcept>

namespace yolo
{
Expand Down

0 comments on commit 8ccbd69

Please sign in to comment.