Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 485 for movbe (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      if (FindCompilePredecessor(func_op, preprocess_op)) return success();
    
      // Find the TPUCompile successor we want to move upwards. We're moving the
      // compile, not the preprocess_op, since it's easier to move (because it
      // doesn't typically have any dependencies)
      Operation* tpu_compile_successor =
          FindCompileSuccessor(func_op, preprocess_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

          tensorflow::XlaCallModuleLoader::Create(
              context, static_cast<int>(op.getVersion()), op.getModule().str(),
              std::move(disabled_checks), std::move(platforms),
              /*num_invocation_args=*/op.getArgs().size(),
              op.getHasTokenInputOutput()));
      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            where:
            method     | registration
            'instance' | { ScopedServiceRegistry it -> it.add(new BuildTreeScopedService()) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

      // key for interned_and_or_instances_ we need to be careful to std::move()
      // it all the way through.
      absl::Span<Predicate* const> operands_slice = simplified_ops;
      std::unique_ptr<Predicate> new_pred =
          pred_kind == Predicate::Kind::kAnd
              ? Make<AndPredicate>(std::move(simplified_ops))
              : Make<OrPredicate>(std::move(simplified_ops));
    
      Predicate* new_pred_ptr = new_pred.get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/internal/msan/nomsan.go

    func Read(addr unsafe.Pointer, sz uintptr) {
    }
    
    func Write(addr unsafe.Pointer, sz uintptr) {
    }
    
    func Malloc(addr unsafe.Pointer, sz uintptr) {
    }
    
    func Free(addr unsafe.Pointer, sz uintptr) {
    }
    
    func Move(dst, src unsafe.Pointer, sz uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 483 bytes
    - Viewed (0)
  6. ci/official/utilities/rename_and_verify_wheels.sh

    set -euxo pipefail
    
    cd "$TFCI_OUTPUT_DIR"
    
    # Move extra wheel files somewhere out of the way. This script
    # expects just one wheel file to exist.
    if [[ "$(ls *.whl | wc -l | tr -d ' ')" != "1" ]]; then
      echo "More than one wheel file is present: moving the oldest to"
      echo "$TFCI_OUTPUT_DIR/extra_wheels."
      # List all .whl files by their modification time (ls -t) and move anything
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      auto r = registry.try_emplace(op_name, std::move(cost_function));
      assert(r.second);
      (void)r;
    }
    
    template <typename OpType, typename F>
    void RegisterCostFunction(CostFunctionRegistry& registry, F f) {
      RegisterCostFunction(
          registry, OpType::getOperationName().str(),
          [f = std::move(f)](const CostContext& context, mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. test/codegen/comparisons.go

    }
    
    // Check that arrays compare use 2/4/8 byte compares
    
    func CompareArray1(a, b [2]byte) bool {
    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// arm64:-`MOVBU\t`
    	// ppc64le:-`MOVBZ\t`
    	// s390x:-`MOVBZ\t`
    	return a == b
    }
    
    func CompareArray2(a, b [3]uint16) bool {
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallationDownloader.groovy

            FileUtils.moveDirectoryToDirectory(tmpHome, installsRoot, true)
            def home = new File(installsRoot, tmpHome.getName())
            if (!OperatingSystem.current().isWindows()) {
                // We do this after the move because that "move" can fallback to a Java copy
                // that does not preserve permissions when java.io.tmpdir sits in a different filesystem).
                new AntBuilder().chmod(file: MavenInstallation.findMvnExecutable(home), perm: "+x")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/function.cc

    using tensorflow::AbstractContext;
    using tensorflow::AbstractFunctionPtr;
    using tensorflow::AbstractOperationPtr;
    using tensorflow::AbstractTensorHandle;
    using tensorflow::Status;
    using tensorflow::StatusOr;
    
    // TODO(srbs): Move this to unified execution API.
    tensorflow::Status ExecuteFunction(
        AbstractFunctionPtr trace, AbstractContext* ctx,
        absl::Span<tensorflow::AbstractTensorHandle* const> inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top