Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __builtins__ (0.08 sec)

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

          return {TFRTypes.TFR_BUILTIN_FUNC}, name_str
        if name_str in ns:
          ns_val = ns[name_str]
          return {type(ns_val)}, ns_val
        if name_str in __builtins__:
          return {TFRTypes.PY_BUILTIN_FUNC}, __builtins__[name_str]
        # This name is not in the namespace because the autograph transformation
        # is not backloaded into Python.
        if name_str == 'ag__':
          return {type(AG_MODULE)}, AG_MODULE
    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