Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enable_control_flow_v2 (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.cc

          "Failed to functionalize Control Flow V1 ops. Consider using Control "
          "Flow V2 ops instead. See https://www.tensorflow.org/api_docs/python/tf/"
          "compat/v1/enable_control_flow_v2.");
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 14:33:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/make_test_graphs.py

          f.write(
              six.ensure_binary(
                  g.as_graph_def().SerializeToString(deterministic=True)
              )
          )
    
    
    def main(_):
      control_flow_util.enable_control_flow_v2()
      write_graph(tfadd, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt_saver, FLAGS.out_dir)
      write_graph(tfassert_eq, FLAGS.out_dir)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

                "support Control Flow V1 ops. Consider using Control Flow V2 ops "
                "instead. See https://www.tensorflow.org/api_docs/python/tf/compat/"
                "v1/enable_control_flow_v2."),
            tflite::metrics::ConverterErrorData::ERROR_UNSUPPORTED_CONTROL_FLOW_V1);
        return mlir::failure();
      }
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. RELEASE.md

        code works without modifications against an installation of 1.15 or 2.0.
    *   EagerTensor now supports numpy buffer interface for tensors.
    *   Add toggles `tf.enable_control_flow_v2()` and `tf.disable_control_flow_v2()`
        for enabling/disabling v2 control flow.
    *   Enable v2 control flow as part of `tf.enable_v2_behavior()` and
        `TF2_BEHAVIOR=1`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top