(
name, sources, build_args, build_dir, with_cuda, with_cudnn, abi_tag,
)
| 233 | |
| 234 | |
| 235 | def version_check( |
| 236 | name, sources, build_args, build_dir, with_cuda, with_cudnn, abi_tag, |
| 237 | ): |
| 238 | old_version = custom_op_versioner.get_version(name) |
| 239 | version = custom_op_versioner.bump_version_if_changed( |
| 240 | name, sources, build_args, build_dir, with_cuda, with_cudnn, abi_tag, |
| 241 | ) |
| 242 | return version, old_version |
| 243 | |
| 244 | |
| 245 | ##################################################################### |
no test coverage detected