dummy = lambda storage: storage
Browse files
app.py
CHANGED
|
@@ -384,6 +384,10 @@ def restore_on_gpu(
|
|
| 384 |
output_format,
|
| 385 |
allocation
|
| 386 |
):
|
|
|
|
|
|
|
|
|
|
|
|
|
| 387 |
start = time.time()
|
| 388 |
print('restore ==>>')
|
| 389 |
|
|
|
|
| 384 |
output_format,
|
| 385 |
allocation
|
| 386 |
):
|
| 387 |
+
dummy = lambda storage: storage
|
| 388 |
+
test = "aaaa"
|
| 389 |
+
test = dummy(test)
|
| 390 |
+
print(test)
|
| 391 |
start = time.time()
|
| 392 |
print('restore ==>>')
|
| 393 |
|