Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for concatenation (0.18 sec)

  1. tensorflow/compiler/mlir/lite/utils/string_utils.h

      std::vector<char> data_;
      // Offset of the starting index of each string in data buffer.
      std::vector<size_t> offset_;
      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testConcatInvalidAxis(%arg0: tensor<1x2xi32>, %arg1: tensor<1x2xi32>) -> tensor<2x2xi32> {
      // expected-error @+1 {{'tfl.concatenation' op concatenation dimension must be in [-rank, rank)}}
      %0 = "tfl.concatenation"(%arg0, %arg1) {axis = 2 : i32, fused_activation_function = "NONE"} : (tensor<1x2xi32>, tensor<1x2xi32>) -> tensor<2x2xi32>
      func.return %0 : tensor<2x2xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/shake.go

    type cshakeState struct {
    	*state // SHA-3 state context and Read/Write operations
    
    	// initBlock is the cSHAKE specific initialization set of bytes. It is initialized
    	// by newCShake function and stores concatenation of N followed by S, encoded
    	// by the method specified in 3.3 of [1].
    	// It is stored here in order for Reset() to be able to put context into
    	// initial state.
    	initBlock []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            "dirsFromFcElementsSetFiltered"    | "dirs from FC elements set filtered"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19817")
        def "fail when concatenation of files is used for path instead of single files"() {
            def path = file("files/file0.txt${File.pathSeparator}files/dir1").path
            buildFile """
                def files = files('${escapeString(path)}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    	// ServiceAccounts has the concatenation of all service accounts seen so far in endpoints.
    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    //
    // Additionally, files containing a certificate and matching private key
    // for the server must be provided. If the certificate is signed by a
    // certificate authority, the certFile should be the concatenation
    // of the server's certificate, any intermediates, and the CA's certificate.
    //
    // ServeTLS always returns a non-nil error.
    func ServeTLS(l net.Listener, handler Handler, certFile, keyFile string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      func.return %1 : tensor<2x3xi32>
    
    // CHECK-LABEL: concat_v2_with_3_tensors
    // CHECK: "tfl.concatenation"(%arg0, %arg1, %arg2) <{axis = -1 : i32, fused_activation_function = "NONE"}> : (tensor<2x1xi32>, tensor<2x1xi32>, tensor<2x1xi32>) -> tensor<2x3xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return TF::ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TFL_ConcatenationOp : TFL_Op<"concatenation",
      [
        Pure,
        TFL_SameFirstOperandAndFirstResultElementType,
        SameOperandsAndResultsScale,
        QuantizableResult
      ]> {
      let summary = "Concatenation operator";
    
      let description = [{
        Concatenates tensors along one dimension
      }];
    
      let arguments = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top