Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for act_func (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

          {"quantized_ops": ["${main_op}", "Relu6"], "act_func": "internal_requantize_and_relu6_fn", "output_type": "i8"},
          {"quantized_ops": ["${main_op}"], "act_func": "internal_dequantize_no_activation_fn", "output_type": "f32"},
          {"quantized_ops": ["${main_op}", "Relu"], "act_func": "internal_dequantize_and_relu_fn", "output_type": "f32"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

        parameters[
          {"quantized_ops": ["${main_op}", "BiasAdd"], "act_func": "internal_requantize_no_activation_fn", "output_type": "!tf_type.qint8"},
          {"quantized_ops": ["${main_op}", "BiasAdd", "Relu"], "act_func": "internal_requantize_and_relu_fn", "output_type": "!tf_type.qint8"},
          {"quantized_ops": ["${main_op}", "BiasAdd", "Relu6"], "act_func": "internal_requantize_and_relu6_fn", "output_type": "!tf_type.qint8"},
        ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    // An Actor runs an action.
    type Actor interface {
    	Act(*Builder, context.Context, *Action) error
    }
    
    // An ActorFunc is an Actor that calls the function.
    type ActorFunc func(*Builder, context.Context, *Action) error
    
    func (f ActorFunc) Act(b *Builder, ctx context.Context, a *Action) error {
    	return f(b, ctx, a)
    }
    
    // An Action represents a single action in the action graph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/debug/gosym/symtab.go

    		t.Funcs = t.go12line.go12Funcs()
    	}
    	if obj != nil {
    		obj.Funcs = t.Funcs[lastf:]
    	}
    	return &t, nil
    }
    
    // PCToFunc returns the function containing the program counter pc,
    // or nil if there is no such function.
    func (t *Table) PCToFunc(pc uint64) *Func {
    	funcs := t.Funcs
    	for len(funcs) > 0 {
    		m := len(funcs) / 2
    		fn := &funcs[m]
    		switch {
    		case pc < fn.Entry:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/symtab.go

    			panic("unexpected type for runtime.text symbol")
    		}
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// Text symbols.
    	for _, s := range ctxt.Textp {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// runtime.etext marker symbol.
    	s = ldr.Lookup("runtime.etext", 0)
    	if ldr.SymType(s) == sym.STEXT {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	shouldBeInSymbolTable := func(s loader.Sym) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  6. pkg/registry/core/replicationcontroller/storage/storage.go

    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: replicationcontroller.GetAttrs}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, err
    	}
    
    	statusStore := *store
    	statusStore.UpdateStrategy = replicationcontroller.StatusStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    		UpdateStrategy:      strategy,
    		DeleteStrategy:      strategy,
    		ResetFieldsStrategy: strategy,
    
    		TableConvertor: tableConvertor,
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: strategy.GetAttrs}
    	if err := store.CompleteWithOptions(options); err != nil {
    		panic(err) // TODO: Propagate error up
    	}
    	storage.CustomResource = &REST{store, categories}
    
    	if strategy.status != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. pkg/registry/core/namespace/storage/storage.go

    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: namespace.GetAttrs}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, nil, err
    	}
    
    	statusStore := *store
    	statusStore.UpdateStrategy = namespace.StatusStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  9. pkg/registry/apps/replicaset/storage/storage.go

    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: replicaset.GetAttrs}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, err
    	}
    
    	statusStore := *store
    	statusStore.UpdateStrategy = replicaset.StatusStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/storage.go

    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{
    		RESTOptions: optsGetter,
    		AttrFunc:    registrypod.GetAttrs,
    		TriggerFunc: map[string]storage.IndexerFunc{"spec.nodeName": registrypod.NodeNameTriggerFunc},
    		Indexers:    registrypod.Indexers(),
    	}
    	if err := store.CompleteWithOptions(options); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top