Skip to content
Snippets Groups Projects
Commit 1e9828af authored by shingjan's avatar shingjan
Browse files

Fixed typo and error msg

parent 9bf04484
No related branches found
No related tags found
No related merge requests found
...@@ -5,21 +5,21 @@ ...@@ -5,21 +5,21 @@
class DFGNode(object): class DFGNode(object):
def __init__(self, onnx_node): def __init__(self, onnx_node):
#self.onnx_node = onnx_node # self.onnx_node = onnx_node
self.name = onnx_node.name self.name = onnx_node.name
self.op_type = onnx_node.op_type self.op_type = onnx_node.op_type
self.input = onnx_node.input self.input = onnx_node.input
self.output = onnx_node.output self.output = onnx_node.output
def codegen(self, tensors): def codegen(self, tensors):
return "Not Implemented." return "\n***Not Implemented***\n"
def hpvm_codegen(self, tensors): def hpvm_codegen(self, tensors):
return "Not Implemented." return "\n***Not Implemented***\n"
''' '''
Element wise operatos that is for activation function Element wise operators that is for activation function
e.g. HardSigmoid, LeakyRelu, PRelu, Pow, Reciprocal, e.g. HardSigmoid, LeakyRelu, PRelu, Pow, Reciprocal,
Relu, Selu, Sigmoid, Softplus, Sqrt, ThresholdedRelu, Relu, Selu, Sigmoid, Softplus, Sqrt, ThresholdedRelu,
Abs, Ceil, Elu, Floor, Neg Abs, Ceil, Elu, Floor, Neg
......
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