Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 316 for computation (0.15 sec)

  1. src/crypto/internal/mlkem768/mlkem768.go

    		}
    	}
    
    	return nil
    }
    
    // pkeEncrypt encrypt a plaintext message.
    //
    // It implements K-PKE.Encrypt according to FIPS 203 (DRAFT), Algorithm 13,
    // although the computation of t and AT is done in parseEK.
    func pkeEncrypt(cc *[CiphertextSize]byte, ex *encryptionKey, m *[messageSize]byte, rnd []byte) []byte {
    	var N byte
    	r, e1 := make([]nttElement, k), make([]ringElement, k)
    	for i := range r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

      for (Region* region : regions_with_token) {
        // Initialize the token with the special argument token. This gets mapped to
        // input token in the parent op or a new token for the entry computation.
        auto token = StringAttr::get(ctx, tensorflow::kXlaTokenArgNodeName);
        for (Operation& op : region->getOps()) {
          // Only communication related ops that needs to have token should have the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

      xla::PjRtLoadedExecutable* pjrt_executable;  // Not owned.
    
      // Note that here we assume the shape of the variables don't change between
      // compilation and execution. The locks on the variables are released before
      // compilation so that we can achieve parallel compilation of different batch
      // sizes during warm-up.
      {
        // Creating a scope so that the locks on the variables are released when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    #define GEN_PASS_DEF_FUSEDKERNELMATCHERPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Optimizes TF computations by fusing subgraphs/nodes onto more efficient
    // implementations to decrease the number of operations needed to perform a
    // computation.
    struct FusedKernelMatcherPass
        : public impl::FusedKernelMatcherPassBase<FusedKernelMatcherPass> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // outlined, as the constant operand is replaced by an argument.
      pm.addPass(mlir::createInlinerPass({}, NoCanonicalization));
      // Lift resource operations out of device computation. This step needs to be
      // done after inlining.
      pm.addPass(mlir::TFDevice::CreateResourceOpLiftingPass());
      // Outline clusters into cluster functions.
      pm.addPass(mlir::TFDevice::CreateClusterOutliningPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.cc

                "Generate XLA_* devices, where placing a computation on such a "
                "device"
                "forces compilation by XLA. Deprecated."),
    
           Flag("tf_xla_always_defer_compilation",
                &ops_flags->tf_xla_always_defer_compilation, ""),
           Flag("tf_xla_async_compilation", &ops_flags->tf_xla_async_compilation,
                "When lazy compilation is enabled, asynchronous compilation starts "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. src/cmd/go/main.go

    		if cfg.ExperimentErr != nil {
    			base.Fatal(cfg.ExperimentErr)
    		}
    	}
    
    	// Set environment (GOOS, GOARCH, etc) explicitly.
    	// In theory all the commands we invoke should have
    	// the same default computation of these as we do,
    	// but in practice there might be skew
    	// This makes sure we all agree.
    	cfg.OrigEnv = toolchain.FilterEnv(os.Environ())
    	cfg.CmdEnv = envcmd.MkEnv()
    	for _, env := range cfg.CmdEnv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // AssignVariableOps.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfreezeConstantsPass();
    
    // Creates a pass that duplicates constants that affect the shape of a tensor
    // after some computation.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDuplicateShapeDeterminingConstantsPass();
    
    // Creates a pass that creates a RestoreV2 op in the initializer function with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    // Marks uncompilable ops that are in `tf_dialect` for outside compilation.
    LogicalResult MarkUncompilableOps(
        const Dialect* tf_dialect, Block* block,
        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top