Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,145 for pass2 (0.08 sec)

  1. src/crypto/tls/bogo_config.json

            "IgnoreClientVersionOrder": "TODO: first pass, this should be fixed",
            "SupportedVersionSelection-TLS12": "TODO: first pass, this should be fixed",
            "MajorVersionTolerance": "TODO: first pass, this should be fixed",
            "DuplicateExtensionServer-TLS-TLS1": "TODO: first pass, this should be fixed",
            "DuplicateExtensionClient-TLS-TLS1": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    				checkExampleName(pass, fn)
    				checkExampleOutput(pass, fn, f.Comments)
    			case strings.HasPrefix(fn.Name.Name, "Test"):
    				checkTest(pass, fn, "Test")
    			case strings.HasPrefix(fn.Name.Name, "Benchmark"):
    				checkTest(pass, fn, "Benchmark")
    			case strings.HasPrefix(fn.Name.Name, "Fuzz"):
    				checkTest(pass, fn, "Fuzz")
    				checkFuzz(pass, fn)
    			}
    		}
    	}
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // `MLIR_BRIDGE_LOG_PASS_FILTER` takes a semicolon-separated list of pass class
    // names, `MLIR_BRIDGE_LOG_STRING_FILTER` takes a semicolon-separated list of
    // strings, and IR is only dumped for a pass invocation if the pass name exactly
    // matches any of the provided pass names and if the serialized operation on
    // which the pass is invoked contains any of the specified strings as a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Creates a pass which unfuses MHLO batch norm inference op into arithmetic
    // ops.
    std::unique_ptr<Pass> createUnfuseBatchNormPass();
    
    // Creates a pass which constant folds broadcast_in_dim op conditionally.
    std::unique_ptr<Pass> createFoldBroadcastPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. logger/sql_test.go

    		},
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (@p1, @p2, @p3, @p4, @p5, @p6, @p7, @p8, @p9, @p10, @p11)",
    			NumericRegexp: regexp.MustCompile(`@p(\d+)`),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

    }
    
    bool BridgeLoggerConfig::ShouldPrint(mlir::Pass* pass, mlir::Operation* op) {
      // Check pass filter first since it's cheaper.
      std::string pass_name = pass->getName().str();
      if (!MatchesFilter(pass_name, pass_filter_, /*exact_match=*/true)) {
        // No string in filter matches pass name.
        VLOG(1) << "Not logging invocation of pass `" << pass_name
                << "` because the pass name does not match any string in "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // TF SavedModel dialect test passes.
    
    def FreezeVariablesTestPass : Pass<"tf-freeze-variables-test-pass",
      "ModuleOp"> {
      let summary = "Freezes read only variables";
    
      let description = [{
        Test pass for freezing read only variables in the graph.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		call := n.(*ast.CallExpr)
    		fn, kind := printfNameAndKind(pass, call)
    		switch kind {
    		case KindPrintf, KindErrorf:
    			checkPrintf(pass, kind, call, fn)
    		case KindPrint:
    			checkPrint(pass, call, fn)
    		}
    	})
    }
    
    func printfNameAndKind(pass *analysis.Pass, call *ast.CallExpr) (fn *types.Func, kind Kind) {
    	fn, _ = typeutil.Callee(pass.TypesInfo, call).(*types.Func)
    	if fn == nil {
    		return nil, 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates a pass which is responsible for legalizing TensorFlow variables to
    // TensorFlow Lite variables.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeVariablesPass();
    
    // Creates a pass which analyze the model whether it is safe to use
    // native TFLite variables or not.
    std::unique_ptr<OperationPass<ModuleOp>> CreateAnalyzeVariablesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // TF SavedModel dialect passes.
    
    def FreezeGlobalTensorsPass : Pass<"tf-saved-model-freeze-global-tensors", "ModuleOp"> {
      let summary = "Freeze tf_saved_model.global_tensor's in func bodies.";
    
      let description = [{
        This pass will replace a func's bound inputs which are bound to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top