#include <cmath>
#include <random>
#include <cstdint>
#include <iostream>
#include "ktfop.h"
int main()
{
using namespace ktfop;
size_t length = 4;
int64_t input0Array[] = {5, 7, 15, 3};
int64_t input1Array[] = {8, 6, 20, 0};
int64_t *input0 = input0Array;
int64_t *input1 = input1Array;
auto *output = new bool[4];
int ret = -1;
//调用Greater算子,结果存储于output数组,第一个参数及第二个参数均为数组
ret = Greater(input0, input1, output, length);
std::cout << "output: [";
for (int i = 0; i < 4; ++i) {
std::cout << output[i];
if (i < 3) {
std::cout << ", ";
}
}
std::cout << "]" << std::endl;
//输入空指针,打印日志"ERROR Parameter verification failed for the Greater Op."
ret = Greater(static_cast<int64_t *>(nullptr), input1, output, length);
//输入空指针,打印日志"ERROR Parameter verification failed for the Greater Op."
ret = Greater(input0, input1, nullptr, length);
// right
//调用Greater算子,结果存储于output数组,第一个参数为数组,第二个参数为一个元素
ret = Greater(input0, input1[0], output, length);
//输入空指针,打印日志"ERROR Parameter verification failed for the Greater Op."
ret = Greater(static_cast<int64_t *>(nullptr), input1[0], output, length);
// left
//调用Greater算子,结果存储于output数组,第一个参数为一个元素,第二个参数为数组
ret = Greater(input0[0], input1, output, length);
//输入空指针,打印日志"ERROR Parameter verification failed for the Greater Op."
ret = Greater(input0[0], static_cast<int64_t *>(nullptr), output, length);
delete[] output;
}