Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 225 for broadcasts (0.6 sec)

  1. tensorflow/compiler/jit/xla_activity_listener.h

    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    // Broadcast `auto_clustering_activity` to all the registered listeners.
    Status BroadcastXlaActivity(XlaAutoClusteringActivity auto_clustering_activity);
    
    // Broadcast `jit_compilation_activity` to all the registered listeners.
    Status BroadcastXlaActivity(XlaJitCompilationActivity jit_compilation_activity);
    
    // Broadcast `jit_compilation_activity` to all the registered listeners.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    // Returns whether the given type `a` is broadcast-compatible with `b`.
    bool IsBroadcastableElementsAttrAndType(Type a, Type b) {
      return OpTrait::util::getBroadcastedType(a, b) != Type();
    }
    
    // Returns whether the resultant type of any broadcastable operation with
    // operands `a` and `b` matches `expected_output`. Returns false if `a` is not
    // broadcast-compatible with `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Unsupported broadcast.
    	VFPCLASSSD.BCST $0, (AX), K2, K1 // ERROR "unsupported broadcast"
    	VFPCLASSSS.BCST $0, (AX), K2, K1 // ERROR "unsupported broadcast"
    	// Broadcast without memory operand.
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/stack_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: %[[BUFFER:.*]] = "tf.MlirLocalVarOp"() : () -> tensor<!tf_type.resource<tensor<10xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. test/fixedbugs/issue9110.go

    			cond2.Wait()
    			mu2.Unlock()
    		}()
    		time.Sleep(1 * time.Millisecond)
    
    		// put top sudog back
    		cond1.Broadcast()
    		time.Sleep(1 * time.Millisecond)
    
    		// drop cache on floor
    		runtime.GC()
    
    		// release cond2 after select has gotten to run
    		release = func() {
    			cond2.Broadcast()
    			time.Sleep(1 * time.Millisecond)
    		}
    	}
    
    	runtime.GC()
    
    	runtime.ReadMemStats(&stats2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultWorkInputListeners.java

        private final AnonymousListenerBroadcast<WorkInputListener> broadcaster;
    
        public DefaultWorkInputListeners(ListenerManager listenerManager) {
            broadcaster = listenerManager.createAnonymousBroadcaster(WorkInputListener.class);
        }
    
        @Override
        public void addListener(WorkInputListener listener) {
            broadcaster.add(listener);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:54 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

            when:
            broadcaster.started(op1, startEvent)
            broadcaster.started(op2, startEvent)
            broadcaster.progress(id1, progressEvent)
            broadcaster.progress(id2, progressEvent)
            broadcaster.finished(op1, finishEvent)
            broadcaster.finished(op2, finishEvent)
    
            then:
            events == [
                start("1", id1),
                start("2", id1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. docs_src/websockets/tutorial003_py39.py

                data = await websocket.receive_text()
                await manager.send_personal_message(f"You wrote: {data}", websocket)
                await manager.broadcast(f"Client #{client_id} says: {data}")
        except WebSocketDisconnect:
            manager.disconnect(websocket)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/sync/cond.go

    // A Cond must not be copied after first use.
    //
    // In the terminology of [the Go memory model], Cond arranges that
    // a call to [Cond.Broadcast] or [Cond.Signal] “synchronizes before” any Wait call
    // that it unblocks.
    //
    // For many simple use cases, users will be better off using channels than a
    // Cond (Broadcast corresponds to closing a channel, and Signal corresponds to
    // sending on a channel).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. internal/ringbuffer/ring_buffer.go

    	// Internal errors are transient
    	case nil, ErrIsEmpty, ErrIsFull, ErrAcquireLock, ErrTooMuchDataToWrite, ErrIsNotEmpty:
    		return err
    	default:
    		r.err = err
    		if r.block {
    			r.readCond.Broadcast()
    			r.writeCond.Broadcast()
    		}
    	}
    	return err
    }
    
    func (r *RingBuffer) readErr(locked bool) error {
    	if !locked {
    		r.mu.Lock()
    		defer r.mu.Unlock()
    	}
    	if r.err != nil {
    		if r.err == io.EOF {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top