Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for oc_if_ (0.17 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const string& then_branch_host_func_name,
        const string& else_branch_host_func_name) {
      Graph host_graph(fld);
      string outside_compilation_name = absl::StrCat("oc_if_", if_node_name);
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
    
      // Step 1: add key placeholder node.
      TF_ASSIGN_OR_RETURN(
          Node * key_placeholder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/README.md

    _If_ we are running directly on the host (not in a container) we can just assume whatever binary (legacy or nft) is aliased to `iptables` is correct and use that, and we're done. This is what k8s does for the kubelet.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/wasm_test.go

    	}); err != nil {
    		t.Fatalf("failed to setup the tag map: %v", err)
    	}
    }
    
    func applyAndTestCustomWasmConfigWithOCI(ctx framework.TestContext, c wasmTestConfigs, path, targetType, targetName string) {
    	ctx.NewSubTest("OCI_" + c.desc).Run(func(t framework.TestContext) {
    		defer func() {
    			generation++
    		}()
    		mapTagToVersionOrFail(t, "latest", "0.0.1")
    		wasmModuleURL := fmt.Sprintf("oci://%v/%v:%v", registry.Address(), imageName, "latest")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/wasmplugin_test.go

    	applyAndTestCustomWasmConfigWithOCI(ctx, c, wasmConfigFile)
    }
    
    func applyAndTestCustomWasmConfigWithOCI(ctx framework.TestContext, c wasmTestConfigs, path string) {
    	ctx.NewSubTest("OCI_" + c.desc).Run(func(t framework.TestContext) {
    		defer func() {
    			generation++
    		}()
    		mapTagToVersionOrFail(t, c.tag, c.upstreamVersion)
    		wasmModuleURL := fmt.Sprintf("oci://%v/%v:%v", registry.Address(), imageName, c.tag)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        // Verify we have an "If" to choose outside compilation between then_branch
        // and else_branch, and it has `recv_if_pred_node` as cond input.
        Node *if_oc_node = node_name_index["oc_if_if"];
        EXPECT_NE(if_oc_node, nullptr);
        Node *if_oc_node_cond_input;
        TF_CHECK_OK(if_oc_node->input_node(0, &if_oc_node_cond_input));
        EXPECT_EQ(if_oc_node_cond_input, recv_if_pred_node);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top