コード例 #1
0
def binary_map(context, a, b, out):
    if out is not None:
        return out

    return promote(context, a, b)
コード例 #2
0
ファイル: numpyufuncs.py プロジェクト: hfeeki/numba
def binary_map(context, a, b, out):
    if out is not None:
        return out

    return promote(context, a, b)
コード例 #3
0
ファイル: numpyufuncs.py プロジェクト: ASPP/numba
def binary_map(typesystem, a, b, out):
    if out is not None:
        return out

    return promote(typesystem, a, b)