| 175 | class TPrimExpr : public ObjectRef { |
| 176 | public: |
| 177 | explicit TPrimExpr(std::string dtype, double value) { |
| 178 | data_ = make_object<TPrimExprObj>(dtype, value); |
| 179 | } |
| 180 | |
| 181 | TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(TPrimExpr, ObjectRef, TPrimExprObj); |
| 182 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected