Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDisabledChecks (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

    absl::StatusOr<OwningOpRef<ModuleOp>> DeserializeStablehlo(MLIRContext *context,
                                                               XlaCallModuleOp op) {
      std::vector<std::string> disabled_checks;
      for (auto attr : op.getDisabledChecks().getAsRange<StringAttr>()) {
        disabled_checks.push_back(attr.getValue().str());
      }
      std::vector<std::string> platforms;
      for (auto attr : op.getPlatforms().getAsRange<StringAttr>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      } else {
        // Lazily parse XlaCallModule's embedded HLO module and cache the loader to
        // avoid repeatedly parsing the module.
    
        std::vector<std::string> disabled_checks;
        for (auto attr : op.getDisabledChecks().getAsRange<StringAttr>()) {
          disabled_checks.push_back(attr.getValue().str());
        }
        std::vector<std::string> platforms;
        for (auto attr : op.getPlatforms().getAsRange<StringAttr>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top