Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for reduction_input_size_override (0.45 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %values, %indices = "tf.ApproxTopK"(%arg0) {aggregate_to_topk = true, is_max_k = true, k = 4 : i64, recall_target = 8.500000e-01 : f32, reduction_dimension = 1 : i64, reduction_input_size_override = -1 : i64} : (tensor<1x4xf32>) -> (tensor<1x4xf32>, tensor<1x4xi32>)
      func.return %values, %indices: tensor<1x4xf32>, tensor<1x4xi32>
    
      // CHECK-LABEL: approx_top_k_with_max_k_last_reduction_dimension
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          auto name = attr.getName();
          if (!(name == "top_k" || name == "reduction_dim" ||
                name == "recall_target" || name == "aggregate_to_topk" ||
                name == "reduction_input_size_override" || name == "is_fallback")) {
            return op.emitOpError()
                   << name.getValue() << " is not a supported backend_config"
                   << " attribute for ApproxTopK";
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: mhlo.compare  GT
        %values, %indices = "tf.ApproxTopK"(%0) {aggregate_to_topk = true, device = "", is_max_k = true, k = 10 : i64, recall_target = 0.949999988 : f32, reduction_dimension = -1 : i64, reduction_input_size_override = -1 : i64} : (tensor<10x500xbf16>) -> (tensor<10x10xbf16>, tensor<10x10xi32>)
        return %values : tensor<10x10xbf16>
      }
    
      // CHECK-LABEL: fusedBatchNormV3_noTraining
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:          %[[VALUES:.*]], %[[INDICES:.*]] = "tf.ApproxTopK"(%[[ARG_0]]) <{aggregate_to_topk = true, is_max_k = true, k = 4 : i64, recall_target = 8.500000e-01 : f32, reduction_dimension = 1 : i64, reduction_input_size_override = -1 : i64}> : (tensor<1x4xf32>) -> (tensor<1x4xf32>, tensor<1x4xi32>)
    // CHECK:          return %[[VALUES]], %[[INDICES]] : tensor<1x4xf32>, tensor<1x4xi32>
    // CHECK:        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<F32Attr, "0.95f">:$recall_target,
        DefaultValuedOptionalAttr<BoolAttr, "true">:$is_max_k,
        DefaultValuedOptionalAttr<I64Attr, "-1">:$reduction_input_size_override,
        DefaultValuedOptionalAttr<BoolAttr, "true">:$aggregate_to_topk
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top