Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 468 for movbe (1.87 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

        TF_RETURN_IF_ERROR(tsl::Env::Default()->NewWritableFile(filepath, &file));
        return absl::WrapUnique(new WritableFileWrapper(std::move(file)));
      }
    
     private:
      explicit WritableFileWrapper(std::unique_ptr<tsl::WritableFile> file)
          : file_(std::move(file)) {
        SetBuffered();
      }
    
      uint64_t current_pos() const override {
        int64_t position;
        if (file_->Tell(&position).ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. tensorflow/c/eager/graph_function.cc

    namespace tensorflow {
    namespace tracing {
    namespace graph {
    GraphFunction::GraphFunction(FunctionDef fdef)
        : AbstractFunction(kGraph),
          func_record_(new FunctionRecord(std::move(fdef), {}, true)) {}
    GraphFunction::~GraphFunction() {}
    Status GraphFunction::GetFunctionDef(const FunctionDef **fdef) {
      *fdef = &(func_record_->fdef());
      return absl::OkStatus();
    }
    }  // namespace graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top