Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,430 for addPass (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      pm.enableVerifier(false);
    
      QuantizationSpecs quant_specs;
      quant_specs.inference_type = tensorflow::DT_QINT8;
      quant_specs.disable_per_channel = !enable_per_channel_quantization_;
    
      pm.addPass(CreatePreprocessOpPass(target_opset_, quantization_method_,
                                        enable_per_channel_quantization_));
    
      // Apply activation-weight quantization.
      if (quantization_method_ ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      }
      PassManager pm(func_.getContext());
      ::tensorflow::applyTensorflowAndCLOptions(pm);
      pm.addNestedPass<func::FuncOp>(
          CreateFunctionalToExecutorDialectConversionPass());
      pm.addPass(CreateBreakUpIslandsPass());
    
      // In case of failure, the `diag_handler` converts MLIR errors emitted to
      // the MLIRContext into a tensorflow::Status.
      StatusScopedDiagnosticHandler diag_handler(func_.getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
      AddRegionsForTflWhileOp(module);
      AddRegionsForStableHLOOp(module);
      if (!disable_vhlo_to_stablehlo) {
        mlir::PassManager pass_manager(module.getContext());
        pass_manager.addPass(mlir::odml::createLegalizeVhloToStablehloPass());
        auto result = pass_manager.run(module);
        if (failed(result)) {
          return nullptr;
        }
      }
      return OwningOpRef<mlir::ModuleOp>(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Address.java

     * 
     * @author mbechler
     *
     */
    public interface Address {
    
        /**
         * 
         * @param type
         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 2018
    - 2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Address.kt

     * explicitly requested), this also includes that proxy information. For secure connections the
     * address also includes the SSL socket factory, hostname verifier, and certificate pinner.
     *
     * HTTP requests that share the same [Address] may also share the same [Connection].
     */
    class Address(
      uriHost: String,
      uriPort: Int,
      /** Returns the service that will be used to resolve IP addresses for hostnames. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/compileGoodCode/src/main/groovy/Address.groovy

    import com.google.common.base.Strings
    
    class Address {
        String street
    
        String getNonNullStreet() {
            Strings.nullToEmpty(street)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 150 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/address.go

    import (
    	"errors"
    	"syscall"
    	"unsafe"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/route/address.go

    	"runtime"
    	"syscall"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // A LinkAddr represents a link-layer address.
    type LinkAddr struct {
    	Index int    // interface index when attached
    	Name  string // interface name when attached
    	Addr  []byte // link-layer address when attached
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/Address.java

     * limitations under the License.
     */
    package org.gradle.internal.remote;
    
    import java.io.Serializable;
    
    /**
     * The address for a communication endpoint. Addresses are immutable.
     */
    public interface Address extends Serializable {
        /**
         * Returns the display name for this address. Implementations should also override toString() to return the display name.
         *
         * @return The display name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1022 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          mlir::tf_executor::CreateTFExecutorGraphPruningPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateExecutorDialectToFunctionalConversionPass());
      if (!include_variables_in_initializers) {
        pm.addPass(
            mlir::tf_saved_model::CreateRemoveVariablesInSessionInitializerPass());
      }
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top