Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 347 for chains (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests one group with multiple branches.
    // We expect the following dependency chains after the pass
    // A -> B -> fetch, C -> D -> fetch, E -> fetch.
    func.func @one_group_multiple_branches() {
      tf_executor.graph {
        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK: [[out_ch:%.*]] = tfrt.merge.chains [[cond_res]]#0, %arg0 : !tfrt.chain, !tfrt.chain
      // CHECK: tfrt.return [[out_ch]], [[cond_res]]#1 : !tfrt.chain, !tfrt_fallback.tf_tensor
      func.return %2 : tensor<i32>
    }
    
    // CHECK-LABEL: func @cond_stateful(%arg0: !tfrt.chain, %arg1: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
    func.func @cond_stateful(%arg0: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    Of all the found transform chains, Gradle tries to select the best one:
    
    - If there is only one transform chain, it is selected.
    - If there are two transform chains, and one is a suffix of the other one, it is selected.
    - If there is a shortest transform chain, then it is selected.
    - In all other cases, the selection fails and an error is reported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            }
    
            // We found no matches. Attempt to construct artifact transform chains which produce matching variants.
            List<TransformedVariant> transformedVariants = consumerProvidedVariantFinder.findTransformedVariants(variants, componentRequested);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier.go

    )
    
    // MTLSSettings describes the mTLS options for a filter chain
    type MTLSSettings struct {
    	// Port is the port this option applies for
    	Port uint32
    	// Mode is the mTLS  mode to use
    	Mode model.MutualTLSMode
    	// TCP describes the tls context to use for TCP filter chains
    	TCP *tlsv3.DownstreamTlsContext
    	// HTTP describes the tls context to use for HTTP filter chains
    	HTTP *tlsv3.DownstreamTlsContext
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    [[sec:cpp_supported_tool_chain]]
    === Supported tool chain
    
    Gradle offers the ability to execute the same build using different tool chains.
    When you build a native binary, Gradle will attempt to locate a tool chain installed on your machine that can build the binary.
    Gradle select the first tool chain that can build for the target operating system and architecture.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

            is FunctionCall -> run {
                val errors = mutableListOf<DocumentError>()
                // Check for receiver: if it is a complex expression, it cannot be expressed in a DOM; but we can handle access chains as chained names
                val name = when (expr.receiver) {
                    null -> expr.name
                    is PropertyAccess ->
                        expr.receiver.asChainedNameOrNull()?.plus(".${expr.name}") ?: run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      return true;
    }
    
    // Populates `chain_resource_to_ops_map`, the map from all resources that need
    // to be chained to the set of operations that access the resource, and
    // `resource_equivalence_classes`. Resources are equivalent if they are accessed
    // by a common op, and equivalent resources will be assigned to the same chain.
    void CollectChainResources(
        func::FuncOp func, ResourceToOpsMapTy& chain_resource_to_ops_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    Pipelines
    
    A pipeline is a possibly chained sequence of "commands". A command is a simple
    value (argument) or a function or method call, possibly with multiple arguments:
    
    	Argument
    		The result is the value of evaluating the argument.
    	.Method [Argument...]
    		The method can be alone or the last element of a chain but,
    		unlike methods in the middle of a chain, it can take arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    			if k == model.VirtualInboundListenerName && v != 3 {
    				t.Fatalf("expect virtual listener has 3 passthrough filter chains, found %d", v)
    			}
    			if k == model.VirtualInboundCatchAllHTTPFilterChainName && v != 2 {
    				t.Fatalf("expect virtual listener has 2 passthrough filter chains, found %d", v)
    			}
    		}
    
    		if tt.useExactBalance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top