Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for concatenation (0.19 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %0 = arith.constant dense<1.0> : tensor<1x2xf32>
      %1 = "tfl.concatenation"(%arg0, %0) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2xf32>
      func.return %1 : tensor<2x2xf32>
    
    // CHECK-NEXT: %[[cst:.*]] = arith.constant dense<1.000000e+00> : tensor<1x2xf32>
    // CHECK-NEXT: %[[cc:.*]] = "tfl.concatenation"(%arg0, %[[cst]])
    // CHECK-NEXT: return %[[cc]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      then_func.setPrivate();
      symbol_table.insert(then_func);
      mlir::OpBuilder func_builder =
          mlir::OpBuilder::atBlockBegin(then_func.addEntryBlock());
    
      // This must match the concatenation order in 'operands' above.
      IRMapping ir_map;
      int pos = 0;
      for (auto orig : orig_parent_func.getArguments())
        ir_map.map(orig, then_func.getArgument(pos++));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
      //
      // Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
      // Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
      //   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. cmd/iam.go

    // AssumeRoleWithCertificate case, the "virtual" parent user is the value of the
    // `Subject.CommonName` field. For the OIDC (without RoleARN) case the "virtual"
    // parent is derived as a concatenation of the `sub` and `iss` fields. The
    // policies applicable to the STS credential are associated with this "virtual"
    // parent.
    //
    // When a policyName is given to this function, the policy association is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    				slotIdx++
    			}
    		}
    		start = false
    	}
    }
    
    // funcNamePiecesForPrint returns the function name for printing to the user.
    // It returns three pieces so it doesn't need an allocation for string
    // concatenation.
    func funcNamePiecesForPrint(name string) (string, string, string) {
    	// Replace the shape name in generic function with "...".
    	i := bytealg.IndexByteString(name, '[')
    	if i < 0 {
    		return name, "", ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
    	//
    	// Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
    	// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    func logRule(s string) {
    	if ruleFile == nil {
    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/reflect/type.go

    func (f StructField) IsExported() bool {
    	return f.PkgPath == ""
    }
    
    // A StructTag is the tag string in a struct field.
    //
    // By convention, tag strings are a concatenation of
    // optionally space-separated key:"value" pairs.
    // Each key is a non-empty string consisting of non-control
    // characters other than space (U+0020 ' '), quote (U+0022 '"'),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top