Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for Luminance (0.12 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

                    } else {
                        return dominant;
                    }
                }
            }
            return dominant;
        }
    
        /**
         * Merge two DOMs, with one having dominance in the case of collision. Merge mechanisms (vs. override for nodes, or
         * vs. append for children) is determined by attributes of the dominant root node.
         *
         * @see #CHILDREN_COMBINATION_MODE_ATTRIBUTE
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/phi.go

    		if debugPhi {
    			fmt.Printf("currentRoot %s\n", currentRoot)
    		}
    		// Walk subtree below definition.
    		// Skip subtrees we've done in previous iterations.
    		// Find edges exiting tree dominated by definition (the dominance frontier).
    		// Insert phis at target blocks.
    		if queued.contains(currentRoot.ID) {
    			s.s.Fatalf("root already in queue")
    		}
    		q = append(q, currentRoot)
    		queued.add(currentRoot.ID)
    		for len(q) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Verifies that ops in between outside compile ops and depending on results
      // from the host are moved after the host compute op so that dominance is not
      // violated. tf.C op in this case.
      // CHECK-LABEL: func @device_op_dominance
      func.func @device_op_dominance() -> () {
        // CHECK: tf.B
        // CHECK: tf._XlaSendFromHost
    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