47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
// Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// The file has been adapted from pytorch project
|
|
// Licensed under BSD-style license -
|
|
// https://github.com/pytorch/pytorch/blob/main/LICENSE
|
|
|
|
#pragma once
|
|
|
|
#define C10_CONCATENATE_IMPL(s1, s2) s1##s2
|
|
#define C10_CONCATENATE(s1, s2) C10_CONCATENATE_IMPL(s1, s2)
|
|
|
|
#define C10_MACRO_EXPAND(args) args
|
|
|
|
#define C10_STRINGIZE_IMPL(x) #x
|
|
#define C10_STRINGIZE(x) C10_STRINGIZE_IMPL(x)
|
|
|
|
#ifdef __COUNTER__
|
|
#define C10_UID __COUNTER__
|
|
#define C10_ANONYMOUS_VARIABLE(str) C10_CONCATENATE(str, __COUNTER__)
|
|
#else
|
|
#define C10_UID __LINE__
|
|
#define C10_ANONYMOUS_VARIABLE(str) C10_CONCATENATE(str, __LINE__)
|
|
#endif
|
|
|
|
#if defined(__CUDACC__) || defined(__HIPCC__)
|
|
// Designates functions callable from the host (CPU) and the device (GPU)
|
|
#define C10_HOST_DEVICE __host__ __device__
|
|
#define C10_DEVICE __device__
|
|
#define C10_HOST __host__
|
|
#else
|
|
#define C10_HOST_DEVICE
|
|
#define C10_HOST
|
|
#define C10_DEVICE
|
|
#endif
|