Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pushBack (0.55 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	}
    	pInfo := obj.(*framework.QueuedPodInfo)
    	pInfo.Attempts++
    	p.schedulingCycle++
    	// In flight, no concurrent events yet.
    	if p.isSchedulingQueueHintEnabled {
    		p.inFlightPods[pInfo.Pod.UID] = p.inFlightEvents.PushBack(pInfo.Pod)
    	}
    
    	// Update metrics and reset the set of unschedulable plugins for the next attempt.
    	for plugin := range pInfo.UnschedulablePlugins.Union(pInfo.PendingPlugins) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          // resized.
          if (resized_tensor_list_index.count(i)) {
            updated_types->push_back(
                VariantToUnrankedTensorType(std::get<0>(it), std::get<1>(it)));
          } else {
            updated_types->push_back(std::get<2>(it).getType());
          }
        } else {
          updated_types->push_back(std::get<0>(it));
        }
        ++i;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        output->quantization = std::make_unique<QuantizationParametersT>();
        input->quantization->min.push_back(0.0);
        output->quantization->min.push_back(0.0);
        input->quantization->max.push_back(6.0);
        output->quantization->max.push_back(6.0);
      }
      TensorType tensor_type_;
    };
    
    INSTANTIATE_TEST_SUITE_P(QuantizeConvModelTestInst, QuantizeConvModelTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top