On this page:
set-impl
8.12

22 Setting tensor implementations🔗ℹ

 (require malt/set-impl) package: malt

procedure

(set-impl impl)  void

  impl : (one-of/c 'learner 'nested-tensors 'flat-tensors)
Sets the tensor implementation to the named implementation (one of 'learner, 'nested-tensors, or 'flat-tensors).

The change in implementation will take effect the next time Racket process is re-started. The most convenient way to switch implementations is to do it from the shell command line. For example, to set the implementation to 'flat-tensors.
$ racket -e "(require malt/set-impl) (set-impl 'flat-tensors)"