Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for visitFrame (0.21 sec)

  1. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

    class OpRegGenImpl(transformer.CodeGenerator):
      """Visit the AST and generate C++ op registration functions."""
    
      def __init__(self, ctx):
        super(OpRegGenImpl, self).__init__(ctx)
        self.ctx = ctx
    
      def visit_Name(self, node):
        return node.id
    
      def visit_Constant(self, node):
        return node.value
    
      def visit_keyword(self, node):
        return node.arg, self.visit(node.value)
    
      def visit_List(self, node):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top