Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 99 for toves (0.26 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    // whose value is broacast to all replicas.
    std::unique_ptr<mlir::OperationPass<mlir::func::FuncOp>>
    CreateHoistBroadcastReadPass();
    
    // Creates a pass that moves broadcasts from TF host ops to XLA code, encoded as
    // XlaAllReduces. This enables use of the device network for broadcasts, which
    // is faster.
    std::unique_ptr<mlir::OperationPass<mlir::func::FuncOp>>
    CreateXlaBroadcastPass();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/poll/splice_linux.go

    		if n > 0 {
    			written += int64(n)
    			remain -= int64(n)
    			p.data -= n
    		}
    	}
    	if err != nil {
    		return written, handled, err
    	}
    	return written, true, nil
    }
    
    // spliceDrain moves data from a socket to a pipe.
    //
    // Invariant: when entering spliceDrain, the pipe is empty. It is either in its
    // initial state, or splicePump has emptied it previously.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def XlaBroadcastPass : Pass<"tf-xla-broadcast", "mlir::func::FuncOp"> {
      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // replace mixed-type convolution and matmul cast hacks by XLA Conv2DOp and
    // MatmulOp.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplaceCastHacksWithTFXLAOpsPass();
    
    // Creates a pass that moves & merges initializer function's ops into the @main
    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    			offset += size
    		}
    
    	case ssa.OpPPC64LoweredMove, ssa.OpPPC64LoweredMoveShort:
    
    		bytesPerLoop := int64(32)
    		// This will be used when moving more
    		// than 8 bytes.  Moves start with
    		// as many 8 byte moves as possible, then
    		// 4, 2, or 1 byte(s) as remaining.  This will
    		// work and be efficient for power8 or later.
    		// If there are 64 or more bytes, then a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    //   ordering constraint.
    constexpr std::array<StringRef, 2> kInitializerTypesByMergeOrder = {
        kTfSavedModelInitializerRestoreType, kTfSavedModelInitializerInitType};
    
    // This pass moves all ops from initializer functions to the main function. A
    // new `tf.NoOp` that has control dependency to the initializer function for
    // non-variable resources will be created. The control output of the new
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        """
        # Tuple of (mse_error, quant_min, quant_max).
        mse_min = (float('inf'), float('inf'), float('inf'))
        left, right = start_idx, start_idx
    
        # If this value is true, it moves left, otherwise it moves right.
        move_left = True
        while not (left == 0 and right == self._num_bins - 1):
          # Decrease left if right can't be moved or move_left is true.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_executable_persistor.h

      // user if these moves are not known to be atomic.
      bool has_atomic_move = false;
      env->HasAtomicMove(persistent_cache_directory_, &has_atomic_move)
          .IgnoreError();
      if (!has_atomic_move) {
        LOG_EVERY_POW_2(WARNING)
            << "Filesystem for XLA persistent cache at "
            << persistent_cache_directory_
            << " does not support atomic moves.  Therefore the persistent cache is "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // ops within device cluster.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    // Creates a pass that moves writes to replicate invariant resource variables
    // outside tf_device.replicate op.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateHoistReplicateInvariantResourceWritesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

          return WalkResult::advance();
        });
    
        if (!walk_result.wasInterrupted())
          head_outside_compiled_ops.insert(&cluster_op);
      }
    
      return head_outside_compiled_ops.takeVector();
    }
    
    // Moves head outside compiled ops into its own `tf_device.LaunchOp`
    // computation before the cluster.
    void CreateHeadComputation(OpBuilder* builder,
                               mlir::tf_device::ClusterOp cluster,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top