Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/runners/modal_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
# cd src/runners && modal run test_cutlass_image.py
#
# For users writing submissions with torch.utils.cpp_extension.load_inline:
# C++ headers installed on the image (like CUTLASS) require explicit include paths:
# MathDx is already on CPLUS_INCLUDE_PATH. Include cuBLASDx in cuda_sources,
# which load_inline compiles with nvcc, rather than in cpp_sources:
# load_inline(
# ...
# extra_include_paths=["/opt/cutlass/include", "/opt/cutlass/tools/util/include"],
# cuda_sources=cuda_source, # #include <cublasdx.hpp> goes here
# )
# For raw nvcc compilation, CPLUS_INCLUDE_PATH is set so includes work automatically.
#
Expand Down