Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for processInputs (0.51 sec)

  1. tensorflow/c/c_api_function.cc

    // does various checks while doing so. `input_nodes` will contain the same
    // information as input_tensors just in a different structure to make
    // following processing easier. TODO(iga): Simplify this nested structure.
    Status ProcessInputs(
        const TF_Graph* fn_body, const char* fn_name, int ninputs,
        const TF_Output* inputs, std::vector<OutputTensor>* input_tensors,
        std::unordered_map<const Node*, std::vector<int>>* input_nodes)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          : OpRewritePattern<SourceOp>(context, benefit),
            quant_specs_(quant_specs) {}
    
     protected:
      quant::QuantizationSpecs quant_specs_;
    
      LogicalResult processInputs(
          SourceOp op, const operator_property::OpVariant& op_variant,
          const operator_property::OperatorProperty& op_property,
          PatternRewriter& rewriter) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

            } catch (IllegalStateException) {
            }
        }
    
        def process(String input = "", OutputStream processInput = new ByteArrayOutputStream()) {
            return Stub(Process) {
                getInputStream() >> new ByteArrayInputStream(input.bytes)
                getOutputStream() >> processInput
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top