Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for in_scf_scope (0.1 sec)

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

        return value
    
      def exit_scope(self):
        self.symbols.pop()
        self.curr_table = self.symbols[len(self.symbols) - 1]
        if self.scf_scope > 0:
          self.scf_scope -= 1
    
      def in_scf_scope(self):
        return self.scf_scope > 0
    
      def lookup(self, name):
        curr_idx = len(self.symbols) - 1
        while curr_idx >= 0 and (name not in self.symbols[curr_idx]['symbols']):
          curr_idx -= 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top