Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,000 for pass2 (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // TODO(hinsu): Investigate if we really need SCCP pass before shape inference
      // and can do with just one pass after the shape inference.
      pm.addPass(mlir::createSCCPPass());
      // Guarantee all functions have one use, which enables shape inference.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
      // Run shape inference pass before tensorlist decomposition to get buffer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_fr.properties

    errors.invalid_kuromoji_segmentation=Le nombre de segmentations {0} ne correspond pas au nombre de lectures {1}.
    errors.invalid_str_is_included="{1}" dans "{0}" n'est pas valide.
    errors.blank_password=Le mot de passe est requis.
    errors.invalid_confirm_password=Confirmer le mot de passe ne correspond pas.
    errors.cannot_delete_doc_because_of_running=Crawler est en cours d'exécution. Le document ne peut pas être supprimé.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

    //===----------------------------------------------------------------------===//
    // The prepare-quantize Pass.
    //
    namespace mlir {
    namespace quant {
    
    namespace {
    
    using QuantMethod = tensorflow::quantization::QuantizationMethod::PresetMethod;
    
    // Applies prepare quantization on the model in TF dialect. This pass runs
    // before the quantization pass and propagate the quantization parameters
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    Finally, the Run field contains a function to be called by the driver to
    execute the analysis on a single package. The driver passes it an
    instance of the Pass type.
    
    # Pass
    
    A [Pass] describes a single unit of work: the application of a particular
    Analyzer to a particular package of Go code.
    The Pass provides information to the Analyzer's Run function about the
    package being analyzed, and provides operations to the Run function for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/stackalloc.go

    func stackalloc(f *Func, spillLive [][]ID) [][]ID {
    	if f.pass.debug > stackDebug {
    		fmt.Println("before stackalloc")
    		fmt.Println(f.String())
    	}
    	s := newStackAllocState(f)
    	s.init(f, spillLive)
    	defer putStackAllocState(s)
    
    	s.stackalloc()
    	if f.pass.stats > 0 {
    		f.LogStat("stack_alloc_stats",
    			s.nArgSlot, "arg_slots", s.nNotNeed, "slot_not_needed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_fr.properties

    labels.ldapAdminSecurityPrincipal	=	Bind DN
    labels.ldapAdminSecurityCredentials	=	Mot de passe
    labels.ldapBaseDn	=	DN de base
    labels.ldapAccountFilter	=	Filtre de compte
    labels.ldapGroupFilter	=	Filtre de groupe
    labels.ldapMemberofAttribute	=	Attribut memberOf
    labels.oldPassword	=	Mot de passe actuel
    labels.newPassword	=	nouveau mot de passe
    labels.confirmNewPassword	=	Nouveau mot de passe (confirmer)
    
    labels.menu_system	=	Système
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Interfaces/CallInterfaces.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Rewrite/FrozenRewritePatternSet.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    		case undoSetChl:
    			po.setchl(pass.idx, pass.edge)
    
    		case undoSetChr:
    			po.setchr(pass.idx, pass.edge)
    
    		case undoNonEqual:
    			po.noneq[uint32(pass.ID)].Clear(pass.idx)
    
    		case undoNewNode:
    			if pass.idx != po.lastidx {
    				panic("invalid newnode index")
    			}
    			if pass.ID != 0 {
    				if po.values[pass.ID] != pass.idx {
    					panic("invalid newnode undo pass")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    	return authenticateSSHConnection(c, key, nil)
    }
    
    func sshPasswordAuth(c ssh.ConnMetadata, pass []byte) (*ssh.Permissions, error) {
    	return authenticateSSHConnection(c, nil, pass)
    }
    
    func authenticateSSHConnection(c ssh.ConnMetadata, key ssh.PublicKey, pass []byte) (*ssh.Permissions, error) {
    	user, found := strings.CutSuffix(c.User(), "=ldap")
    	if found {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top