Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GetInputs (0.52 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (op->getOperands().size() != 2)
          return rewriter.notifyMatchFailure(
              op, "only match for the case where operands is of size 2");
        auto keys = op.getInputs()[0];
        auto indices = op.getInputs()[1];
        auto keys_ty = mlir::dyn_cast_or_null<ShapedType>(keys.getType());
        auto indices_ty = mlir::dyn_cast_or_null<ShapedType>(indices.getType());
        if (!keys_ty || !keys_ty.hasStaticShape() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                           .getSplatValue<Attribute>());
      }
    
      // Check the non-zero operand's shape matches the result shape.
      if (result_ty == getInputs()[non_zero_index].getType())
        return getInputs()[non_zero_index];
      return {};
    }
    
    //===----------------------------------------------------------------------===//
    // AddV2Op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (cond_fn_type.getNumResults() != 1)
        return emitOpError("requires cond function to have exactly one result");
    
      return VerifyWhileTypes(*this, /*cond_input=*/cond_fn_type.getInputs(),
                              /*body_input=*/body_fn_type.getInputs(),
                              /*body_result=*/body_fn_type.getResults(),
                              getShapeInvariant());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              while_op.getInput().getTypes(), while_op.getOutput().getTypes(),
              while_op.ResolveBodyFunction(&symbol_table_)
                  .getFunctionType()
                  .getInputs());
          return PropagateShapeToFunctions(
              module, compatible_types,
              {while_op.ResolveCondFunction(&symbol_table_),
               while_op.ResolveBodyFunction(&symbol_table_)},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // pairs.
      TF_RETURN_IF_ERROR(AddBackedges());
    
      TF_RETURN_IF_ERROR(ConvertFunctionArgAndRets(function, graph,
                                                   func_type.getInputs(), arg_nodes,
                                                   ret_nodes, control_ret_nodes));
    
      // TODO(jpienaar): Update post removing shape_refinier_.
      if (!specs_.enable_shape_inference) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.platform.base.ApplicationBinarySpec.getApplication()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ApplicationBinarySpec.java:0)
    Method <org.gradle.platform.base.BinarySpec.getInputs()> does not have raw return type assignable to org.gradle.api.provider.Provider in (BinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top