Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for LookUp (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // follows: first M function params are dictated by the set
      // output shapes and types, the next N are the last Ninputs from MapDataset
      // op. The MapDataset op always has N+1 inputs.
      // TODO(jpienaar): Avoid this lookup.
      auto module = op->getParentOfType<ModuleOp>();
      auto f = module.lookupSymbol<func::FuncOp>(op.getF());
      // Skip if function is not found or more than one caller.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                       llvm::dyn_cast_or_null<mlir::quantfork::StatisticsOp>(
                           operand.getDefiningOp()))
            operands.push_back(tensor_index_map.lookup(stats_op.getArg()));
          else
            operands.push_back(tensor_index_map.lookup(operand));
        }
    
        // CustomTfOp is just a wrapper around a TF op, we export the custom Op
        // not the wrapper, so we fetch the op from the region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	}
    	// If they are the same length, settle ties using string ordering.
    	for i := range s {
    		if s[i] != t[i] {
    			return s[i] < t[i]
    		}
    	}
    	return false // they are equal
    }
    
    // packageCache is a lookup cache for LoadImport,
    // so that if we look up a package multiple times
    // we return the same pointer each time.
    var packageCache = map[string]*Package{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      return builder.create<ConstOp>(
          value.getLoc(), output_type,
          DenseIntElementsAttr::get(output_type, num_elements));
    }
    
    Type GetEmbeddingLookupShape(Value lookup, Value value) {
      auto lookup_type = mlir::cast<ShapedType>(lookup.getType());
      if (!lookup_type.hasStaticShape()) {
        return nullptr;
      }
      auto value_type = mlir::cast<ShapedType>(value.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	"STSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄԽՄ" +
    	"խ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    	"STSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄԽՄ" +
    	"խ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"\x00zne\x00zuulzxx\x00zza\x00\xff\xff\xff\xff"
    
    const langNoIndexOffset = 1330
    
    // langNoIndex is a bit vector of all 3-letter language codes that are not used as an index
    // in lookup tables. The language ids for these language codes are derived directly
    // from the letters and are not consecutive.
    // Size: 2197 bytes, 2197 elements
    var langNoIndex = [2197]uint8{
    	// Entry 0 - 3F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables15.0.0.go

    	"STSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄԽՄ" +
    	"խ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 106.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    			if p.To.Type != obj.TYPE_REG {
    				ctxt.Diag("non-retpoline-compatible: %v", p)
    				continue
    			}
    			p.To.Type = obj.TYPE_BRANCH
    			p.To.Name = obj.NAME_EXTERN
    			p.To.Sym = ctxt.Lookup("runtime.retpoline" + obj.Rconv(int(p.To.Reg)))
    			p.To.Reg = 0
    			p.To.Offset = 0
    		}
    	}
    
    	var count int64 // rough count of number of instructions
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertHeader("", "ef")
      }
    
      @Test
      fun customDns() {
        // Configure a DNS that returns our local MockWebServer for android.com.
        val dns = FakeDns()
        dns["android.com"] = Dns.SYSTEM.lookup(server.url("/").host)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top