"docs/git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "506e5de8febd65761d04f1f53e11d4e6bc3a31c2"
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;
};