Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for broadcast_or (0.1 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      if (!applyPatterns(func, target, stage1FrozenPatterns)) {
        return signalPassFailure();
      }
      // Explict BroadcastTo addition for left-over broadcast-able ops.
      // The following pattern matchings should be done after the other legalization
      // rules in order not to add unnecessary BroadcastTo ops.
      RewritePatternSet stage2Patterns(&getContext());
    
      addPatterns(context, stage2Patterns, this->preserve_assert_op_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller.go

    	endpointSliceInformer discoveryinformers.EndpointSliceInformer,
    	maxEndpointsPerSlice int32,
    	client clientset.Interface,
    	endpointUpdatesBatchPeriod time.Duration,
    ) *Controller {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	recorder := broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "endpoint-slice-controller"})
    
    	endpointslicemetrics.RegisterMetrics()
    
    	c := &Controller{
    		client: client,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            0 * _
    
            when:
            broadcast.something("12")
    
            then:
            1 * listener.something("12")
            0 * _
        }
    
        def "creates stateful listener registered after broadcaster is created"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            def broadcast = listenerManager.getBroadcaster(TestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        pass_manager.addPass(mlir::odml::CreateLegalizeHloToTfLitePass());
      }
      // TF dialect passes
      pass_manager.addPass(mlir::odml::CreateLegalizeHloToTfPass());
    
      // folds tf.BroadcastTo ops with subsequent ops if they have built in
      // broadcasting support. This needs to be run immediately after HLO->TF
      // legalization; otherwise other passes like `ConvertTFBroadcastTo` will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      SCATTER_ND = 122,
      SELECT_V2 = 123,
      DENSIFY = 124,
      SEGMENT_SUM = 125,
      BATCH_MATMUL = 126,
      PLACEHOLDER_FOR_GREATER_OP_CODES = 127,
      CUMSUM = 128,
      CALL_ONCE = 129,
      BROADCAST_TO = 130,
      RFFT2D = 131,
      CONV_3D = 132,
      IMAG=133,
      REAL=134,
      COMPLEX_ABS=135,
      HASHTABLE = 136,
      HASHTABLE_FIND = 137,
      HASHTABLE_IMPORT = 138,
      HASHTABLE_SIZE = 139,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Create a pass that convert ops that copy tensors between devices, e.g.
    // tf.Identity.
    std::unique_ptr<OperationPass<mlir::func::FuncOp>>
    CreateTensorDeviceCopyConversionPass();
    
    // Returns a pass that folds tf.BroadcastTo nodes with subsequent nodes if they
    // have built in broadcasting support.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateBroadcastFoldPass();
    
    void populateTfControlFlowToScfPatterns(MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top