File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -445,6 +445,11 @@ class TensorBase {
445
445
// / True if the Tensor needs to be computed.
446
446
bool needsCompute ();
447
447
448
+ void setNeedsPack (bool needsPack);
449
+ void setNeedsCompile (bool needsCompile);
450
+ void setNeedsAssemble (bool needsAssemble);
451
+ void setNeedsCompute (bool needsCompute);
452
+
448
453
// / Set to true to perform the assemble and compute stages simultaneously.
449
454
void setAssembleWhileCompute (bool assembleWhileCompute);
450
455
@@ -510,10 +515,6 @@ class TensorBase {
510
515
bool neverPacked ();
511
516
512
517
void unsetNeverPacked ();
513
- void setNeedsPack (bool needsPack);
514
- void setNeedsCompile (bool needsCompile);
515
- void setNeedsAssemble (bool needsAssemble);
516
- void setNeedsCompute (bool needsCompute);
517
518
518
519
void addDependentTensor (TensorBase& tensor);
519
520
void removeDependentTensor (TensorBase& tensor);
You can’t perform that action at this time.
0 commit comments