Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for movbe (0.06 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

      for (const auto& entry : tflite_builtin_codes) {
        StringRef tflite_op_name = EnumNameBuiltinOperator(entry);
        std::string mlir_name = llvm::Twine("tfl.", tflite_op_name.lower()).str();
        mlir_op_names.insert(std::move(mlir_name));
      }
    }
    
    std::string TfLiteToMlir(absl::string_view tflite_op_name) {
      StringRef op_name(tflite_op_name.data(), tflite_op_name.size());
      return op_name.lower();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                        require(reportDir.mkdirs()) {
                            "Could not create configuration cache report directory '$reportDir'"
                        }
                        Files.move(spoolFile.toPath(), reportFile.toPath())
                    }
                    return reportFile
                }
    
                private
                fun reportHash() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

      pattern_list.add<HandleFunc>(&getContext());
      pattern_list.add<HandleCall>(&getContext());
      pattern_list.add<HandleIf>(&getContext());
      FrozenRewritePatternSet patterns(std::move(pattern_list));
    
      if (failed(applyPatternsAndFoldGreedily(module, patterns))) {
        signalPassFailure();
      }
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateDecomposeOptionalsPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return {};
      }
      return std::move(status_or_node_def.value());
    }
    
    // Converts a mlir padding StringRef to TfLitePadding.
    // Returns std::nullopt if conversion fails.
    static std::optional<TfLitePadding> GetTflitePadding(Operation* inst,
                                                         llvm::StringRef padding) {
      const tflite::Padding padding_attr =
          std::move(llvm::StringSwitch<tflite::Padding>(padding)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/sync/pool.go

    	// pinned section (in effect, this has all Ps pinned).
    
    	// Drop victim caches from all pools.
    	for _, p := range oldPools {
    		p.victim = nil
    		p.victimSize = 0
    	}
    
    	// Move primary cache to victim cache.
    	for _, p := range allPools {
    		p.victim = p.local
    		p.victimSize = p.localSize
    		p.local = nil
    		p.localSize = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    		} else { // result is not SSA-able; not escaped, so not on heap, but too large for SSA.
    			// Before register ABI this ought to be a self-move, home=dest,
    			// With register ABI, it's still a self-move if parameter is on stack (i.e., too big or overflowed)
    			// No VarDef, as the result slot is already holding live value.
    			results[i] = s.newValue2(ssa.OpDereference, n.Type(), s.addr(n), s.mem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            return converted.computeIfAbsent(project.path) {
                // Root project name is serialized separately, could perhaps move it to this cached project state object
                val projectName = project.path.name ?: rootProjectName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	EnvoyTransportSocketMetadataKey = "envoy.transport_socket_match"
    
    	// Well-known header names
    	AltSvcHeader = "alt-svc"
    
    	// Envoy Stateful Session Filter
    	// TODO: Move to well known.
    	StatefulSessionFilter = "envoy.filters.http.stateful_session"
    
    	// AlpnOverrideMetadataKey is the key under which metadata is added
    	// to indicate whether Istio rewrite the ALPN headers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Define the registrations in a detail namespace, just so that we can overload
    // the main entry point `registerTensorFlowPasses` to inject
    // RegisterTFOptimizePassPipeline.
    namespace detail {
    
    // Direction in which to move transposes in MoveTransposePass.
    enum MoveTransposeDirection { kBegin, kEnd };
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_BATCHMATMULTOEINSUMPASS
    #define GEN_PASS_DECL_BREAKUPISLANDSPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Move [0] _ _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_2
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Move [1] dst src mem)
    	// result: (MOVBstore dst (MOVBZload src mem) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top