Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _substitute_impl_function_name_template (0.33 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

      snake_case = ''.join(['_' + i.lower() if i.isupper() else i for i in s
                           ]).lstrip('_')
      return snake_case.replace('mat_mul', 'matmul').replace('bias_add', 'bias')
    
    
    def _substitute_impl_function_name_template(module: str) -> str:
      """Generates the op-specific implementation function name."""
      compiled_regex = re.compile(r'GenerateImplFunctionName\(([\w\s]+)\)')
      while True:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top