Skip to content

Commit

Permalink
style: fix python coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
kongroo committed Mar 2, 2021
1 parent 4900849 commit 4a9aeec
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions tests/python/unittest/test_target_codegen_cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def check(t0, t1, factor):

# schedule
s = tvm.te.create_schedule(C.op)
ob, ib = s[C].split(s[C].op.axis[0], nparts=128//factor)
ob, ib = s[C].split(s[C].op.axis[0], nparts=n // factor)
_, iib = s[C].split(ib, factor=factor)
s[C].vectorize(iib)
s[C].bind(ob, tx)
Expand All @@ -538,14 +538,26 @@ def skip(t0, t1):
return True
return False

types_4 = ["float16", "float32", "int8", "uint8", "int16", "uint16", "int32", "uint32", "float64", "int64", "uint64"]
types_4 = [
"float16",
"float32",
"int8",
"uint8",
"int16",
"uint16",
"int32",
"uint32",
"float64",
"int64",
"uint64",
]
types_8 = ["float16", "float32", "int8", "uint8", "int16", "uint16", "int32", "uint32"]
for t0, t1 in [(x, y) for x in types_4 for y in types_4 if not skip(x, y)]:
check(t0, t1, 4)
for t0, t1 in [(x, y) for x in types_8 for y in types_8 if not skip(x, y)]:
check(t0, t1, 8)
check('int8', 'uint8', 16)
check('uint8', 'int8', 16)
check("int8", "uint8", 16)
check("uint8", "int8", 16)


def sched(B):
Expand Down

0 comments on commit 4a9aeec

Please sign in to comment.