Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for opset (0.05 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    		case AABSF:
    			opset(AMOVFD, r0)
    			opset(AMOVDF, r0)
    			opset(AMOVWF, r0)
    			opset(AMOVFW, r0)
    			opset(AMOVWD, r0)
    			opset(AMOVDW, r0)
    			opset(ANEGF, r0)
    			opset(ANEGD, r0)
    			opset(AABSD, r0)
    			opset(ATRUNCDW, r0)
    			opset(ATRUNCFW, r0)
    			opset(ASQRTF, r0)
    			opset(ASQRTD, r0)
    
    		case AMOVVF:
    			opset(AMOVVD, r0)
    			opset(AMOVFV, r0)
    			opset(AMOVDV, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    			opset(ATRUNCDV, r0)
    			opset(ATRUNCFV, r0)
    
    		case AADD:
    			opset(ASGT, r0)
    			opset(ASGTU, r0)
    			opset(AADDU, r0)
    
    		case AADDV:
    			opset(AADDVU, r0)
    
    		case AADDF:
    			opset(ADIVF, r0)
    			opset(ADIVD, r0)
    			opset(AMULF, r0)
    			opset(AMULD, r0)
    			opset(ASUBF, r0)
    			opset(ASUBD, r0)
    			opset(AADDD, r0)
    
    		case AAND:
    			opset(AOR, r0)
    			opset(AXOR, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      Option<OpSet> target_opset_{
          *this, "target-opset", llvm::cl::init(OpSet::TF),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
              clEnumValN(OpSet::UNIFORM_QUANTIZED, "UNIFORM_QUANTIZED",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    			opset(AADDD, r0)
    			opset(ASUBF, r0)
    			opset(ASUBD, r0)
    			opset(AMULF, r0)
    			opset(AMULD, r0)
    			opset(ANMULF, r0)
    			opset(ANMULD, r0)
    			opset(AMULAF, r0)
    			opset(AMULAD, r0)
    			opset(AMULSF, r0)
    			opset(AMULSD, r0)
    			opset(ANMULAF, r0)
    			opset(ANMULAD, r0)
    			opset(ANMULSF, r0)
    			opset(ANMULSD, r0)
    			opset(AFMULAF, r0)
    			opset(AFMULAD, r0)
    			opset(AFMULSF, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA' | FileCheck --check-prefix=XLA %s
    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA enable-per-channel-quantization=true' | FileCheck --check-prefix=XLA_PerChannel %s
    
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    		ipset:                 ipset,
    		nodePortAddresses:     nodePortAddresses,
    		networkInterfacer:     proxyutil.RealNetwork{},
    		gracefuldeleteManager: NewGracefulTerminationManager(ipvs),
    		logger:                logger,
    	}
    	// initialize ipsetList with all sets we needed
    	proxier.ipsetList = make(map[string]*IPSet)
    	for _, is := range ipsetInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    			return true
    		})
    
    		// update group policy map
    		cache.iamGroupPolicyMap.Range(func(g string, mp MappedPolicy) bool {
    			pset := mp.policySet()
    			if !pset.Contains(policy) {
    				return true
    			}
    			pset.Remove(policy)
    			cache.iamGroupPolicyMap.Store(g, newMappedPolicy(strings.Join(pset.ToSlice(), ",")))
    			return true
    		})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    // cleanup returns the posets to the free list
    func (ft *factsTable) cleanup(f *Func) {
    	for _, po := range []*poset{ft.orderS, ft.orderU} {
    		// Make sure it's empty as it should be. A non-empty poset
    		// might cause errors and miscompilations if reused.
    		if checkEnabled {
    			if err := po.CheckEmpty(); err != nil {
    				f.Fatalf("poset not empty after function %s: %v", f.Name, err)
    			}
    		}
    		f.retPoset(po)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "ops and disabling `_experimental_lower_tensor_list_ops` flag in the "
              "TFLite converter object. For example, "
              "converter.target_spec.supported_ops = "
              "[tf.lite.OpsSet.TFLITE_BUILTINS, tf.lite.OpsSet.SELECT_TF_OPS]\\n "
              "converter._experimental_lower_tensor_list_ops = False");
          signalPassFailure();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    // As the names of these symbols are derived from the string of
    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    // contain run-time type information used by the runtime and reflect
    // packages. All Go binaries contain these symbols, but only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top