Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 225 for broadcasts (0.16 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    removing MLIR or XLA specific attributes that are not legal in TensorFlow
    graph.
    ### `-tf-batch-matmul-to-tf-einsum`
    
    _Replace TF BatchMatMul op by TF Einsum op._
    
    ### `-tf-broadcast-fold`
    
    _Fold explicit broadcasts into the following operations if they support implicit broadcasting on their operand._
    
    ### `-tf-canonicalize-compile-and-replicate-attributes`
    
    _Canonicalize compilation and replication attributes._
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      // CHECK-NEXT: %[[CAST_ZERO:.*]] = "tf.Cast"(%[[ZERO_SCALAR]]) : (tensor<i32>) -> tensor<f32>
      // CHECK-NEXT: %[[CONST10:.*]] = "tf.Const"() <{value = dense<10> : tensor<1xi32>}> : () -> tensor<1xi32>
      // CHECK-NEXT: %[[BROADCAST:.*]] = "tf.BroadcastTo"(%[[CAST_ZERO]], %[[CONST10]]) : (tensor<f32>, tensor<1xi32>) -> tensor<10xf32>
      // CHECK-NEXT: %[[ZERO:.*]] = "tf.Const"() <{value = dense<0> : tensor<1xi32>}> : () -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/MutableActionSetTest.groovy

            def action2 = Mock(Action)
            broadcast.add(action1)
    
            when:
            broadcast.execute('value')
    
            then:
            1 * action1.execute('value') >> { broadcast.add(action2) }
            0 * _._
        }
    
        def canDiscardActions() {
            def action = Mock(Action)
            broadcast.add(action)
    
            when:
            broadcast.clear()
            broadcast.execute('value')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/websockets.md

    ## More info
    
    To learn more about the options, check Starlette's documentation for:
    
    * <a href="https://www.starlette.io/websockets/" class="external-link" target="_blank">The `WebSocket` class</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/ListenerBroadcastTest.groovy

            expect:
            broadcast.empty
            broadcast.size() == 0
    
            when:
            broadcast.add(listener1)
    
            then:
            !broadcast.empty
            broadcast.size() == 1
    
            when:
            broadcast.add(listener2)
            broadcast.add(listener3)
    
            then:
            !broadcast.empty
            broadcast.size() == 3
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

            LOGGER.debug("Memory status broadcaster started");
            if (osMemoryStatusSupported) {
                addListener(osMemoryStatusListener);
            } else {
                LOGGER.info("This JVM does not support getting OS memory, so no OS memory status updates will be broadcast");
            }
        }
    
        @Override
        public void stop() {
            scheduler.stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueueTest.groovy

            def messages = []
            endpoint.take(messages)
    
            then:
            messages == [message]
        }
    
        def "forwards queued broadcast messages to all endpoints"() {
            given:
            def message1 = unicast()
            def message2 = broadcast()
            def message3 = unicast()
            def endpoint1 = queue.newEndpoint()
            def endpoint2 = queue.newEndpoint()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/scripts/DefaultScriptFileResolverListeners.java

        private final AnonymousListenerBroadcast<ScriptFileResolvedListener> broadcast;
    
        public DefaultScriptFileResolverListeners(ListenerManager listenerManager) {
            this.broadcast = listenerManager.createAnonymousBroadcaster(ScriptFileResolvedListener.class);
        }
    
        @Override
        public void addListener(ScriptFileResolvedListener scriptFileResolvedListener) {
            broadcast.add(scriptFileResolvedListener);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //
    // T z = x / y
    // return (z * y != x && (x < 0) != (y < 0)) ? z - 1 : z
    //
    // BroadcastToDimensions is used to compute the broadcast attr to higher
    // dimensions. This computes the broadcast of 'l' to broadcast('l', 'r')
    // without returning the broadcast of 'r' to broadcast('l', 'r').
    def : Pat<(TF_FloorDivOp AnyTensor:$l, AnyTensor:$r),
          (MHLO_SelectOp
           (CHLO_BroadcastAndOp
            (CHLO_BroadcastCompareOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultFileChangeListeners.java

        private final AnonymousListenerBroadcast<FileChangeListener> broadcaster;
    
        public DefaultFileChangeListeners(ListenerManager listenerManager) {
            this.broadcaster = listenerManager.createAnonymousBroadcaster(FileChangeListener.class);
        }
    
        @Override
        public void addListener(FileChangeListener listener) {
            broadcaster.add(listener);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 21 17:17:17 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top