Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for type_attr (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // types. But we need to wrap it up with ElementsAttr to construct
        // valid TensorFlow constants.
        auto typed_attr = mlir::cast<TypedAttr>(value);
        type = tensorflow::GetTypeFromTFTensorShape(/*shape=*/{},
                                                    typed_attr.getType());
        return ConstOp::build(builder, result, DenseElementsAttr::get(type, value));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    // requires relocation.
    func markRelocs(p *obj.Prog) {
    	switch p.As {
    	case AMOV, AMOVB, AMOVH, AMOVW, AMOVBU, AMOVHU, AMOVWU, AMOVF, AMOVD:
    		switch {
    		case p.From.Type == obj.TYPE_ADDR && p.To.Type == obj.TYPE_REG:
    			switch p.From.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC:
    				p.Mark |= NEED_PCREL_ITYPE_RELOC
    			}
    		case p.From.Type == obj.TYPE_MEM && p.To.Type == obj.TYPE_REG:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // Const op can have a result of dynamic shaped type (e.g. due to constant
        // folding), but we can still derive the shape of a constant tensor for
        // its attribute type.
        auto tensor_attr = mlir::cast<mlir::TypedAttr>(inst->getAttr("value"));
        llvm::ArrayRef<int64_t> shape_ref =
            mlir::cast<TensorType>(tensor_attr.getType()).getShape();
        if (mlir::failed(check_shape(shape_ref))) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
      let results = (outs
        Res<TF_ResourceTensor, [{Handle to a table.}], [TF_LookupTableAlloc]>:$table_handle
      );
    
      let builders = [
        OpBuilder<(ins "StringAttr":$container, "StringAttr":$shared_name,
          "BoolAttr":$use_node_name_sharing, "TypeAttr":$key_dtype, "TypeAttr":$value_dtype),
        [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    				return C_SOREG
    			}
    			return C_LOREG
    		}
    
    		return C_GOK
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != obj.REG_NONE {
    				if -BIG <= c.instoffset && c.instoffset <= BIG {
    					return C_SACON
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    			}
    			return C_LOREG
    
    		case obj.NAME_GOTREF:
    			return C_GOTADDR
    		}
    
    		return C_GOK
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != 0 {
    				if -BIG <= c.instoffset && c.instoffset <= BIG {
    					return C_SACON
    				}
    				if isint32(c.instoffset) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    			return C_ZFCON
    		}
    		if c.chipfloat5(a.Val.(float64)) >= 0 {
    			return C_SFCON
    		}
    		return C_LFCON
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != 0 {
    				return c.aconsize()
    			}
    
    			if immrot(uint32(c.instoffset)) != 0 {
    				return C_RCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		if f64 == 0 {
    			if math.Signbit(f64) {
    				return C_S16CON
    			}
    			return C_ZCON
    		}
    		log.Fatalf("Unexpected nonzero FCONST operand %v", a)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != 0 {
    				if -BIG <= c.instoffset && c.instoffset < BIG {
    					return C_SACON
    				}
    				if isint32(c.instoffset) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	case obj.TYPE_FCONST:
    		if f64, ok := a.Val.(float64); ok && math.Float64bits(f64) == 0 {
    			return C_ZCON
    		}
    		c.ctxt.Diag("cannot handle the floating point constant %v", a.Val)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != 0 {
    				if -BIG <= c.instoffset && c.instoffset <= BIG {
    					return C_SACON
    				}
    				if isint32(c.instoffset) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    			return oregclass(c.instoffset)
    		}
    		return C_GOK
    
    	case obj.TYPE_FCONST:
    		return C_FCON
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_CONST, obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    			c.instoffset = a.Offset
    			if a.Reg != 0 && a.Reg != REGZERO {
    				break
    			}
    			v := c.instoffset
    			if v == 0 {
    				return C_ZCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top