We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9ceb6b commit 06ed9cbCopy full SHA for 06ed9cb
tests/cpp/test_stream.cpp
@@ -24,12 +24,10 @@
24
25
namespace nvfuser {
26
27
-class StreamTest : public NVFuserTest {
28
- public:
29
- StreamTest() {
30
- EnableOptionsGuard::getCurOptions().set(EnableOption::HostIrLowering);
31
- }
32
-};
+// The tests in this file verify building blocks for stream parallelism, e.g.,
+// sharding propagation and KernelExecutor. End-to-end tests have been moved to
+// tests/python/direct/test_stream.py because the Python API is sufficient.
+using StreamTest = NVFuserTest;
33
34
TEST_F(StreamTest, AddPerStream) {
35
constexpr int64_t c = 3;
0 commit comments