Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for or2 (0.03 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output add1 =
          ops::Add(root.WithOpName("and1"), sw_0.output_false, sw_1.output_false);
      ops::Merge or2(root.WithOpName("or2"), {add0, add1});
      Output add3 =
          ops::Add(root.WithOpName("and3"), or2.output, sw_0.output_false);
      ops::Merge or4(root.WithOpName("or4"), {add3, sw_0.output_true});
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/go/build/build_test.go

    		shouldBuild: true,
    	},
    	{
    		name: "Or",
    		content: "// +build no yes\n\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: true,
    	},
    	{
    		name: "Or2",
    		content: "//go:build no || yes\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: true,
    	},
    	{
    		name: "And",
    		content: "// +build no,yes\n\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top