Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sizeDiff (0.24 sec)

  1. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            def cacheArtifact = localCache.getCacheEntry(unpackOp.details.cacheKey.toString())
            def sizeDiff = cacheArtifact.bytes.length - unpackOp.details.archiveSize.toLong()
            sizeDiff > -100 && sizeDiff < 100
    
            unpackOp.result.archiveEntryCount == 5
        }
    
        def "records load failure for #exceptionType"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

    // CHECK:  [[SIZE_DIFF:%.*]] = "tf.Sub"([[SIZE]], [[INPUT_SIZE]]) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    // CHECK:  [[DIFF_RES:%.*]] = "tf.Greater"([[SIZE_DIFF]], [[ZERO]]) : (tensor<i32>, tensor<i32>) -> tensor<i1>
    // CHECK:  [[SHAPE_1:%.*]] = "tf.Shape"([[INPUT]]) : (tensor<3x10xf32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // `size_diff`, which is then consumed by `if_cond`.
        auto size_diff = rewriter.create<TF::SubOp>(
            loc, tensorflow::GetTypeFromTFTensorShape({}, shape_dtype), size,
            input_size);
        auto if_cond = rewriter.create<TF::GreaterOp>(
            loc, tensorflow::GetTypeFromTFTensorShape({}, rewriter.getI1Type()),
            size_diff, scalar_zero);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top