17 lines
452 B
Nix
17 lines
452 B
Nix
|
|
{ options, ... }:
|
||
|
|
{
|
||
|
|
options.tensorrt.releases = options.generic.releases;
|
||
|
|
# TODO(@connorbaker): Figure out how to add additional options to the
|
||
|
|
# to the generic release.
|
||
|
|
# {
|
||
|
|
# cudnnVersion = lib.options.mkOption {
|
||
|
|
# description = "CUDNN version supported";
|
||
|
|
# type = types.nullOr majorMinorVersion;
|
||
|
|
# };
|
||
|
|
# filename = lib.options.mkOption {
|
||
|
|
# description = "Tarball name";
|
||
|
|
# type = types.str;
|
||
|
|
# };
|
||
|
|
# }
|
||
|
|
}
|