Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ternary (0.73 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

          bool has_inputs_with_mismatching_deadness,
          HasInputsWithMismatchingDeadness(*result, *add3.node()));
      EXPECT_FALSE(has_inputs_with_mismatching_deadness);
    }
    
    TEST(DeadnessAnalysisTest, Ternary) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output predicate = ops::Placeholder(root.WithOpName("predicate"), DT_BOOL);
      Output true_value = ops::Placeholder(root.WithOpName("true_value"), DT_FLOAT);
    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. android/guava/src/com/google/common/collect/Iterators.java

            for (int i = count; i < size; i++) {
              array[i] = null; // for GWT
            }
    
            List<@Nullable T> list = Collections.unmodifiableList(Arrays.asList(array));
            // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker.
            if (pad || count == size) {
              return list;
            } else {
              return list.subList(0, count);
            }
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

            for (int i = count; i < size; i++) {
              array[i] = null; // for GWT
            }
    
            List<@Nullable T> list = Collections.unmodifiableList(Arrays.asList(array));
            // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker.
            if (pad || count == size) {
              return list;
            } else {
              return list.subList(0, count);
            }
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        "has shape consistent with a bias">;
    
    def ReshapeNCHWBiasToNHWC : NativeCodeCall<"ReshapeNCHWBiasToNHWC($0, $1)">;
    
    //===----------------------------------------------------------------------===//
    // Ternary ops patterns.
    //===----------------------------------------------------------------------===//
    // Multi-pattern consisting of matching stand-alone convolution op followed by
    // activation op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    // formats and eliminates as many pseudo-instructions as possible.
    func progedit(ctxt *obj.Link, p *obj.Prog, newprog obj.ProgAlloc) {
    
    	// Expand binary instructions to ternary ones.
    	if p.Reg == obj.REG_NONE {
    		switch p.As {
    		case AADDI, ASLTI, ASLTIU, AANDI, AORI, AXORI, ASLLI, ASRLI, ASRAI,
    			AADDIW, ASLLIW, ASRLIW, ASRAIW, AADDW, ASUBW, ASLLW, ASRLW, ASRAW,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // expression parses:
    //
    //	<expression> ::= <(unary) operator-name> <expression>
    //	             ::= <(binary) operator-name> <expression> <expression>
    //	             ::= <(trinary) operator-name> <expression> <expression> <expression>
    //	             ::= pp_ <expression>
    //	             ::= mm_ <expression>
    //	             ::= cl <expression>+ E
    //	             ::= cl <expression>+ E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	} else if reqs.Goroutine == event.MustNotHave && ctx.G != NoGoroutine {
    		return fmt.Errorf("expected no goroutine but had one")
    	}
    	return nil
    }
    
    // gcState is a trinary variable for the current state of the GC.
    //
    // The third state besides "enabled" and "disabled" is "undetermined."
    type gcState uint8
    
    const (
    	gcUndetermined gcState = iota
    	gcNotRunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top