Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 485 for movbe (0.1 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.cc

        DCHECK(insert_successful);
        (void)insert_successful;
        return key;
      }
    
      ExecutableClosure<ExecutableType, ClientType> Consume(const KeyT& key) {
        mutex_lock l(mutex_);
        auto it = closures_.find(key);
        DCHECK(it != closures_.end());
        ExecutableClosure<ExecutableType, ClientType> value = std::move(it->second);
        closures_.erase(it);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

          py_function_lib_(ABSL_DIE_IF_NULL(py_function_lib)),  // Crash OK
          src_saved_model_path_(src_saved_model_path),
          function_aliases_(std::move(function_aliases)),
          tags_(std::move(tags)),
          signature_def_map_(std::move(signature_def_map)),
          signature_keys_(std::move(signature_keys)) {}
    
    absl::Status CalibrationComponent::ExportToSavedModel(
        ModuleOp module_op, absl::string_view calibration_data_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

          std::vector<uint8_t>(expected_value.begin(), expected_value.end());
      input_model.buffers.push_back(std::move(model_metadata_buffer));
      auto metadata_t = std::make_unique<tflite::MetadataT>();
      metadata_t->name = tflite::optimize::kTfLiteReducedPrecisionKey;
      metadata_t->buffer = input_model.buffers.size() - 1;
      input_model.metadata.push_back(std::move(metadata_t));
    
      // Sparsify and create output model
      flatbuffers::FlatBufferBuilder output_builder;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        signalPassFailure();
      }
    
      RewritePatternSet patterns_2(&getContext());
      patterns_2
          .add<QuantizeConstPattern, ConvertQuantizeCastToUniformQuantizePattern,
               ConvertDequantizeCastToUniformDequantizePattern>(ctx);
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns_2)))) {
        signalPassFailure();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         *
         * @param x the index (1-based) of the column to move to
         * @return this Ansi instance
         */
        public Ansi cursorToColumn(final int x) {
            return appendEscapeSequence('G', Math.max(1, x));
        }
    
        /**
         * Moves the cursor up. If the parameter y is negative it moves the cursor down.
         *
         * @param y the number of lines to move up
         * @return this Ansi instance
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& clobber(move)
    	=> (Zero {t} [n] dst1 mem)
    (Move {t} [n] dst1 src1 move:(Move {t} [n] dst2 _ mem))
    	&& move.Uses == 1
    	&& isSamePtr(dst1, dst2) && disjoint(src1, n, dst2, n)
    	&& clobber(move)
    	=> (Move {t} [n] dst1 src1 mem)
    (Zero {t} [n] dst1 vardef:(VarDef {x} move:(Move {t} [n] dst2 _ mem)))
    	&& move.Uses == 1 && vardef.Uses == 1
    	&& isSamePtr(dst1, dst2)
    	&& clobber(move, vardef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Small moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore dst (MOVHload src mem) mem)
    (Move [2] dst src mem) =>
    	(MOVBstore [1] dst (MOVBload [1] src mem)
    		(MOVBstore dst (MOVBload src mem) mem))
    (Move [4] {t} dst src mem) && t.Alignment()%4 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.cc

      if (av_tensor == nullptr) {
        TF_ASSIGN_OR_RETURN(
            *tensor, MakeTensorFromPjRtBuffer(tensor->dtype(), tensor->shape(),
                                              std::move(buffer)));
      } else {
        av_tensor->SetBuffer(std::move(buffer));
      }
      return absl::OkStatus();
    }
    
    absl::StatusOr<xla::PjRtCApiClient*> GetPjRtCApiClient(
        const DeviceType& device_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/compile.cc

        arg_layout_ptrs[i] = &arg_layouts[i];
      }
      xla::CompileOnlyClient::AotXlaComputationInstance instance;
      instance.computation = &computation;
      instance.argument_layouts = std::move(arg_layout_ptrs);
      xla::Shape result_shape(pshape->result());
      instance.result_layout = &result_shape;
      absl::StatusOr<std::vector<std::unique_ptr<xla::AotCompilationResult>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler.h

            persistor,
        std::unique_ptr<DeviceCompilerClient<ExecutableType, ClientType>>
            compiler_client)
        : persistor_(std::move(persistor)),
          compiler_client_(std::move(compiler_client)) {
      cache_ = std::make_unique<DeviceCompilationCache<ExecutableType>>();
      async_compiler_threads_ = std::make_unique<tensorflow::thread::ThreadPool>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top