Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for addPass (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          toco_flags.tf_quantization_mode().empty()) {
        pass_manager->addPass(mlir::TFL::CreatePrepareCompositeFunctionsPass());
      }
    
      pass_manager->addPass(mlir::createInlinerPass());
      pass_manager->addPass(mlir::createSymbolDCEPass());
    
      if (pass_config.legalize_custom_tensor_list_ops) {
        pass_manager->addPass(mlir::TFL::CreateLegalizeTensorListPass());
      }
    
      if (pass_config.lower_tensor_list_ops &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      applyTensorflowAndCLOptions(manager);
      manager.addPass(mlir::TF::CreatePrepareTpuComputationForTfExportPass());
      manager.addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
      manager.addPass(mlir::TF::CreateTFShapeInferencePass());
      manager.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateFunctionalToExecutorDialectConversionPass());
      manager.addPass(mlir::CreateBreakUpIslandsPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

        output_mlir_type = input_mlir_type;
      }
    
      tensorflow::AddQuantizationPasses(mlir::TFL::PassConfig(quant_specs), pm);
      pm.addPass(TFL::CreateModifyIONodesPass(input_mlir_type, output_mlir_type));
      // If the first or final ops are not quantized, remove QDQ.
      pm.addPass(TFL::CreatePostQuantizeRemoveQDQPass());
      if (failed(pm.run(module.get()))) {
        const std::string err(statusHandler.ConsumeStatus().message());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

        LOG(ERROR) << "Couldn't import flatbuffer to MLIR.";
        return absl::InternalError("Couldn't import flatbuffer to MLIR.");
      }
    
      PassManager pm((*module)->getName(), OpPassManager::Nesting::Implicit);
      pm.addPass(TFL::CreateDenseToSparsePass());
    
      if (failed(pm.run(module.get()))) {
        LOG(ERROR) << "Failed to sparsify: "
                   << statusHandler.ConsumeStatus().message();
        return absl::InternalError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeHostName, Address: "hostname-2"},
    				{Type: v1.NodeExternalDNS, Address: "hostname-1"},
    				{Type: v1.NodeInternalDNS, Address: "hostname-3"},
    				{Type: v1.NodeInternalIP, Address: "2.2.2.2"},
    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

    syntax = "proto3";
    
    package istio.workload;
    option go_package="pkg/workloadapi";
    
    // Address represents a unique address.
    //
    // Address joins two sub-resources, Workload and Service, to support querying by IP address.
    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    // IPv6Unspecified returns the IPv6 unspecified address "::".
    func IPv6Unspecified() Addr { return Addr{z: z6noz} }
    
    // IPv4Unspecified returns the IPv4 unspecified address "0.0.0.0".
    func IPv4Unspecified() Addr { return AddrFrom4([4]byte{}) }
    
    // AddrFrom4 returns the address of the IPv4 address given by the bytes in addr.
    func AddrFrom4(addr [4]byte) Addr {
    	return Addr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet.go

    	seenDNSNames := map[string]bool{}
    	seenIPs := map[string]bool{}
    	for _, address := range addresses {
    		if len(address.Address) == 0 {
    			continue
    		}
    
    		switch address.Type {
    		case v1.NodeHostName:
    			if ip := netutils.ParseIPSloppy(address.Address); ip != nil {
    				seenIPs[address.Address] = true
    			} else {
    				seenDNSNames[address.Address] = true
    			}
    		case v1.NodeExternalIP, v1.NodeInternalIP:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/options.go

    type DiscoveryServerOptions struct {
    	// The listening address for HTTP (debug). If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	HTTPAddr string
    
    	// The listening address for HTTPS (webhooks). If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	// If the address is empty, the secure port is disabled, and the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            previousValues[key]?.let { previouslyCached ->
                return previouslyCached
            }
    
            val value = creator()
            val address = valuesStore.write(value)
            // Only return the address to enforce load-after-store behavior
            return address
        }
    
        private
        fun displayNameFor(key: K): DisplayName {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top