Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for _typ (0.04 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _shape = _o->shape.size() ? _fbb.CreateVector(_o->shape) : 0;
      auto _type = _o->type;
      auto _has_rank = _o->has_rank;
      return tflite::CreateVariantSubType(
          _fbb,
          _shape,
          _type,
          _has_rank);
    }
    
    inline TensorT::TensorT(const TensorT &o)
          : shape(o.shape),
            type(o.type),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    					break
    				}
    				fatalf("malformed DWARF TagVariable entry")
    			}
    			if !strings.HasPrefix(name, "__cgo__") {
    				break
    			}
    			typ, err := d.Type(typOff)
    			if err != nil {
    				fatalf("loading DWARF type: %s", err)
    			}
    			t, ok := typ.(*dwarf.PtrType)
    			if !ok || t == nil {
    				fatalf("internal error: %s has non-pointer type", name)
    			}
    			i, err := strconv.Atoi(name[7:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top