-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Questions about using tiles #314
Comments
Hi @ElinorG11 , to 2: The rpu configuration sets all the meta-parameter that essentially define the hardware design, such as noise strengths, device-to-device variations etc. The size of the tile is currently determined solely be the DNN layer. So it will be as big as needed for a layer. If one wants to restrict the tile size, currently one needs to change the DNN accordingly so that it has smaller weight matrices (e.g. by simply splitting a linear layer into multiple parts and adding/concatenating the outputs). We will however soon a new layer where the maximal physical tile size can be defined. Note that only the maximal tile size is of concern. If you have a DNN where all layers are smaller than the max tile size, the current simulation is accurate with the assumption that non-used devices do not contribute to the non-idealities, which should be true in first approximation. Note that the Note again that to 3: Sure that is the idea. You can just define the setting of your hardware by specifying your own rpu_config |
Thank you very much for the detailed answer. I just want to make sure I understood correctly: the number of cross-points at the crossbar array (i.e. the size of the tile) is determined by the layer with the maximal input*output size (thus making sure that the crossbar will contain enough devices to store all the weight for every layer)? what confused me was the fact that I can create a tile of a specific size such as: |
Oh, I see what you mean. Typically, the For example, you can see that the AnalogLinear will create a tile here which is determined by the |
Thank you for your guidance! |
Hello,
I have a few questions about using the tiles:
what is exactly the difference between analog tile and inference tile? I thought that analog tile is an abstract object and we can't really use it, but as I seen in some of your examples you use it explicitly (as seen in example 01 where you use
SingleRPUConfig()
which usesAnalogTiles
).How can I specify the size of the tile after defining an rpu configuration? from looking at you documentation, I saw that when creating a tile, the user can specify it's size, as following
tile = InferenceTile(32, 32)
. but when creating a model or when using an existing one and converting it to analog counterpart, we userpu_config = InferenceRPUConfig()
. I'd appreciate if you could explain to me:rpu_config = InferenceRPUConfig()
Suppose now I want to change the tile to be 32x32. how can I do it? by viewing you documentation I saw the functionsrpu_config.forward.inp_res
andrpu_config.forward.out_res
which quantise the ADC and DAC. so should I specifyrpu_config.forward.inp_res = 1/32
andrpu_config.forward.out_res = 1/32
or did I misinterpreted the meaning of the last two functions? I saw this example also:how can I make sure this tile will be used in the configuration which is sent to the model as seen in example 03:
InferenceRPUConfig
I saw that the default Tile type is InferenceTile but of what size (out_size and in_size)? and I also saw that you're usingConstantStepDevice
as defult, but of what precision?Thank you very much for your help.
The text was updated successfully, but these errors were encountered: