Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for optimizing (0.21 sec)

  1. tensorflow/compiler/mlir/g3doc/overview.md

    and library of compiler utilities that sits between the model representation
    and low-level compilers/executors that generate hardware-specific code.
    
    MLIR is, at its heart, a flexible infrastructure for modern optimizing
    compilers. This means it consists of a specification for intermediate
    representations (IR) and a code toolkit to perform transformations on that
    representation. (In compiler parlance, as you move from higher-level
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. test/chan/select5.go

    	default:
    		panic("nonblock")
    	{{end}}
    	{{/*  Dummy send, receive to keep compiler from optimizing select. */}}
    	{{if .Maybe}}
    	case dummy <- 1:
    		panic("dummy send")
    	{{end}}
    	{{if .Maybe}}
    	case <-dummy:
    		panic("dummy receive")
    	{{end}}
    	{{/*  Nil channel send, receive to keep compiler from optimizing select. */}}
    	{{if .Maybe}}
    	case nilch <- 1:
    		panic("nilch send")
    	{{end}}
    	{{if .Maybe}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            when:
            inFile.copyTo(copy)
            inFile.delete()
            inFile.createLink(copy)
            run("work")
    
            /*
             * This documents the current behavior, which is optimizing
             * for performance at the expense of not detecting some corner
             * cases. If there actually is a task that needs to distinguish
             * between links and real files, we should probably provide an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      pm.addNestedPass<func::FuncOp>(createNchwConvolutionToNhwcPass());
    
      // Folds `stablehlo.constant`->`stablehlo.transpose` patterns, which is often
      // generated as by-products after optimizing dimension numbers (e.g.
      // NCHW->NHWC convolution conversion).
      pm.addNestedPass<func::FuncOp>(createFoldConstantTransposePass());
      pm.addPass(CreateLiftQuantizableSpotsAsFunctionsPass(quantization_specs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/cachecontrol.go

    import (
    	"net/http"
    )
    
    // WithCacheControl sets the Cache-Control header to "no-cache, private" because all servers are protected by authn/authz.
    // see https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching#defining_optimal_cache-control_policy
    func WithCacheControl(handler http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 17:00:31 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<dependency_management_terminology.adoc#dependency_management_terminology,Working with Dependencies>> :: Add dependencies to your build.
    <<performance.adoc#performance_gradle,Optimizing Builds>> :: Use caches to optimize your build and understand the Gradle daemon, incremental builds and file system watching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    namespace TF {
    
    inline constexpr char kStandardPipelineBefore[] = "standard_pipeline_before";
    inline constexpr char kStandardPipelineAfter[] = "standard_pipeline_after";
    
    // Runs all passes involved in transforming or optimizing an MLIR graph without
    // any target specialization. When enable_logging is true, enables
    // tensorflow::BridgeLogger. When enable_inliner is true, enables the inliner
    // pass.
    ABSL_DEPRECATED(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_util.c

    	it also runs a bunch of user-supplied malloc hooks.
    
    	So we choose strncpy(_, _, 0): it requires an extra header,
    	but it's standard and should be very efficient.
    
    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    	https://golang.org/issue/21196), so the arguments here need to be global
    	variables with external linkage in order to ensure that the call traps all the
    	way down into libc.
    	*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/OptimizingExcludeFactory.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.specs.ExcludeSpec;
    
    import java.util.Iterator;
    import java.util.Set;
    
    /**
     * This factory is responsible for optimizing in special cases: null parameters,
     * list with 2 elements, ... and should be at the top of the delegation chain.
     */
    public class OptimizingExcludeFactory extends DelegatingExcludeFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

    image::build-scan-1.png[]
    
    The information that scans collect can be an invaluable resource when troubleshooting, collaborating on, or optimizing the performance of your builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top