Files
2026-07-13 12:47:05 +08:00

79 lines
2.9 KiB
C++

/* ******************************************************************************
*
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
* 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.
*
* SPDX-License-Identifier: Apache-2.0
******************************************************************************/
/*
* pairwise_transform.h
*
* Created on: Dec 28, 2015
* Author: agibsonccc
*/
#ifndef PAIRWISE_INT_H_
#define PAIRWISE_INT_H_
#include <helpers/DebugHelper.h>
#include <helpers/shape.h>
#include <loops/legacy_ops.h>
#include <math/templatemath.h>
#include <ops/ops.h>
#include <stdio.h>
#include <system/op_boilerplate.h>
using namespace simdOps;
namespace functions {
namespace pairwise_transforms {
/**
* Transforms involving 2 arrays
*/
template <typename X>
class PairWiseIntTransform {
public:
#ifdef __CUDACC__
template <typename OpType>
static SD_HOST void intermediateShaped(dim3 &launchDims, cudaStream_t *stream, const void *vx,
const sd::LongType *xShapeInfo, const void *vy, const sd::LongType *yShapeInfo,
void *vz, const sd::LongType *zShapeInfo, void *vextraParams);
static SD_HOST void executeCudaShaped(dim3 &launchDims, cudaStream_t *stream, int opNum, const void *x,
const sd::LongType *xShapeInfo, const void *y, const sd::LongType *yShapeInfo,
void *z, const sd::LongType *zShapeInfo, void *extraParams);
#else
static void exec(int opNum, const void *dx, const sd::LongType *xShapeBuffer, const void *y,
const sd::LongType *yShapeBuffer, void *result, const sd::LongType *resultShapeBuffer,
void *extraParams, uint64_t start, uint64_t stop);
template <typename OpType>
static void exec(const void *vx, const sd::LongType *xShapeBuffer, const void *vy, const sd::LongType *yShapeBuffer,
void *vresult, const sd::LongType *resultShapeBuffer, void *vextraParams, uint64_t start,
uint64_t stop);
template <typename OpType>
static void exec(const void *vx, sd::LongType xStride, const void *vy, sd::LongType yStride, void *vresult,
sd::LongType resultStride, void *vextraParams, sd::LongType n, uint64_t start, uint64_t stop);
#endif
};
} // namespace pairwise_transforms
} // namespace functions
#endif /* PAIRWISE_TRANSFORM_H_ */