kern.cu 752 字节
Newer Older
1
/**
2
 * \file dnn/src/cuda/check_non_finite/kern.cu
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
 *
 * Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 */
#include "src/common/reduce_helper.h"

#include "megdnn/dtype.h"
#include "src/cuda/reduce_helper.cuh"

namespace megdnn {
namespace cuda {

#define COMMA ,

21
INST_REDUCE(reduce::CheckNonFiniteOp<dt_float32 COMMA dt_int32 COMMA dt_int32>, false);
22 23 24 25 26 27

#undef COMMA
} // namespace cuda
} // namespace megdnn

// vim: ft=cpp syntax=cpp.doxygen