Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 334 for racewrite (0.16 sec)

  1. tensorflow/compiler/mlir/tfr/passes/decompose.cc

      // rewrite will stop.
      return success(changed);
    }
    
    void DecomposeTFOpsPass::runOnOperation() {
      // Set a maximum iteration threshold in case there are infinite loops in the
      // call stack.
      int max_iterators = 10;
      do {
        // canonicalization
        ApplyCanonicalization();
    
        // rewrite unregistered tf ops. Failed either because no ops can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/internal/poll/fd_plan9.go

    }
    
    // RawRead invokes the user-defined function f for a read operation.
    func (fd *FD) RawRead(f func(uintptr) bool) error {
    	return errors.New("not implemented")
    }
    
    // RawWrite invokes the user-defined function f for a write operation.
    func (fd *FD) RawWrite(f func(uintptr) bool) error {
    	return errors.New("not implemented")
    }
    
    func DupCloseOnExec(fd int) (int, string, error) {
    	nfd, err := syscall.Dup(int(fd), -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/ExperimentalCompilerWarningSilencer.kt

        private
        val rewrittenLevels = listOf(LogLevel.WARN, LogLevel.ERROR)
    
        private
        val unsafeCompilerArgumentsWarningHeader = "This build uses unsafe internal compiler arguments:"
    
        override fun rewrite(logLevel: LogLevel, message: String): String? =
            if (logLevel in rewrittenLevels) rewriteMessage(message)
            else message
    
        private
        fun rewriteMessage(message: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/gofmt/gofmt.go

    	fragmentOk := info == nil
    	file, sourceAdj, indentAdj, err := parse(fileSet, filename, src, fragmentOk)
    	if err != nil {
    		return err
    	}
    
    	if rewrite != nil {
    		if sourceAdj == nil {
    			file = rewrite(fileSet, file)
    		} else {
    			r.Warnf("warning: rewrite ignored for incomplete programs\n")
    		}
    	}
    
    	ast.SortImports(fileSet, file)
    
    	if *simplifyAST {
    		simplify(file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

        if (op.getManualSharding()) {
          // This rewrite does not support manual_sharding. It is expected that the
          // _XlaHostComputeMlirOp registered as an MlirXlaOpKernel will handle this
          // case later once the XlaBuilder graph reaches it.
          return failure();
        }
        return success();
      }
      void rewrite(TF::_XlaHostComputeMlirOp op,
                   PatternRewriter& rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/cover/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Cover is a program for analyzing the coverage profiles generated by
    'go test -coverprofile=cover.out'.
    
    Cover is also used by 'go test -cover' to rewrite the source code with
    annotations to track which parts of each function are executed (this
    is referred to "instrumentation"). Cover can operate in "legacy mode"
    on a single Go source file at a time, or when invoked by the Go tool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFDevice {
    
    // For architectures that support accelerated embedding lookups, this pass will
    // rewrite the graph to use pipelining for better device utilization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator_test.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    var (
    	extendedClient kube.CLIClient
    	kubeClient     client.Client
    )
    
    // TODO: rewrite this with running the actual top level command.
    func TestOperatorDump(t *testing.T) {
    	goldenFilepath := filepath.Join(env.IstioSrc, "operator/cmd/mesh/testdata/operator/output/operator-dump.yaml")
    
    	odArgs := &operatorDumpArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    	// nolint: staticcheck
    	action.MaxGrpcTimeout = action.Timeout
    
    	out.Action = &route.Route_Route{Route: action}
    
    	if in.Rewrite != nil {
    		action.PrefixRewrite = in.Rewrite.GetUri()
    		if in.Rewrite.GetAuthority() != "" {
    			authority = in.Rewrite.GetAuthority()
    		}
    	}
    	if authority != "" {
    		action.HostRewriteSpecifier = &route.RouteAction_HostRewriteLiteral{
    			HostRewriteLiteral: authority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/remove_sharding_custom_call.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project  // IWYU pragma: keep
    #include "mlir/Rewrite/FrozenRewritePatternSet.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 07:04:47 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top