Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetConstOpName (0.28 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        return CreateInitializerFunc(module_op);
      }
    }
    
    // Retrieve the ConstOp's name from its loc. Returns "const" if a name cannot be
    // produced from its loc.
    std::string GetConstOpName(TF::ConstOp const_op) {
      if (const std::string name = GetNameFromLoc(const_op.getLoc());
          !name.empty()) {
        // Replace any occurrences of ";" to "_". ";" is an illegal character to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top