"...resnet50_tensorflow.git" did not exist on "0a79175bc913bc2689efe1a3a69b66cc66a0381c"
common.cuh 183 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

template <class T1, class T2>
struct is_same
{
    static const bool value = false;
};

template <class T>
struct is_same<T, T>
{
    static const bool value = true;
};