Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Subsumed (0.21 sec)

  1. tensorflow/c/kernels/tensor_shape_utils.h

    #include <string>
    
    #include "tensorflow/c/tf_tensor.h"
    
    namespace tensorflow {
    
    // The following are utils for the shape of a TF_Tensor type.
    // These functions may later be subsumed by the methods for a
    // TF_TensorShape type.
    
    // Returns a string representation of the TF_Tensor shape.
    std::string ShapeDebugString(TF_Tensor* tensor);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/EitherTest.groovy

            left.mapRight({ assert false }).left.get() == LEFT
    
            right.mapRight({ assert it == RIGHT; RIGHT2 }).right.get() == RIGHT2
            right.mapLeft({ assert false }).right.get() == RIGHT
        }
    
        def "fold() subsumes flatMap()"() {
            expect:
            left.fold({ assert it == LEFT; either(LEFT2) }, { assert false }).left.get() == LEFT2
    
            right.fold({ assert false }, { assert it == RIGHT; either(RIGHT2) }).right.get() == RIGHT2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top