In constrast to the basic mode, (appliance mode) provides no cslc compiler. Instead, one compiles directly in python by importing the compiler as class and calling its compile() method with appropriate arguments. My questions are:
- How can this compile workflow be implemented in SPADA?
- Should there be a cli flag for the user to set in order to activate appliance mode, or should SPADA try to guess appliance mode based on available cerebras python libs?
- Should the compiler call be directly imported into and implemented in
spada/cli/compiler.py, or should there be a wrapper script provided that acts like cslc in normal mode and that can be called without (major) changes from spada/cli/compiler.py?
In constrast to the basic mode, (appliance mode) provides no cslc compiler. Instead, one compiles directly in python by importing the compiler as class and calling its
compile()method with appropriate arguments. My questions are:spada/cli/compiler.py, or should there be a wrapper script provided that acts like cslc in normal mode and that can be called without (major) changes fromspada/cli/compiler.py?