Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for io_node_types_ (0.28 sec)

  1. tensorflow/compiler/mlir/lite/transforms/modify_io_nodes.cc

        } else if (str == "float32") {
          return builder.getF32Type();
        } else {
          return {};
        }
      };
      if (io_node_types_.size() < 2) return failure();
      if (!input_type) input_type = convert_str_to_type(io_node_types_[0]);
      if (!output_type) output_type = convert_str_to_type(io_node_types_[1]);
      return success();
    }
    
    LogicalResult ModifyIONodesPass::ModifyInputNodes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      }];
      let constructor = "CreateModifyIONodesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
      let options = [
          ListOption<"io_node_types_", "test-io-types", "std::string",
                     "comma separated type strings. Allowed values: 'int8', 'uint8', 'float32']">,
      ];
    }
    
    def OptimizePass : Pass<"tfl-optimize", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top