Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,622 for variable1 (1.36 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/sink_in_invariant_ops.mlir

      attributes {tf._input_shapes = [#tf_type.shape<1x3>, #tf_type.shape<*>], tf.signature.is_stateful} {
      // CHECK-DAG: [[handle1:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable1"}>
      // CHECK-DAG: [[handle2:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable2"}>
      // CHECK: "tf.ReadVariableOp"([[handle1]])
      // CHECK: "tf.ReadVariableOp"([[handle2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/variable.h

      // Variable is movable, but not copyable.
      Variable(Variable&& other) = default;
      Variable& operator=(Variable&& other) = default;
    
      ~Variable() override;
    
     private:
      Variable(ImmediateExecutionContext* ctx, DataType dtype, TensorShape shape,
               absl::optional<std::string> name, ImmediateTensorHandlePtr handle);
      Variable(const Variable& variable) = delete;
      Variable& operator=(const Variable&) = delete;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/variable.cc

    namespace tensorflow {
    
    Variable::Variable(ImmediateExecutionContext* ctx, DataType dtype,
                       TensorShape shape, absl::optional<std::string> name,
                       ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)),
          name_(name.has_value() ? *name : "Variable"),
          dtype_(dtype),
          shape_(shape),
          ctx_(ctx) {}
    
    Variable::~Variable() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 08 20:55:40 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  4. pkg/test/env/variable.go

    package env
    
    import "os"
    
    // Variable is a wrapper for an environment variable.
    type Variable string
    
    // Name of the environment variable.
    func (e Variable) Name() string {
    	return string(e)
    }
    
    // Value of the environment variable.
    func (e Variable) Value() string {
    	return os.Getenv(e.Name())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/make_test_graphs.py

    def tfvariable(_):
      x = variables.Variable([1000.0], name='x', shape=[1])
      old_x = x.value()
      with ops.control_dependencies([old_x]):
        new_x = x.assign_add([42.0])
      array_ops_stack.stack([old_x, new_x], name='result')
    
    
    def tfvariable_sequential_updates(_):
      x = variables.Variable(1.0, name='x')
      y = variables.Variable(1.0, name='y')
      updates = control_flow_ops.no_op()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/variable.go

    // VariableApplyConfiguration represents an declarative configuration of the Variable type for use
    // with apply.
    type VariableApplyConfiguration struct {
    	Name       *string `json:"name,omitempty"`
    	Expression *string `json:"expression,omitempty"`
    }
    
    // VariableApplyConfiguration constructs an declarative configuration of the Variable type for use with
    // apply.
    func Variable() *VariableApplyConfiguration {
    	return &VariableApplyConfiguration{}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/variable.go

    // VariableApplyConfiguration represents an declarative configuration of the Variable type for use
    // with apply.
    type VariableApplyConfiguration struct {
    	Name       *string `json:"name,omitempty"`
    	Expression *string `json:"expression,omitempty"`
    }
    
    // VariableApplyConfiguration constructs an declarative configuration of the Variable type for use with
    // apply.
    func Variable() *VariableApplyConfiguration {
    	return &VariableApplyConfiguration{}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/variable.mlir

      // CHECK: "tfl.pseudo_const"() <{value = dense<0> : tensor<3x2xi32>}> {tfl.is_variable} : () -> tensor<3x2xi32>
      %0 = "tfl.pseudo_const"() {value = dense<0> : tensor<3x2xi32>, tfl.is_variable} : () -> tensor<3x2xi32> loc("variable")
      func.return %0 : tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 470 bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

    /**
     * A variable library entry.
     */
    public class Variable extends AbstractLibrary {
        public Variable(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromVariablePath((String) node.attribute("sourcepath")));
        }
    
        public Variable(FileReference library) {
            super(library);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "BUILD_ID",
        // Used by some tests to be ignored in specific build
        "BUILD_TYPE_ID",
        "JPROFILER_HOME",
    
        "LANG",
        "LANGUAGE",
        // It is possible to have many LC_xxx variables for different aspects of the locale. However, LC_ALL overrides all of them, and it is what CI uses.
        "LC_ALL",
        "LC_CTYPE",
    
        "JDK_10",
        "JDK_10_0",
        "JDK_10_0_x64",
        "JDK_10_x64",
        "JDK_11",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top