Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for broadcast_or (0.2 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

          readonly_model_->subgraphs()->Get(subgraph_idx);
    
      // There should be a single broadcast_to op.
      EXPECT_THAT(*readonly_subgraph->operators(), SizeIs(1));
      EXPECT_THAT(subgraph->operators, SizeIs(1));
      const auto& broadcast_to = subgraph->operators[0];
      EXPECT_THAT(model_.operator_codes[broadcast_to->opcode_index]->builtin_code,
                  Eq(BuiltinOperator_BROADCAST_TO));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K 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/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

        }
    
        private void start() {
            ScheduledFuture<?> ignored = scheduler.scheduleAtFixedRate(new MemoryCheck(), STATUS_INTERVAL_SECONDS, STATUS_INTERVAL_SECONDS, TimeUnit.SECONDS);
            LOGGER.debug("Memory status broadcaster started");
            if (osMemoryStatusSupported) {
                addListener(osMemoryStatusListener);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/schedule_one_test.go

    	broadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: client.EventsV1()})
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	informerFactory := informers.NewSharedInformerFactory(client, 0)
    	sched, err := New(
    		ctx,
    		client,
    		informerFactory,
    		nil,
    		profile.NewRecorderFactory(broadcaster),
    		WithProfiles(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

      "tf_device.cluster"() ({
        // CHECK-NOT: ResourceScatterUpdate
        // CHECK-NOT: BroadcastTo
        // CHECK: TensorScatterAdd
        "tf.ResourceScatterAdd"(%resource, %indices, %updates) {device = ""} : (tensor<*x!tf_type.resource>, tensor<?xi32>, tensor<i32>) -> ()
        tf_device.return
      }) : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[BROADCAST:.+]] = "tfl.broadcast_to"(%[[ARG0]], %[[SHAPE]]) : (tensor<1x2x!quant.uniform<i8:f32, 2.000000e+00:3>>, tensor<2xi32>) -> tensor<3x2x!quant.uniform<i8:f32, 2.000000e+00:3>>
    // CHECK: return %[[BROADCAST]]
    
    // -----
    
    // Tests that a quantized `stablehlo.broadcast_in_dim` is converted to
    // `tfl.transpose` and `tfl.broadcast_to` when `broadcast_dimensions` is not in
    // ascending order.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %4 = "tfl.broadcast_args"(%2, %3) : (tensor<8xi64>, tensor<8xi64>) -> tensor<8xi64>
      %5 = "tfl.broadcast_to"(%arg0, %4) : (tensor<8x7x6x5x?x3x2x1xi1>, tensor<8xi64>) -> tensor<8x7x6x5x?x3x2x1xi1>
      %6 = "tfl.broadcast_to"(%arg1, %4) : (tensor<8x7x6x5x?x3x2x1xf32>, tensor<8xi64>) -> tensor<8x7x6x5x?x3x2x1xf32>
      %7 = "tfl.broadcast_to"(%arg2, %4) : (tensor<?x3x2x1xf32>, tensor<8xi64>) -> tensor<8x7x6x5x?x3x2x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %cst = arith.constant dense<0> : tensor<1xui32>
      %0 = "tfl.broadcast_to"(%cst, %arg0) : (tensor<1xui32>, tensor<1xi32>) -> tensor<?xui32>
      return %0 : tensor<?xui32>
    
      // CHECK:  %cst = arith.constant dense<0> : tensor<1xui32>
      // CHECK:  %0 = "tfl.broadcast_to"(%cst, %arg0) : (tensor<1xui32>, tensor<1xi32>) -> tensor<?xui32>
      // CHECK:  return %0 : tensor<?xui32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	defer utilruntime.HandleCrash()
    	logger := klog.FromContext(ctx)
    
    	// Start events processing pipeline.
    	jm.broadcaster.StartStructuredLogging(3)
    	jm.broadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: jm.kubeClient.CoreV1().Events("")})
    	defer jm.broadcaster.Shutdown()
    
    	defer jm.queue.ShutDown()
    	defer jm.orphanQueue.ShutDown()
    
    	logger.Info("Starting job controller")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top