Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Tresults (0.36 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          TFL_TensorOf<[F32, I32, I64, QI8, QUI8]>:$rhs);
    
      let results = (outs TFL_BoolTensor:$output);
    
      let builders = [TFL_ComparisonBinaryBuilder];
    
      let hasCustomAssemblyFormat = 1;
    
      let extraClassDefinition = [{
        ParseResult $cppClass::parse(OpAsmParser &parser, OperationState &result) {
          return parseOneResultSameOperandTypeOp(parser, result);
        }
        void $cppClass::print(OpAsmPrinter &p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (IsConst(&inst)) continue;
    
        // Fetch operand and result tensor indices.
        std::vector<int32_t> results;
        results.reserve(inst.getNumResults());
        for (auto result : inst.getResults()) {
          results.push_back(tensor_index_map.lookup(result));
        }
        Operation* real_inst = &inst;
        std::vector<int32_t> operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      TypeRangeWithDesc results{op.getResultTypes(), "result"};
      TypeRangeWithDesc then_results{then_types, "then result"};
      TypeRangeWithDesc else_results{else_types, "else result"};
    
      if (failed(VerifyTypeRangesAreCompatible(op, then_results, results)))
        return failure();
      if (failed(VerifyTypeRangesAreCompatible(op, else_results, results)))
        return failure();
      return success();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    void TF_ImportGraphDefResultsReturnOutputs(TF_ImportGraphDefResults* results,
                                               int* num_outputs,
                                               TF_Output** outputs) {
      *num_outputs = results->return_tensors.size();
      *outputs = results->return_tensors.data();
    }
    
    void TF_ImportGraphDefResultsReturnOperations(TF_ImportGraphDefResults* results,
                                                  int* num_opers,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // * Operands and results to assign cond function arguments to op results if
      //   the cond function returns False or equivalent result. If the op is shape
      //   invariant, this does not hold as shapes can differ.
      // * All three pairs using cond inputs, body inputs and results as operand is
      //   a common source for all three.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                     parser.parseColonType(type) ||
                     parser.resolveOperands(ops, type, result.operands) ||
                     parser.addTypeToList(type, result.types));
    }
    
    void printOneResultOp(Operation* op, OpAsmPrinter& p) {
      assert(op->getNumResults() == 1 && "op should have one result");
    
      // If not all the operand and result types are the same, just use the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // set, operand types are set as result types if associated body result types
      // match the operand type (does not change per loop iteration). If operand and
      // body result types are not the same, only handle types are propagated to
      // result types. This is necessary to not incorrectly change result shapes
      // when the While op will have a different result shape. Otherwise operand
      // shapes are propagated to result shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top