Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 436 for rewrite (0.17 sec)

  1. tensorflow/compiler/mlir/lite/transforms/quantize.cc

              dynamic_range_op.GetDynamicRangeQuantKernelSupport();
    
          return is_blocklisted || !kernel_support || weight_only_quantization;
        }
      }
    };
    
    // Full integer quantization rewrite pattern using DQ as the root op.
    struct TFLFullQuantization
        : public TFLQuantizationBase<kFullQuantization, TFLFullQuantization> {
      explicit TFLFullQuantization(MLIRContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      return IsBounded(updated);
    }
    
    // Propagates more refined type by cloning op using the new operands. This
    // allows all rewrite patterns that requires refined types to work without
    // requiring a rewrite to the conversion pattern. Declarative rewrite pattern
    // (DRR) doesn't even support conversion patterns with TableGen.
    class TypePropagator : public ConversionPattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

    }
    
    // Holds the size value of a tensor list and whether the size is statically
    // known (fixed).
    struct SizeInfo {
      Value size;
      bool fixed;
    };
    
    // Modifies a function's signature to rewrite tensor list arguments to buffers
    // and sizes.
    void ModifyFunctionSignature(
        func::FuncOp func, Type size_type,
        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/MessageRewritingBuildOperationAwareLogger.java

            return messageRewriter;
        }
    
        @Override
        void log(LogLevel logLevel, Throwable throwable, String message, OperationIdentifier operationIdentifier) {
            final String rewrittenMessage = messageRewriter.rewrite(logLevel, message);
            if (rewrittenMessage == null) {
                return;
            }
            delegate.log(logLevel, throwable, rewrittenMessage, operationIdentifier);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 15:58:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		Http: []*networking.HTTPRoute{
    			{
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "full-path-rewrite",
    					},
    				},
    				Rewrite: &networking.HTTPRewrite{
    					UriRegexRewrite: &networking.RegexRewrite{
    						Match:   "/.*",
    						Rewrite: "/replace-full",
    					},
    				},
    				Route: []*networking.HTTPRouteDestination{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/aot/codegen.cc

          count *= shape.dimensions(dim);
        }
      }
      rewrites->push_back({"{{I}}", absl::StrCat(i)});
      rewrites->push_back({"{{TYPE}}", type});
      rewrites->push_back({"{{DIM_VARS}}", absl::StrJoin(dim_vars, ", ")});
      rewrites->push_back({"{{DIM_SIZES}}", dim_sizes});
      rewrites->push_back({"{{INDICES}}", indices});
      rewrites->push_back({"{{COUNT}}", absl::StrCat(count)});
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. 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)
Back to top