view src/parallel_execution/compare.c @ 437:2c1b1d56bf1e

Work CUDAbitonicSort by CUDAExecutor
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Sat, 04 Nov 2017 08:30:25 +0900
parents a4507906938c
children
line wrap: on
line source

#include "context.h"

enum Relational compare(struct Node* node1, struct Node* node2) {
    int key1 = node1->key;
    int key2 = node2->key;
    if (key1 == key2) {
        return EQ;
    } else if (key1 < key2) {
        return GT;
    } else {
        return LT;
    }
}