Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 468 for movbe (0.05 sec)

  1. src/internal/trace/batchcursor.go

    	if err != nil {
    		return false, err
    	}
    	// Complete the timestamp from the cursor's last timestamp.
    	b.ev.time = freq.mul(tsdiff) + b.lastTs
    
    	// Move the cursor's timestamp forward.
    	b.lastTs = b.ev.time
    
    	// Move the cursor forward.
    	b.dataOff += n
    	return true, nil
    }
    
    func (b *batchCursor) compare(a *batchCursor) int {
    	return cmp.Compare(b.ev.time, a.ev.time)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/fold_constant_transpose.cc

                                         /*elementType=*/rewriter.getF32Type());
        auto new_value_attr =
            DenseFPElementsAttr::get(new_value_type, std::move(transposed_values));
        auto new_const_op = rewriter.create<mlir::stablehlo::ConstantOp>(
            combined_loc, new_value_attr);
    
        rewriter.replaceAllUsesWith(op, new_const_op);
      };
    };
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    	B	octetsLoop
    
    dataTLS:
    	ADD	$14*16, pTbl
    	VLD1.P	(pTbl), [T1.B16, T2.B16]
    	VEOR	B0.B16, B0.B16, B0.B16
    
    	MOVD	(aut), H0
    	VMOV	H0, B0.D[0]
    	MOVW	8(aut), H0
    	VMOV	H0, B0.S[2]
    	MOVB	12(aut), H0
    	VMOV	H0, B0.B[12]
    
    	MOVD	$0, autLen
    	B	dataMul
    
    octetsLoop:
    		CMP	$128, autLen
    		BLT	startSinglesLoop
    		SUB	$128, autLen
    
    		VLD1.P	32(aut), [B0.B16, B1.B16]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

          ON_CALL(*optimization_pass, Run(_, _, _, _, _))
              .WillByDefault(Return(pass_run_result));
          MlirOptimizationPassRegistry::Global().Add(pass_priority++,
                                                     std::move(optimization_pass));
          pass_result_expected_[pass_state][pass_run_result.ok()]++;
        }
    
        flib_ = std::make_unique<FunctionLibraryDefinition>(graph_->flib_def());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

            tpu_devices(std::move(tpu_devices)) {}
    
      TPUDeviceAssignment(llvm::StringRef compilation_device,
                          TPUDevicesAndHosts&& tpu_devices,
                          xla::DeviceAssignmentProto&& xla_device_assignment)
          : compilation_device(compilation_device),
            tpu_devices(std::move(tpu_devices)),
            xla_device_assignment(std::move(xla_device_assignment)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/permutation.h

                           const ArrayRef<int64_t> permutation) {
      SmallVector<T> permuted_values(/*Size=*/values.size(), /*Value=*/T{});
      for (auto [i, permutation_idx] : llvm::enumerate(permutation)) {
        permuted_values[i] = std::move(values[permutation_idx]);
      }
      return permuted_values;
    }
    
    }  // namespace mlir::quant
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 00:14:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word move
    (Move [s] dst src mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Move [8]
    		(OffPtr <dst.Type> dst [s-8])
    		(OffPtr <src.Type> src [s-8])
    		(Move [s-s%16] dst src mem))
    (Move [s] dst src mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Move [16]
    		(OffPtr <dst.Type> dst [s-16])
    		(OffPtr <src.Type> src [s-16])
    		(Move [s-s%16] dst src mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_tpu_device.cc

        // might not be enqueued to the stream yet, we put it on destination stream.
        TensorReference input_reference(*input);
        std::move(return_substream).release();
        return dst_device_to_device_stream->DoHostCallback(
            [input_reference, done = std::move(done),
             device_to_device_master_stream, dst_device_to_device_stream] {
              if (device_to_device_master_stream) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

                          CreateSaverDef(control_ret_node_names, graph_def));
    
      return CreateExportedModelFromGraphDef(std::move(graph_def), init_node_name,
                                             checkpoint_dir, std::move(saver_def),
                                             function_aliases, asset_file_defs);
    }
    
    absl::StatusOr<SmallVector<AssetFileDef>> RunExportPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/c/tf_tensor.cc

      buf->Unref();
      size_t elem_size = TF_DataTypeSize(dtype);
      if (elem_size > 0 && len < (elem_size * ret.NumElements())) {
        return nullptr;
      }
      return new TF_Tensor{new tensorflow::TensorInterface(std::move(ret))};
    }
    }  // namespace
    
    TF_Tensor* TF_AllocateTensor(TF_DataType dtype, const int64_t* dims,
                                 int num_dims, size_t len) {
      void* data = tensorflow::allocate_tensor("TF_AllocateTensor", len,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top