Skip to content
Snippets Groups Projects
Commit 5420ee02 authored by Bhatu's avatar Bhatu
Browse files

Typo fix in seedot

parent 818b8c2c
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ class TypeCast(IntExpr):
class IntBop(IntExpr):
def __init__(self, e1:IntExpr, op:Op.Op, e2:IntExpr):
assert(op in Op.Op.op_list('+ - * / << >> & | ^'))
assert(op in Op.Op.op_list('+ - * / << >> & | ^ =='))
self.e1 = e1
self.op = op
self.e2 = e2
......
......@@ -942,7 +942,7 @@ class IRBuilderCSF(IRBuilderAST):
assert(AST.Operators.findConvOutputImgSize(d_prime_tilde, pad_d_tr_total, FD, stride_d_tr) == D)
returnExpr = self.getTempVar()
comment = IR.Comment(expr_1.idf + ' #T ' + expr2.idf + ', convDim = ' + str(convDim))
comment = IR.Comment(expr_1.idf + ' #T ' + expr_2.idf + ', convDim = ' + str(convDim))
funcCallArgsDict = OrderedDict()
funcCallArgsDict[IR.Int(N, 32)] = "N"
if convDim==3:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment