Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for broadcasts (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

        }
    
        def "broadcasts settings evaluated events to closures"() {
            given:
            def called = false
            def closure = { called = true }
    
            when:
            gradle.settingsEvaluated(closure)
    
            and:
            gradle.buildListenerBroadcaster.settingsEvaluated(null)
    
            then:
            called
        }
    
        def "broadcasts projects loaded events to closures"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerBroadcast.java

         */
        public void addAll(Collection<? extends T> listeners) {
            broadcast = broadcast.addAll(listeners);
        }
    
        /**
         * Adds a {@link Dispatch} to receive events from this broadcast.
         */
        public void add(Dispatch<MethodInvocation> dispatch) {
            broadcast = broadcast.add(dispatch);
        }
    
        /**
         * Adds an action to be executed when the given method is called.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    // Creates a pass that hoists reads out of a replicate that are on a variable
    // 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>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compilation_profiler.h

      void RegisterExecution(const NameAttrList& function);
    
      // Registers a cluster compilation. Increments the compilation count and
      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
                                         int64_t compile_time_us,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    // Broadcasts the 1D value tensor 'value_1d' to the shape of 'result_type'. If
    // 'shape_value' is initialized, creates a dynamic broadcast, otherwise creates
    // a static broadcast.
    Value broadcastToFeatureDim(Location loc, RankedTensorType result_type,
                                Value value1d, Value shape_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/evex.go

    //
    // Examples:
    //
    //	"RU_SAE.Z" => {rounding: 3, zeroing: true}
    //	"Z" => {zeroing: true}
    //	"BCST" => {broadcast: true}
    //	"SAE.Z" => {sae: true, zeroing: true}
    type evexSuffix struct {
    	rounding  byte
    	sae       bool
    	zeroing   bool
    	broadcast bool
    }
    
    // Rounding control values.
    // Match exact value for EVEX.L'L field (with exception of rcUnset).
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      Value all_reduce =
          CreateAllReduce(replicate, inner_builder, launch.getResult(0));
    
      orig_to_new[val_bcast] = all_reduce;
      return success();
    }
    
    // Move all suitable broadcasts across replicas to the `cluster` into the
    // `cluster`.
    LogicalResult MoveAllBroadcastsToCluster(ClusterOp cluster,
                                             ReplicateOp replicate,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device.cc

            // Non-parallel tensors from _EagerConst/tf.constant are implicitly
            // broadcast, i.e. set as the input to each parallel operation. This
            // allows code like "tf.constant(1.)" or "tf.reduce_sum(..., axis=1)"
            // (where the value starts on the host), without allowing other implicit
            // copies/broadcasts. Other implicit copies may be supported eventually,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. 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.
        Broadcasts in XLA are encoded as XlaAllReduce. An all_reduce with all 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    func.func @broadcast_shift_right_unsigned(%arg0: tensor<4xui8>, %arg1: tensor<2x4xui8>) -> tensor<2x4xui8> {
      // CHECK: %[[BROADCAST:.*]] = "mhlo.broadcast_in_dim"(%arg0) <{broadcast_dimensions = dense<1> : tensor<1xi64>}> : (tensor<4xui8>) -> tensor<2x4xui8>
      // CHECK:  mhlo.shift_right_logical %[[BROADCAST]], %arg1 : tensor<2x4xui8>
      %0 = "tf.RightShift"(%arg0, %arg1) : (tensor<4xui8>, tensor<2x4xui8>) -> tensor<2x4xui8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top