コード例 #1
0
 def less_equal(x, y):
     return topi.less_equal(x, y).astype("int8")
コード例 #2
0
def less_equal_compute(attrs, inputs, output_type, target):
    assert len(inputs) == 2
    return [topi.less_equal(inputs[0], inputs[1])]
コード例 #3
0
ファイル: test_topi_broadcast.py プロジェクト: LANHUIYING/tvm
 def less_equal(x, y):
     return topi.less_equal(x, y).astype("int8")