Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 222 for cmovinv (0.12 sec)

  1. src/internal/bytealg/compare_mipsx.s

    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT,$0-28
    	MOVW	a_base+0(FP), R3
    	MOVW	b_base+12(FP), R4
    	MOVW	a_len+4(FP), R1
    	MOVW	b_len+16(FP), R2
    	BEQ	R3, R4, samebytes
    	SGTU	R1, R2, R7
    	MOVW	R1, R8
    	CMOVN	R7, R2, R8	// R8 is min(R1, R2)
    
    	ADDU	R3, R8	// R3 is current byte in a, R8 is last byte in a to compare
    loop:
    	BEQ	R3, R8, samebytes
    
    	MOVBU	(R3), R6
    	ADDU	$1, R3
    	MOVBU	(R4), R7
    	ADDU	$1, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    dependencyAnalysis {
        issues {
            onRuntimeOnly {
                // The plugin will suggest moving this to runtimeOnly, but it is needed during :plugins-java-library:compileJava
                // to avoid "class file for org.gradle.api.tasks.bundling.Jar not found"
                exclude(":language-jvm")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 19:34:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CMOVQEQF", argLength: 3, reg: gp21, asm: "CMOVQNE", resultInArg0: true, needIntTemp: true},
    		{name: "CMOVQNEF", argLength: 3, reg: gp21, asm: "CMOVQNE", resultInArg0: true},
    		{name: "CMOVQGTF", argLength: 3, reg: gp21, asm: "CMOVQHI", resultInArg0: true},
    		{name: "CMOVQGEF", argLength: 3, reg: gp21, asm: "CMOVQCC", resultInArg0: true},
    		{name: "CMOVLEQF", argLength: 3, reg: gp21, asm: "CMOVLNE", resultInArg0: true, needIntTemp: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. cmd/bucket-replication-metrics.go

    }
    
    // exponentialMovingAverage calculates the exponential moving average
    func exponentialMovingAverage(beta, previousAvg, incrementAvg float64) float64 {
    	return (1-beta)*incrementAvg + beta*previousAvg
    }
    
    // getExpMovingAvgBytesPerSecond returns the exponential moving average for the bucket/target in bytes
    func (m *rateMeasurement) getExpMovingAvgBytesPerSecond() float64 {
    	m.lock.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. internal/dsync/dsync-client_test.go

    		panic(err)
    	}
    
    	tr := &http.Transport{
    		Proxy:                 http.ProxyFromEnvironment,
    		MaxIdleConnsPerHost:   1024,
    		WriteBufferSize:       32 << 10, // 32KiB moving up from 4KiB default
    		ReadBufferSize:        32 << 10, // 32KiB moving up from 4KiB default
    		IdleConnTimeout:       15 * time.Second,
    		ResponseHeaderTimeout: 15 * time.Minute, // Set conservative timeouts for MinIO internode.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ReplaceSelectionWithConflictResultAction.java

        @Override
        public void execute(final ConflictResolutionResult result) {
            result.withParticipatingModules(moduleIdentifier -> {
                // Restart each configuration. For the evicted configuration, this means moving incoming dependencies across to the
                // matching selected configuration. For the select configuration, this mean traversing its dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    // Passes in the program key to embedding ops, by moving the embedding ops
    // after the _TPUCompileMlir op.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateEmbeddingProgramKeyPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_EMBEDDINGSEQUENCINGPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      bool unconditionally_use_set_output_shapes = false;
      // If set, use the value as the device type and mark the function graph for
      // XLA compilation.
      string xla_compile_device_type;
      // If true, enables moving ops to different devices or moving unsupported ops
      // out of a compilation cluster.
      bool enable_soft_placement = false;
      // If true, a function attribute, `tf._original_func_name`, will be set in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/experimental/public/concrete_function.h

      const FunctionMetadata* GetFunctionMetadata();
    
     private:
      friend class SavedModelAPI;
      friend class ConcreteFunctionList;
    
      // TODO(bmzhao): Consider adding a macro for wrapping/unwrapping
      // when moving out of experimental.
      static ConcreteFunction* wrap(TF_ConcreteFunction* p) {
        return reinterpret_cast<ConcreteFunction*>(p);
      }
      static TF_ConcreteFunction* unwrap(ConcreteFunction* p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

          results_to_remove.push_back(result.index());
        }
    
        rewrite |= !results_to_remove.empty();
      }
    
      if (!rewrite) return;
    
      // Remove leftover unused results (terminator operands) from moving
      // AssignVariabeOps into the parallel_execute region.
      for (auto results_to_remove : llvm::enumerate(results_to_remove_by_region)) {
        Block& block =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top