Changelog¶
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning:
Addedfor new features.Changedfor changes in existing functionality.Deprecatedfor soon-to-be removed features.Removedfor now removed features.Fixedfor any bug fixes.Securityin case of vulnerabilities.
0.4.0 - 2021/06/25¶
Added¶
A number of new config presets added to the library, namely
EcRamMOPreset,EcRamMO2Preset,EcRamMO4Preset,TikiTakaEcRamMOPreset,MixedPrecisionEcRamMOPreset. These can be used for tile configuration (rpu_config). They specify a particular device and optimizer choice. (#207)Weight refresh mechanism for
OneSidedUnitCellto counteract saturation, by differential read, reset, and re-write. (#209)Complex cycle-to-cycle noise for
ExpStepDevice. (#226)Added the following presets:
PCMPresetDevice(uni-directional),PCMPresetUnitCell(a pair of uni-directional devices with periodical refresh) and aMixedPrecisionPCMPresetfor using the mixed precision optimizer with a PCM pair. (#226)AnalogLinearlayer now accepts multi-dimensional inputs in the same way as PyTorch’sLinearlayer does. (#227)A new
AnalogLSTMmodule: a recurrent neural network that usesAnalogLinear. (#240)Return of weight gradients for
InferenceTile(only), so that the gradient can be handled with any PyTorch optimizer. (#241)Added a generic analog optimizer
AnalogOptimizerthat allows extending any existing optimizer with analog-specific features. (#242)Conversion tools for converting torch models into a model having analog layers. (#265)
Changed¶
Renamed the
DifferenceUnitCelltoOneSidedUnitCellwhich more properly reflects its function. (#209)The
BaseTilesubclass that is instantiated in the analog layers is now retrieved from the newRPUConfig.tile_classattribute, facilitating the use of custom tiles. (#218)The default parameter for the
datasetconstructor used byBasicTrainingis now thetrain=boolargument. If using a dataset that requires other arguments or transforms, they can now be specified via overridingget_dataset_arguments()andget_dataset_transform(). (#225)AnalogContextis introduced, along with tile registration function to handle arbitrary optimizers, so that re-grouping param groups becomes unnecessary. (#241)The
AnalogSGDoptimizer is now implemented based on the generic analog optimizer, and its base module isaihwkit.optim.analog_optimizer. (#242)The default refresh rate is changed to once per mini-batch for
PCMPreset(as opposed to once per mat-vec). (#243)
Deprecated¶
Deprecated the
CudaAnalogTileandCudaInferenceTileandCudaFloatingPointTile. Now theAnalogTilecan be either on cuda or on cpu (determined by thetileand thedeviceattribute) similar to a torchTensor. In particular, call ofcuda()does not change theAnalogTiletoCudaAnalogTileanymore, but only changes the instance in thetilefield, which makes in-place calls tocuda()possible. (#257)
Removed¶
Removed
weightandbiasof analog layers from the module parameters as these parameters are handled internally for analog tiles. (#241)
Fixed¶
Fixed autograd functionality for recurrent neural networks. (#240)
N-D support for
AnalogLinear. (#227)Fixed an issue in the
Experimentsthat was causing the epoch training loss to be higher than the epoch validation loss. (#238)Fixed “Wrong device ordinal” errors for CUDA which resulted from a known issue of using CUB together with pytorch. (#250)
Renamed persistent weight hidden parameter field to
persistent_weights. (#251)Analog tiles now always move correctly to CUDA when
model.cuda()ormodel.to(device)is used. (#252, #257)Added an error message when wrong tile class is used for loading an analog state dict. (#262)
Fixed
MixedPrecisionCompoundbeing bypassed with floating point compute. (#263)
0.3.0 - 2021/04/14¶
Added¶
New analog devices:
A new abstract device (
MixedPrecisionCompound) implementing an SGD optimizer that computes the rank update in digital (assuming digital high precision storage) and then transfers the matrix sequentially to the analog device, instead of using the default fully parallel pulsed update. (#159)A new device model class
PowStepDevicethat implements a power-exponent type of non-linearity based on the Fusi & Abott synapse model. (#192)New parameterization of the
SoftBoundsDevice, calledSoftBoundsPmaxDevice. (#191)
Analog devices and tiles improvements:
Option to choose deterministic pulse trains for the rank-1 update of analog devices during training. (#99)
More noise types for hardware-aware training for inference (polynomial). (#99)
Additional bound management schemes (worst case, average max, shift). (#99)
Cycle-to-cycle output referred analog multiply-and-accumulate weight noise that resembles the conductance dependent PCM read noise statistics. (#99)
C++ backend improvements (slice backward/forward/update, direct update). (#99)
Option to excluded bias row for hardware-aware training noise. (#99)
Option to automatically scale the digital weights into the full range of the simulated crossbar by applying a fixed output global factor in digital. (#129)
Optional power-law drift during analog training. (#158)
Cleaner setting of
dw_minusing device granularity. (#200)
PyTorch interface improvements:
Two new convolution layers have been added:
AnalogConv1dandAnalogConv3d, mimicking their digital counterparts. (#102, #103)The
.to()method can now be used inAnalogSequential, along with.cpu()methods in analog layers (albeit GPU to CPU is still not possible). (#142, #149)
New modules added:
A library of device presets that are calibrated to real hardware data, namely
ReRamESPresetDevice,ReRamSBPresetDevice,ECRamPresetDevice,CapacitorPresetDevice, and device presets that are based on models in the literature, e.g.GokmenVlasovPresetDeviceandIdealizedPresetDevice. They can be used defining the device field in theRPUConfig. (#144)A library of config presets, such as
ReRamESPreset,Capacitor2Preset,TikiTakaReRamESPreset, and many more. These can be used for tile configuration (rpu_config). They specify a particular device and optimizer choice. (#144)Utilities for visualization the pulse response properties of a given device configuration. (#146)
A new
aihwkit.experimentsmodule has been added that allows creating and running specific high-level use cases (for example, neural network training) conveniently. (#171, #172)A
CloudRunnerclass has been added that allows executing experiments in the cloud. (#184)
Changed¶
The minimal PyTorch version has been bumped to
1.7+. Please recompile your library and update the dependencies accordingly. (#176)Default value for TransferCompound for
transfer_every=0(#174).
Fixed¶
Issue of number of loop estimations for realistic reads. (#192)
Fixed small issues that resulted in warnings for windows compilation. (#99)
Faulty backward noise management error message removed for perfect backward and CUDA. (#99)
Fixed segfault when using diffusion or reset with vector unit cells for CUDA. (#129)
Fixed random states mismatch in IoManager that could cause crashed in same network size and batch size cases for CUDA, in particular for
TransferCompound. (#132)Fixed wrong update for
TransferCompoundin case oftransfer_everysmaller than the batch size. (#132, #174)Period in the modulus of
TransferCompoundcould become zero which caused a floating point exception. (#174)Ceil instead of round for very small transfers in
TransferCompound(to avoid zero transfer for extreme settings). (#174)
Removed¶
The legacy
NumpyAnalogTileandNumpyFloatingPointTiletiles have been finally removed. The regular, tensor-poweredaihwkit.simulator.tilestiles contain all their functionality and numerous additions. (#122)
0.2.1 - 2020/11/26¶
The
rpu_configis now pretty-printed in a readable manner (excluding the default settings and other readability tweak). (#60)Added a new
ReferenceUnitCellwhich has two devices, where one is fixed and the other updated and the effective weight is computed a difference between the two. (#61)VectorUnitCellaccepts now arbitrary weighting schemes that can be user-defined by using a newgamma_vecproperty that specifies how to combine the unit cell devices to form the effective weight. (#61)
Changed¶
The unit cell items in
aihwkit.simulator.configshave been renamed, removing theirDevicesuffix, for having a more consistent naming scheme. (#57)The
Exceptionsraised by the library have been revised, making use in some cases of the ones introduced in a newaihwkit.exceptionsmodule. (#49)Some
VectorUnitCellproperties have been renamed and extended with an update policy specifying how to select the hidden devices. (#61)The
pybind11version required has been bumped to 2.6.0, which can be installed frompipand makes system-wide installation no longer required. Please update yourpybind11accordingly for compiling the library. (#44)
Removed¶
The
BackwardIOParametersspecialization has been removed, as bound management is now automatically ignored for the backward pass. Please use the more generalIOParametersinstead. (#45)
Fixed¶
Serialization of
Modulesthat contain children analog layers is now possible, both when using containers such asSequentialand when using analog layers as custom Module attributes. (#74, #80)The build system has been improved, with experimental Windows support and supporting using CUDA 11 correctly. (#58, #67, #68)
0.2.0 - 2020/10/20¶
Added¶
Added more types of resistive devices:
IdealResistiveDevice,LinearStep,SoftBounds,ExpStep,VectorUnitCell,TransferCompoundDevice,DifferenceUnitCell. (#14)Added a new
InferenceTilethat supports basic hardware-aware training and inference using a statistical noise model that was fitted by real PCM devices. (#25)Added a new
AnalogSequentiallayer that can be used in place ofSequentialfor easier operation on children analog layers. (#34)
Changed¶
Specifying the tile configuration (resistive device and the rest of the properties) is now based on a new
RPUConfigfamily of classes, that is passed as arpu_configargument instead ofresistive_devicetoTilesandLayers. Please check theaihwkit.simulator.configmodule for more details. (#23)The different analog tiles are now organized into a
aihwkit.simulator.tilespackage. The internalIndexedTileshave been removed, and the rest of previous top-level imports have been kept. (#29)
Fixed¶
Improved package compatibility when using non-UTF8 encodings (version file, package description). (#13)
The build system can now detect and use
openblasdirectly when using the conda-installable version. (#22)When using analog layers as children of another module, the tiles are now correctly moved to CUDA if using
AnalogSequential(or by the optimizer if using regular torch container modules). (#34)