Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for toves (0.12 sec)

  1. src/image/color/palette/gen.go

    	fmt.Fprintln(w, "// subcubes with 4 samples plus black) and a reasonable selection of colors")
    	fmt.Fprintln(w, "// covering the rest of the color cube. The advantage is better representation")
    	fmt.Fprintln(w, "// of continuous tones.")
    	fmt.Fprintln(w, "//")
    	fmt.Fprintln(w, "// This palette was used in the Plan 9 Operating System, described at")
    	fmt.Fprintln(w, "// https://9p.io/magic/man2html/6/color")
    	fmt.Fprintln(w, "var Plan9 = []color.Color{")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.h

        FunctionLibraryDefinition* fld, std::vector<string>* shape_inference_graphs,
        bool* has_outside_compilation);
    
    // Rewrites XLA computation in `clusters` to replace outside compilation nodes
    // with XlaHostCompute, and moves those outside compilations into `g`. If shapes
    // of outside compilation outputs cannot be determined now, we will store shape
    // inference graph into `fld`.
    Status ExtractOutsideCompilation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    			offset += size
    		}
    
    	case ssa.OpPPC64LoweredMove, ssa.OpPPC64LoweredMoveShort:
    
    		bytesPerLoop := int64(32)
    		// This will be used when moving more
    		// than 8 bytes.  Moves start with
    		// as many 8 byte moves as possible, then
    		// 4, 2, or 1 byte(s) as remaining.  This will
    		// work and be efficient for power8 or later.
    		// If there are 64 or more bytes, then a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    //   ordering constraint.
    constexpr std::array<StringRef, 2> kInitializerTypesByMergeOrder = {
        kTfSavedModelInitializerRestoreType, kTfSavedModelInitializerInitType};
    
    // This pass moves all ops from initializer functions to the main function. A
    // new `tf.NoOp` that has control dependency to the initializer function for
    // non-variable resources will be created. The control output of the new
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/a.out.go

    	AMULLW
    	AMULLD
    	AMULHD
    	AMULHDU
    	AMLGR
    	ASUB
    	ASUBC
    	ASUBV
    	ASUBE
    	ASUBW
    	ANEG
    	ANEGW
    
    	// integer moves
    	AMOVWBR
    	AMOVB
    	AMOVBZ
    	AMOVH
    	AMOVHBR
    	AMOVHZ
    	AMOVW
    	AMOVWZ
    	AMOVD
    	AMOVDBR
    
    	// conditional moves
    	AMOVDEQ
    	AMOVDGE
    	AMOVDGT
    	AMOVDLE
    	AMOVDLT
    	AMOVDNE
    	ALOCR
    	ALOCGR
    
    	// find leftmost one
    	AFLOGR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        """
        # Tuple of (mse_error, quant_min, quant_max).
        mse_min = (float('inf'), float('inf'), float('inf'))
        left, right = start_idx, start_idx
    
        # If this value is true, it moves left, otherwise it moves right.
        move_left = True
        while not (left == 0 and right == self._num_bins - 1):
          # Decrease left if right can't be moved or move_left is true.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractIncrementalCompileIntegrationTest.groovy

            skipped getAppCompileTask(language)
    
            where:
            from  | to
            true  | false
            false | true
        }
    
        def "removes stale class file when file moves in hierarchy"() {
            given:
            file("src/main/${language.name}/IPerson.${language.name}") << basicInterface
            buildFile << """
                apply plugin: '${language.name}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/data_flow_grad.cc

    Status DynamicPartitionGrad(const Scope& scope, const Operation& op,
                                const std::vector<Output>& grad_inputs,
                                std::vector<Output>* grad_outputs) {
      // DynamicPartition only moves input values into various positions
      // in the output, so the gradient operation only has to map incoming
      // gradients into their input source locations.
      // running example:
      // data = [10, 20, 30, 40, 50]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/plugins/MavenPublishPluginTest.groovy

            then:
            with(publishing.publications.test.pom.coordinates) {
                groupId.get() == "changed-group"
                version.get() == "changed-version"
            }
        }
    
        def "pom dir moves with build dir"() {
            when:
            publishing.publications.create("test", MavenPublication)
            def newBuildDir = project.file("changed")
            project.buildDir = newBuildDir
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

                            shutDown();
                          } catch (Exception ignored) {
                            restoreInterruptIfIsInterruptedException(ignored);
                            // TODO(lukes): if guava ever moves to java7, this would be a good
                            // candidate for a suppressed exception, or maybe we could generalize
                            // Closer.Suppressor
                            logger
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top