Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ComplexType (0.31 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto rhs_type = mlir::dyn_cast<RankedTensorType>(rhs.getType());
        if (!lhs_type || !rhs_type) return failure();
        if (mlir::isa<ComplexType>(lhs_type.getElementType()) && op.getAdjX()) {
          lhs = rewriter.create<TF::ConjOp>(op.getLoc(), lhs_type, lhs);
        }
        if (mlir::isa<ComplexType>(rhs_type.getElementType()) && op.getAdjY()) {
          rhs = rewriter.create<TF::ConjOp>(op.getLoc(), rhs_type, rhs);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*CharType).String", Method, 0},
    		{"(*CommonType).Common", Method, 0},
    		{"(*CommonType).Size", Method, 0},
    		{"(*ComplexType).Basic", Method, 0},
    		{"(*ComplexType).Common", Method, 0},
    		{"(*ComplexType).Size", Method, 0},
    		{"(*ComplexType).String", Method, 0},
    		{"(*Data).AddSection", Method, 14},
    		{"(*Data).AddTypes", Method, 3},
    		{"(*Data).LineReader", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          Type typeOfElementsInY = getElementTypeOrSelf(y.getType());
          ElementsAttr attr = yDefOp.getValue();
          bool yHasComplexElements = mlir::isa<ComplexType>(typeOfElementsInY);
    
          // If `y` is a splat constant, then the op will definitely get replaced.
          // We check for a splat constant first, in order to optimize the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return tflite::TensorType_STRING;
      } else if (mlir::isa<mlir::TF::Quint8Type>(type)) {
        return tflite::TensorType_UINT8;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
        auto ftype = complex_type.getElementType();
        if (ftype.isF32()) {
          return tflite::TensorType_COMPLEX64;
        }
        if (ftype.isF64()) {
          return tflite::TensorType_COMPLEX128;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (IsI32Type(element_type) || IsUI32Type(element_type) ||
          IsI64Type(element_type) || IsQI16Type(element_type) ||
          IsI16Type(element_type) || element_type.isa<ComplexType>() ||
          element_type.isF32()) {
        return VerifyOperandsHaveSameShapesOrBroadcastableShape(
            /*op=*/op.getOperation(), /*indices=*/ArrayRef<unsigned>{0, 1},
            /*max_bcast_rank=*/6);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top