Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,935 for parsable (0.2 sec)

  1. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // been converted to constants, all the assign ops are gone, etc.). However,
    // TFLite has these variable tensors semantics. So the variable mapping from TF
    // to TFLite is actually broken here, we sort of hard-code the variable tensors
    // based on the actual ops using them, such as unidirectional_sequence_lstm.
    //
    // MLIRConverter also benefits from lots of typical compiler optimization like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

        return %result : tensor<1x1xf32>
      }
    }
    
    // -----
    // Variable tensor for host can still be used.
    //
    // CHECK-LABEL:  func.func @serving_default(%arg0: tensor<1x3xf32>) -> (tensor<1x1xf32>, tensor<1x1xf32>) {
    // CHECK:  "tf.VarHandleOp"
    // CHECK-NOT:  [[VARIABLE:%.*]] = "tf.ReadVariableOp"
    // CHECK-NEXT:  [[KEY:%.*]], [[FUTURE:%.*]] = "tf.IfrtLoadVariable"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeResolver.java

            checkArgument(!variable.equalsType(type), "Type variable %s bound to itself", variable);
            builder.put(variable, type);
          }
          return new TypeTable(builder.buildOrThrow());
        }
    
        final Type resolve(TypeVariable<?> var) {
          TypeTable unguarded = this;
          TypeTable guarded =
              new TypeTable() {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue50372.go

            for range s {}
            for i = range s {}
            for i, j = range s {} // ERROR "range over .* permits only one iteration variable"
            for i, j, k = range s {} // ERROR "range over .* permits only one iteration variable"
            for i, j, k, l = range s {} // ERROR "range over .* permits only one iteration variable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 959 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stmt.go

    		// If lhs exists, declare a corresponding variable in the case-local scope.
    		if lhs != nil {
    			// spec: "The TypeSwitchGuard may include a short variable declaration.
    			// When that form is used, the variable is declared at the beginning of
    			// the implicit block in each clause. In clauses with a case listing
    			// exactly one type, the variable has that type; otherwise, the variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model.cc

    }
    
    // Looks up the variable handle that provides input to node with node_name,
    // and returns the handle name if the handle corresponds to a variable that we
    // want to freeze (i.e. its name is contained in variable_node_names). If there
    // is no such handle in the graph (or we do not want to save that variable)
    // then NotFound error is returned.
    StatusOr<string> GetHandleNameIfNeedsToFreeze(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.h

    // contains maps keyed by the node number of the SavedObjectGraph, and map to an
    // object of the corresponding type. So, if node 2 in the object graph is a
    // variable, PartiallyRevivedObjects.variables[2] exists, and corresponds to a
    // tensorflow::Variable object. The only exception to this is the
    // "signatures_map", which is keyed by the "signature" key
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 23:21:36 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/temp.go

    }
    
    // stackBufAddr returns the expression &tmp, where tmp is a newly
    // allocated temporary variable of type [len]elem. This variable is
    // initialized, and elem must not contain pointers.
    func stackBufAddr(len int64, elem *types.Type) *ir.AddrExpr {
    	if elem.HasPointers() {
    		base.FatalfAt(base.Pos, "%v has pointers", elem)
    	}
    	tmp := typecheck.TempAt(base.Pos, ir.CurFunc, types.NewArray(elem, len))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/docker-bake.hcl

    variable "TAGS" {
      default = "latest"
    }
    
    variable "HUB" {
      default = "localhost:5000"
    }
    
    variable "PLATFORMS" {
      default = "linux/amd64,linux/arm64"
    }
    
    images = [
      // Productpage
      {
        name   = "examples-bookinfo-productpage-v1"
        source = "productpage"
      },
      {
        name = "examples-bookinfo-productpage-v-flooding"
        args = {
          flood_factor = 100
        }
        source = "productpage"
      },
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/spec/range_int.go

    		_ = mi
    	}
    }
    
    func _[T int | string](x T) {
    	for range x /* ERROR "cannot range over x (variable of type T constrained by int | string): no core type" */ {
    	}
    }
    
    func _[T int | int64](x T) {
    	for range x /* ERROR "cannot range over x (variable of type T constrained by int | int64): no core type" */ {
    	}
    }
    
    func _[T ~int](x T) {
    	for range x { // ok
    	}
    }
    
    func issue65133() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top