Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,621 for variable2 (0.17 sec)

  1. tensorflow/compiler/aot/codegen_test.cc

      fetch->set_name("myfetch");
      tf2xla::Variable* variable = config.add_variable();
      variable->set_node_name("myvar_readonly");
      variable->mutable_shape()->add_dim()->set_size(1);
      variable->set_type(DT_FLOAT);
      variable->set_readonly(true);
      tf2xla::Variable* variable2 = config.add_variable();
      variable2->set_node_name("myvar");
      variable2->mutable_shape()->add_dim()->set_size(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

      }
    
      @Test
      @TestMetadata("variable.kt")
      public void testVariable() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/variable.kt");
      }
    
      @Test
      @TestMetadata("variable2.kt")
      public void testVariable2() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/variable2.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

      }
    
      @Test
      @TestMetadata("variable.kt")
      public void testVariable() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/variable.kt");
      }
    
      @Test
      @TestMetadata("variable2.kt")
      public void testVariable2() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/variable2.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top