Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for ControlZ (0.16 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return failure();
      }
    
      Region& body = *result.addRegion();
    
      if (succeeded(parser.parseOptionalKeyword("controls"))) {
        // If we parse the short version of the control node, we have an operation
        // in the generic form that follows the "controls" keyword. Parse it inside
        // the region and forward all of its results as-is to the yield operation.
        body.push_back(new Block);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* b = Input(b1.opts().WithName("B"));
        Node* control = Input(b1.opts().WithName("Control"));
        Node* c =
            Unary(a, b1.opts().WithName("C").WithControlInput(control).WithAttr(
                         "_encapsulate", "F1"));
        Node* d = Binary(b, c,
                         b1.opts().WithName("D").WithControlInput(control).WithAttr(
                             "_encapsulate", "F2"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      // TODO(lyandy): Preserve control dependencies properly by not forwarding
      // control dependencies to data outputs and not removing single output nodes.
      // When a data output is replaced as a feed, unless there is another non feed
      // data output or an explicit control output used by the same node, transitive
      // control dependencies are not to be executed. For single output nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeaders(map[string]string{
    								"Access-Control-Allow-Origin":  "cors.com",
    								"Access-Control-Allow-Methods": "POST,GET",
    								"Access-Control-Allow-Headers": "X-Foo-Bar,X-Foo-Baz",
    								"Access-Control-Max-Age":       "86400",
    							})),
    					}
    				}(),
    			},
    			{
    				name: "get",
    				opts: func() echo.CallOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        model with metadata such that any runtime reorderings will respect the order
        given by the control dependencies.
      }];
    
      // May take values of type !tfl.control as inputs
      let arguments = (ins
        Variadic<TFL_Control>:$controlInputs
      );
    
      // Adds a single value of type !tfl.control as the last output (all other
      // outputs are copied from the wrapped region.)
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          %switch:3 = "tf_executor.Switch"(%island#0, %arg2) : (tensor<?x?x?xf32>, tensor<i1>) -> (tensor<?x?x?xf32>, tensor<?x?x?xf32>, !tf_executor.control)
          %switchn:3 = "tf_executor._SwitchN"(%island#0, %arg3) {num_outs = 2} : (tensor<?x?x?xf32>, tensor<i32>) -> (tensor<?x?x?xf32>, tensor<?x?x?xf32>, !tf_executor.control)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    	"sync"
    	"testing"
    	"time"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	http "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        auto control_token = control_node_op.getControl();
    
        // Now go through all uses. Since *block is in executable order, control
        // edges always point to operations we haven't modified yet.
        for (auto& use : control_token.getUses()) {
          auto owner = use.getOwner();
          // Control tokens can only be consumed by other ControlNodeOps,
          assert(llvm::isa<mlir::TFL::ControlNodeOp>(owner));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "allowPrivilegeEscalation": {
              "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        }
        func.return %1 : tensor<2xi32>
      }
    
      // Tests extraction of a single outside compiled cluster inside a tf.IfRegion
      // op. Check that we mark the rewritten control-flow as stateful even though
      // the original control-flow is not (this is due to added side-effecting
      // communication ops).
    
      // CHECK-LABEL: func @outside_compiled_ops_inside_tf_if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
Back to top