Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for internalError (0.94 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        // checkpoint when fetched.
        saver_def.set_save_tensor_name(absl::StrCat(save_node_name, ":0"));
        return saver_def;
      } else {
        return absl::InternalError(
            absl::StrCat("Failed to create SaverDef. Fields should be either all "
                         "empty strings or all non-empty strings. Got fields: ",
                         absl::StrJoin(fields, ",")));
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        open fun pluginManagement(block: PluginManagementSpec.() -> Unit): Unit =
            internalError()
    
        /**
         * Configures the build script classpath for settings.
         *
         * @see [Settings.getBuildscript]
         */
        @Suppress("unused")
        open fun buildscript(block: ScriptHandlerScope.() -> Unit): Unit =
            internalError()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

      return tsl::StatusOr<T>(tensorflow::CompileToHloGraphAnalysisFailedError());
    }
    absl::StatusOr<int> filtered() { return filtered(kArbitraryIntResult); }
    absl::StatusOr<int> failed() {
      return absl::StatusOr<int>(absl::InternalError("fail"));
    }
    
    TEST(TestUtil, MatchesOk) { ASSERT_THAT(success(), IsOkOrFiltered()); }
    
    TEST(TestUtil, DoesntMatchesFailure) {
      ASSERT_THAT(failed(), Not(IsOkOrFiltered()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

      }
    
      mlir::StatusScopedDiagnosticHandler statusHandler(module->getContext(),
                                                        /*propagate=*/true);
      if (failed(pm.run(*module))) {
        return absl::InternalError("conversion error");
      }
      return absl::OkStatus();
    }
    
    std::vector<std::unique_ptr<tac::TargetHardware>>
    TacModule::InstantiateBackends() {
      std::vector<std::unique_ptr<tac::TargetHardware>> backends;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

      absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
          function_aliases = GetFunctionAliases(src_saved_model_path, tags);
      if (!function_aliases.ok()) {
        return absl::InternalError(absl::StrCat(
            "Failed to get function alias: ", function_aliases.status().message()));
      }
    
      TF_ASSIGN_OR_RETURN(
          OwningOpRef<ModuleOp> module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

                                              absl::MakeSpan(exported_names), &ctx,
                                              import_options, &bundle);
      if (!module_op.status().ok()) {
        return absl::InternalError(absl::StrCat("Failed to import SavedModel: ",
                                                module_op.status().ToString()));
      }
    
      return std::make_pair(std::move(*module_op), std::move(bundle));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

                "tfxla_bridge_v2_tfdialect_to_executor_after"),
            module, llvm::StringRef(), &tf_to_executor);
      }
    
      if (result.failed()) {
        return RecordStatusIfError(
            absl::InternalError("Failed to export from TF Dialect to TF Executor "
                                "Dialect. Read LLVM Pipeline Error"));
      }
    
      tf_dialect_to_executor_dialect_status->GetCell(kExportSuccess)
          ->IncrementBy(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // Gets the quantization method from `op`. It is retrieved from the
    // `kQuantizationMethodAttr` string attribute. Returns
    // `absl::InvalidArgumentError` when the attribute doesn't exist. Returns
    // `absl::InternalError` when parsing the attribute to `Method` failed.
    // `op` must be non-null.
    absl::StatusOr<::stablehlo::quantization::Method> GetQuantizationMethod(
        absl::Nonnull<Operation*> op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    package msg
    
    import (
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	// InternalError defines a diag.MessageType for message "InternalError".
    	// Description: There was an internal error in the toolchain. This is almost always a bug in the implementation.
    	InternalError = diag.NewMessageType(diag.Error, "IST0001", "Internal error: %v")
    
    	// Deprecated defines a diag.MessageType for message "Deprecated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/compress/flate/inflate.go

    type CorruptInputError int64
    
    func (e CorruptInputError) Error() string {
    	return "flate: corrupt input before offset " + strconv.FormatInt(int64(e), 10)
    }
    
    // An InternalError reports an error in the flate code itself.
    type InternalError string
    
    func (e InternalError) Error() string { return "flate: internal error: " + string(e) }
    
    // A ReadError reports an error encountered while reading input.
    //
    // Deprecated: No longer returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top