Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for broadcasts (0.12 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/report_clustering_info_pass.h

    namespace tensorflow {
    
    // This is not really an optimization pass.  It does not change the graph in any
    // way; instead it computes a summary of the XLA clusters in the graph and
    // broadcasts it via xla_activity_listener.
    class ReportClusteringInfoPass : public GraphOptimizationPass {
     public:
      Status Run(const GraphOptimizationPassOptions& options) override;
    };
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 15 00:14:19 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/netbios/UniAddress.java

     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
     * <a href="../../resolver.html">Setting Name Resolution Properties</a>
     * and the <code>jcifs.resolveOrder</code> property. Changing
     * jCIFS name resolution properties can greatly affect the behavior of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/smb1/UniAddress.java

     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
     * <a href="../../resolver.html">Setting Name Resolution Properties</a>
     * and the <code>jcifs.smb1.resolveOrder</code> property. Changing
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
Back to top