Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ComplexType (0.16 sec)

  1. src/cmd/cgo/gcc.go

    		case 4:
    			t.Go = c.float32
    		case 8:
    			t.Go = c.float64
    		}
    		if t.Align = t.Size; t.Align >= c.ptrSize {
    			t.Align = c.ptrSize
    		}
    
    	case *dwarf.ComplexType:
    		switch t.Size {
    		default:
    			fatalf("%s: unexpected: %d-byte complex type - %s", lineno(pos), t.Size, dtype)
    		case 8:
    			t.Go = c.complex64
    		case 16:
    			t.Go = c.complex128
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        for (const auto& ref : repr.string_val())
          refs.push_back({ref.data(), ref.size()});
    
        value = mlir::DenseStringElementsAttr::get(shaped_type, refs);
      } else if (elem_type.isa<mlir::ComplexType, mlir::TF::TensorFlowType>()) {
        tensorflow::TensorProto repr =
            tfl::ConvertTfliteConstTensor(tensor, buffer);
        std::string mangled = tensorflow::mangling_util::MangleTensor(repr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		switch c {
    		case 'O':
    			ret = &RvalueReferenceType{Base: t}
    		case 'P':
    			ret = &PointerType{Base: t}
    		case 'R':
    			ret = &ReferenceType{Base: t}
    		case 'C':
    			ret = &ComplexType{Base: t}
    		case 'G':
    			ret = &ImaginaryType{Base: t}
    		}
    	case 'U':
    		if len(st.str) < 2 {
    			st.fail("expected source name or unnamed type")
    		}
    		switch st.str[1] {
    		case 'l':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top