Skip to content

Commit 38eebf6

Browse files
committed
Change misleading <virtual> to <not-hosted>
1 parent 1289c66 commit 38eebf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tensor.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ let to_doc ?(spy = false) ~with_grad ~with_code ?(with_low_level = false)
695695
string prefix_str ^^ string " <not-in-yet>" ^^ space
696696
else
697697
match (style, Lazy.force t.value.array) with
698-
| _, None -> string prefix_str ^^ string " <virtual>" ^^ space
698+
| _, None -> string prefix_str ^^ string " <not-hosted>" ^^ space
699699
| `Inline, Some arr ->
700700
Tn.do_read t.value;
701701
string prefix_str ^^ space
@@ -714,7 +714,7 @@ let to_doc ?(spy = false) ~with_grad ~with_code ?(with_low_level = false)
714714
string (grad_txt diff) ^^ string " <not-in-yet>" ^^ space
715715
else
716716
match Lazy.force diff.grad.array with
717-
| None -> string (grad_txt diff) ^^ string " <virtual>" ^^ space
717+
| None -> string (grad_txt diff) ^^ string " <not-hosted>" ^^ space
718718
| Some arr -> (
719719
match style with
720720
| `Inline ->

0 commit comments

Comments
 (0)