Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for internalError (0.41 sec)

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

          return absl::InternalError(
              "DepthwiseConv2D doesn't get any benefit of quantization in XLA.");
        } else if (function_name.contains("conv2d")) {
          // For Conv2D, the channel dimension must be static to calculate the
          // feature group count.
          if (!HasStaticShapeAtDims(call_op->getOperand(0), /*dims=*/3)) {
            return absl::InternalError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

                                              absl::MakeSpan(exported_names),
                                              context, import_options, &bundle);
      if (!module.status().ok()) {
        return absl::InternalError(absl::StrCat("Failed to import SavedModel: ",
                                                module.status().message()));
      }
    
      mlir::OwningOpRef<mlir::ModuleOp> module_ref = std::move(module).value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        const auto status = quantization::PreprocessAndFreezeGraph(
            module, module.getContext(), session);
        if (!status.ok()) {
          return status_handler.Combine(
              absl::InternalError("Failed to preprocess & freeze TF graph."));
        }
    
        // TODO: b/264218457 - Refactor the component below once StableHLO Quantizer
        // can run DRQ. Temporarily using TF Quantization for StableHLO DRQ.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	ErrorTypeTooMany ErrorType = "FieldValueTooMany"
    	// ErrorTypeInternal is used to report other errors that are not related
    	// to user input.  See InternalError().
    	ErrorTypeInternal ErrorType = "InternalError"
    	// ErrorTypeTypeInvalid is for the value did not match the schema type for that field
    	ErrorTypeTypeInvalid ErrorType = "FieldValueTypeInvalid"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. src/net/http/cgi/host.go

    		Env:    env,
    		Stderr: h.stderr(),
    	}
    	if req.ContentLength != 0 {
    		cmd.Stdin = req.Body
    	}
    	stdoutRead, err := cmd.StdoutPipe()
    	if err != nil {
    		internalError(err)
    		return
    	}
    
    	err = cmd.Start()
    	if err != nil {
    		internalError(err)
    		return
    	}
    	if hook := testHookStartProcess; hook != nil {
    		hook(cmd.Process)
    	}
    	defer cmd.Wait()
    	defer stdoutRead.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        auto func_op = llvm::dyn_cast<func::FuncOp>(
            *module_op->getBodyRegion().getOps().begin());
        if (!func_op) {
          return absl::InternalError("Input MLIR must have only 1 func");
        }
        if (arguments.size() != func_op.getNumArguments()) {
          return absl::InternalError("Input argument has wrong size");
        }
    
        // Convert input xla::Literal arguments to constants, this allows using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top