Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for conf1 (0.09 sec)

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

      if (!module) return failure();
    
      tensorflow::GraphExportConfig confs;
      confs.export_entry_func_to_flib = export_entry_func_to_flib;
      confs.export_original_tf_func_name = export_original_tf_func_name;
    
      absl::StatusOr<std::unique_ptr<tensorflow::GraphDef>> graphdef_or(
          tensorflow::tf2xla::v2::ConvertMlirToGraphdef(module, confs));
      if (!graphdef_or.status().ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. buildscripts/upgrade-tests/compose.yml

        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
        image: nginx:1.19.2-alpine
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    ## By default this config uses default local driver,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      FunctionLibraryDefinition flib_def(OpRegistry::Global(),
                                         FunctionDefLibrary());
      GraphExportConfig confs;
      auto graph = std::make_unique<Graph>(flib_def);
      absl::flat_hash_set<Node*> control_ret_nodes;
      Status status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top