Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,622 for variable1 (0.13 sec)

  1. tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/variables/variables.index

    Sean Silva <******@****.***> 1570641721 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 09 18:10:32 UTC 2019
    - 144 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/SimpleV1Model/variables/variables.index

    Monica Song <******@****.***> 1625005850 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 29 22:34:42 UTC 2021
    - 124 bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/variables/variables.index

    Stella Laurenzo <******@****.***> 1574722484 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 25 23:01:01 UTC 2019
    - 284 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/fuzz_generated/const_with_no_value/variables/variables.index

    Mihai Maruseac <******@****.***> 1598912283 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 22:25:33 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/testdata/CyclicModule/variables/variables.index

    Stella Laurenzo <******@****.***> 1574722484 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 25 23:01:01 UTC 2019
    - 205 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/assignments.go

    	if len(newVars) == 0 && !hasErr {
    		check.softErrorf(pos, NoNewVar, "no new variables on left side of :=")
    		return
    	}
    
    	// declare new variables
    	// spec: "The scope of a constant or variable identifier declared inside
    	// a function begins at the end of the ConstSpec or VarSpec (ShortVarDecl
    	// for short variable declarations) and ends at the end of the innermost
    	// containing block."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/legalize-tf-variables.mlir

    // RUN: tf-opt %s -split-input-file -tfl-legalize-variables-tf --cse | FileCheck %s
    
    // Test for case with no session initialize op.
    module attributes {tf_saved_model.semantics} {
      // CHECK-LABEL: serving_default
      func.func @serving_default(%arg0: tensor<1x10xf32> {tf_saved_model.index_path = ["x"]}) ->
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/variable_info_util.cc

        if (variables[a]->var() && variables[b]->var()) {
          return variables[a]->var()->mu() < variables[b]->var()->mu();
        }
    
        // Move all the empty VariableInfo instances to the end.
        return variables[a]->var() != nullptr;
      });
    
      mutex* prev = nullptr;
      for (int i : lock_order) {
        Var* variable = variables[i]->var();
        if (variable == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. test/fixedbugs/issue48558.go

    func _(a, b, c int) {
    	_ = a
    	_ = a, b    // ERROR "assignment mismatch: 1 variable but 2 values"
    	_ = a, b, c // ERROR "assignment mismatch: 1 variable but 3 values"
    
    	_, _ = a // ERROR "assignment mismatch: 2 variables but 1 value"
    	_, _ = a, b
    	_, _ = a, b, c // ERROR "assignment mismatch: 2 variables but 3 values"
    
    	_, _, _ = a    // ERROR "assignment mismatch: 3 variables but 1 value"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/variable_info_util.h

    // Acquires the mutexes for all the variables in `variables` using a
    // deadlock-safe protocol (acquire the mutexes in increasing-address order).
    //
    // `variables` is allowed to contain instances that don't track a resource
    // variable (i.e. variables[i].var() can be null for some i).
    //
    // If the variable is read_only(), only acquires reader locks.
    Status LockVariables(absl::Span<VariableInfo*> variables)
        TF_EXCLUSIVE_LOCK_FUNCTION();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top