Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CST (1.76 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      ElementsAttr attr;
      if (auto cst = dyn_cast<mlir::arith::ConstantOp>(inst)) {
        // arith::ConstantOp have ElementAttr at this point due to validation of the
        // TFLite module.
        attr = mlir::cast<ElementsAttr>(cst.getValue());
      } else if (auto cst = dyn_cast<mlir::TF::ConstOp>(inst)) {
        attr = cst.getValue();
      } else if (auto cst = dyn_cast<tfl::ConstOp>(inst)) {
        attr = cst.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          "tf.MakeIterator"(%arg0, %0) : (tensor<!tf_type.variant>, tensor<!tf_type.resource>) -> ()
          %cst = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
          %1:2 = "tf.WhileRegion"(%cst, %arg1) ({
          ^bb0(%arg2: tensor<i1>, %arg3: tensor<i64>):
            "tf.Yield"(%arg2) : (tensor<i1>) -> ()
          }, {
          ^bb0(%arg2: tensor<i1>, %arg3: tensor<i64>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top