Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for act_func (0.5 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         $operand, $act_func),
        (BinaryOp $input, $operand, $act_func),
      [(OperandsBroadcastToOutputType $input, $operand, $result),
       (HasRankAtMost<4> $input),
       (HasRankAtMost<4> $operand)]>;
    
      def FuseTileBroadcastToBinaryOp2#BinaryOp : Pat<
        (BinaryOp:$result $operand,
          (TFL_TileOp $input, (Arith_ConstantOp $tile)), $act_func),
        (BinaryOp $operand, $input, $act_func),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	if options.RESTOptions == nil {
    		return fmt.Errorf("options for %s must have RESTOptions set", e.DefaultQualifiedResource.String())
    	}
    
    	attrFunc := options.AttrFunc
    	if attrFunc == nil {
    		if isNamespaced {
    			attrFunc = storage.DefaultNamespaceScopedAttr
    		} else {
    			attrFunc = storage.DefaultClusterScopedAttr
    		}
    	}
    	if e.PredicateFunc == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		cleanAction = &work.Action{
    			Mode:       "test clean",
    			Actor:      work.ActorFunc(builderCleanTest),
    			Deps:       []*work.Action{runAction},
    			Package:    p,
    			IgnoreFail: true, // clean even if test failed
    			Objdir:     testDir,
    		}
    		printAction = &work.Action{
    			Mode:       "test print",
    			Actor:      work.ActorFunc(builderPrintTest),
    			Deps:       []*work.Action{cleanAction},
    			Package:    p,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		if target.Arch.Family == sys.I386 && cgoexp && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else if target.Arch.Family == sys.ARM && cgoeDynamic && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_OBJECT)
    		}
    		d.AddUint8(t)
    		d.AddUint8(0)
    
    		/* shndx */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		ver := 0
    		symname := elfsym.Name // (unmangled) symbol name
    		if elf.ST_TYPE(elfsym.Info) == elf.STT_FUNC && strings.HasPrefix(elfsym.Name, "type:") {
    			ver = abiInternalVer
    		} else if buildcfg.Experiment.RegabiWrappers && elf.ST_TYPE(elfsym.Info) == elf.STT_FUNC {
    			// Demangle the ABI name. Keep in sync with symtab.go:mangleABIName.
    			if strings.HasSuffix(elfsym.Name, ".abiinternal") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		Field:       field,
    		GetAttrs:    determinePodGetAttrFunc(namespaceScoped, indexField),
    		IndexFields: indexField,
    	}
    }
    
    func determinePodGetAttrFunc(namespaceScoped bool, indexField []string) storage.AttrFunc {
    	if indexField != nil {
    		if namespaceScoped {
    			return namespacedScopedNodeNameAttrFunc
    		}
    		return clusterScopedNodeNameAttrFunc
    	}
    	if namespaceScoped {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top