vacu9708 commented on PR #17986:
URL: https://github.com/apache/tvm/pull/17986#issuecomment-2897951582
I confirmed that the change I made works but
**this seems more correct**
```python
SpaceGenerator.create(postprocs=target.kind.name)
```
**instead of**
```python
if "gpu" in target.keys:
space_generator = SpaceGenerator.create(
space_generator, postprocs=[postproc.VerifyGPUCode()]
)
else:
space_generator = SpaceGenerator.create(space_generator)
```
so that PostprocDefaultCUDA can be used from postproc.py
However, SpaceGenerator.create(postprocs=target.kind.name) does not work.
This issue needs to be looked into more.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]