Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,622 for variable1 (0.18 sec)

  1. tensorflow/compiler/jit/xla_launch_util_test.cc

    absl::flat_hash_map<int, const Tensor*> GetVariableSnapshots(
        const std::vector<VariableInfo>& variables) {
      absl::flat_hash_map<int, const Tensor*> variable_snapshots;
      for (int i = 0; i < variables.size(); i++) {
        variable_snapshots[variables[i].index()] = variables[i].var()->tensor();
      }
      return variable_snapshots;
    }
    
    class PjRtExecutionUtilTest : public OpsTestBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/ops/variable_ops.h

    // Executes an AssignVariableOp using `ctx`, assigning the variable associated
    // with `variable_handle` with `value`. `dtype` must be the datatype of the
    // underlying variable for `variable_handle`. Note that it is illegal to assign
    // a variable to a Tensor with a different dtype than what the variable was
    // created with.
    Status AssignVariable(ImmediateExecutionContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	// compatibility version of the EnvSet.
    	//
    	// For example, to configure a CEL environment with an "object" variable bound to a
    	// resource kind, first create a DeclType from the groupVersionKind of the resource and then
    	// populate a VersionedOptions with the variable and the type:
    	//
    	//    schema := schemaResolver.ResolveSchema(groupVersionKind)
    	//    objectType := apiservercel.SchemaDeclType(schema, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/state.go

    // later values and any required system variables defined.
    //
    // If env is nil, cleanEnv copies the environment from os.Environ().
    func cleanEnv(env []string, pwd string) []string {
    	// There are some funky edge-cases in this logic, especially on Windows (with
    	// case-insensitive environment variables and variables with keys like "=C:").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h

    // Creates a pass that adds ops which perform formatting on variables at
    // run-time according to compilation result.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUVariableRuntimeReformattingPass();
    
    // Creates a pass that merges device variable reads/updates into the surrounded
    // TPUExecute node. This allows the execute node to perform in-place variable
    // updates.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // the node that saves the variables, after the ModuleOp has been exported as
    // GraphDef.
    std::unique_ptr<OperationPass<ModuleOp>> CreateMergeSaveFunctionOpsToMainPass();
    
    // Creates a pass that "unfreezes" ConstOps into variables. Each ConstOp's use
    // will be replaced by a VarHandleOp -> ReadVariableOp pattern. The newly
    // created variables will be initialized in the session initializer function via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    // that can be used for creating a CEL env containing variables of declType.
    // declType can be nil, in which case the variables will be of DynType.
    func createVariableOpts(declType *apiservercel.DeclType, variables ...string) []cel.EnvOption {
    	opts := make([]cel.EnvOption, 0, len(variables))
    	t := cel.DynType
    	if declType != nil {
    		t = declType.CelType()
    	}
    	for _, v := range variables {
    		opts = append(opts, cel.Variable(v, t))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. cluster/gce/windows/README-GCE-Windows-kube-up.md

    are setup based on `cluster/gce/config-test.sh`), also enables some debugging
    features such as SSH access on the Windows nodes.
    
    Please make sure you set the environment variables properly following the
    instructions in the previous section.
    
    First, set the following environment variables which are required for
    controlling the number of Linux and Windows nodes in the cluster and for
    enabling IP aliases (which are required for Windows pod routing). At least one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. test-site/activator.bat

        echo.
        echo Environment variables ^(read from context^):
        echo JAVA_OPTS          Environment variable, if unset uses ""
        echo SBT_OPTS           Environment variable, if unset uses ""
        echo ACTIVATOR_OPTS     Environment variable, if unset uses ""
        echo.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

    absl::flat_hash_map<int, const Tensor*> GetVariableSnapshots(
        const std::vector<VariableInfo>& variables) {
      absl::flat_hash_map<int, const Tensor*> variable_snapshots;
      for (int i = 0; i < variables.size(); i++) {
        variable_snapshots[variables[i].index()] = variables[i].var()->tensor();
      }
      return variable_snapshots;
    }
    
    class PjRtExecutionUtilGpuTest : public OpsTestBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top