Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toRType (0.09 sec)

  1. src/runtime/mfinal.go

    		throw("runtime.SetFinalizer: second argument is " + toRType(ftyp).string() + ", not a function")
    	}
    	ft := (*functype)(unsafe.Pointer(ftyp))
    	if ft.IsVariadic() {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string() + " because dotdotdot")
    	}
    	if ft.InCount != 1 {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                         OpBuilder &builder) {
      auto broadcast_dims = GetI64ElementsAttr({feature_dim}, &builder);
      auto to_type = mlir::cast<RankedTensorType>(broadcast_to.getType());
      auto result_shape = builder.create<shape::ShapeOfOp>(loc, broadcast_to);
      auto result_extents_type = GetExtentsTensorTypeFor(to_type);
      auto result_extents = builder.create<shape::ToExtentTensorOp>(
          loc, result_extents_type, result_shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top