Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 225 for broadcasts (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    	// Send a couple events after closing the broadcast channel.
    	t.Log("Sending event")
    
    	err := m.Action(event.Type, event.Object)
    	assert.EqualError(t, err, "broadcaster already stopped", "ActionOrDrop should report error id broadcaster is shutdown")
    
    	sendOnClosed, err := m.ActionOrDrop(event.Type, event.Object)
    	assert.Equal(t, sendOnClosed, false, "ActionOrDrop should return false if broadcaster is already shutdown")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

        // Check that the i'th operand is a broadcast.
        auto broadcast = llvm::dyn_cast_or_null<TF::BroadcastToOp>(
            op->getOpOperand(i).get().getDefiningOp());
        if (!broadcast) continue;
    
        // Check that the operand of the broadcast has fully defined shape.
        auto broadcast_arg_type = mlir::dyn_cast_or_null<RankedTensorType>(
            broadcast.getInput().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                val broadcast = listenerManager.getBroadcaster(TaskExecutionAccessListener::class.java)
                return when {
                    !modelParameters.isConfigurationCache -> TaskExecutionAccessCheckers.TaskStateBased(broadcast, workExecutionTracker)
                    configurationCacheStartParameter.single().taskExecutionAccessPreStable -> TaskExecutionAccessCheckers.TaskStateBased(broadcast, workExecutionTracker)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

          return rewriter.notifyMatchFailure(
              binary_op, "Operands should have exactly one BroadcastInDim op.");
        }
        // When the operand other than the broadcast op is not a const op, we
        // should not fold broadcast op.
        auto binary_op_const_operand =
            (lhs_bcast_op ? rhs : lhs).template getDefiningOp<mhlo::ConstantOp>();
        if (!binary_op_const_operand) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            when:
            broadcast.started(d1, new OperationStartEvent(0))
            broadcast.started(d2, null)
    
            broadcast.started(d3, new OperationStartEvent(0))
            broadcast.finished(d3, new OperationFinishEvent(-1, -1, null, null))
    
            broadcast.started(d4, new OperationStartEvent(0))
            broadcast.started(d5, new OperationStartEvent(0))
            broadcast.started(d6, new OperationStartEvent(0))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "clEnumValN(MoveTransposeDirection::kEnd, \"end\", \"end of the block\"))">
      ];
    }
    
    def BroadcastFoldPass : Pass<"tf-broadcast-fold", "mlir::func::FuncOp"> {
      let summary = "Fold explicit broadcasts into the following operations if they "
               "support implicit broadcasting on their operand.";
      let constructor = "TF::CreateBroadcastFoldPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      auto cst_attr = rewriter.getI64TensorAttr(values);
      return rewriter.create<TF::ConstOp>(location, cst_attr.getType(), cst_attr);
    }
    
    // Rewrites broadcast->reshape to a reshape->broadcast that reduces
    // the rank of the input and output of the broadcast.
    class SimplifyBroadcastReshape : public OpRewritePattern<BroadcastToOp> {
      using OpRewritePattern<BroadcastToOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend class internal::NoExecDeathTest;
      friend class internal::TestEventListenersAccessor;
      friend class internal::UnitTestImpl;
    
      // Returns repeater that broadcasts the TestEventListener events to all
      // subscribers.
      TestEventListener* repeater();
    
      // Sets the default_result_printer attribute to the provided listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend class internal::NoExecDeathTest;
      friend class internal::TestEventListenersAccessor;
      friend class internal::UnitTestImpl;
    
      // Returns repeater that broadcasts the TestEventListener events to all
      // subscribers.
      TestEventListener* repeater();
    
      // Sets the default_result_printer attribute to the provided listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    // Check if broadcast dimensions match Tensorflow convention.
    def IsTFStyleBroadcast : Constraint<CPred<"IsTFStyleBroadcast($0, $1)">,
        "new dimensions are added as prefix">;
    
    def IsNotWithinScatterRegion : Constraint<CPred<"!IsWithinOpRegion<mhlo::ScatterOp>($0)">,
        "binary ops within scatter regions are not converted">;
    
    // Check if broadcast dimensions do not match Tensorflow convention.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top