Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for _input_ (0.13 sec)

  1. tensorflow/cc/framework/gradients.cc

        return errors::InvalidArgument(
            "Must specify a gradient input for each output.");
      }
      std::vector<bool> reachable_nodes = GetReachableNodes();
      for (const Output& input : inputs_) {
        if (!reachable_nodes[input.node()->id()]) {
          return errors::InvalidArgument(
              "Cannot compute the partial derivative for node '",
              input.node()->name(),
              "' as it's unreachable from the output node(s).");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

      Init(2);
      // Create nested loop:
      //  while (input1 < 6) {
      //    inner_input1 = input1
      //    while (inner_input1 < 3) {
      //      input2 += 1
      //      inner_input1 += 2
      //    }
      //    input1 += input2
      //  }
      //
      // Expected execution with initial values input1 = input2 = 0:
      //
      // outer inner               inner_
      // step# step# input1 input2 input1
      // ------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

      }
      func.return
    }
    
    // CHECK:      [[INPUT_A:%.+]], {{%.+}} = tf_executor.island {
    // CHECK-NEXT:   [[OP_A_OUTPUT:%.+]] = "tf.opA"([[ARG_0]])
    // CHECK-NEXT:   tf_executor.yield [[OP_A_OUTPUT]] :
    // CHECK:      [[ISLAND_0_OUTPUT:%.+]], {{%.+}} = tf_executor.island {
    // CHECK-NEXT:   [[OP_B_OUTPUT:%.+]] = "tf.opB"([[INPUT_A]]) {_parallel_execution_ids = "p0:0"}
    // CHECK:        tf_executor.yield [[OP_B_OUTPUT]] :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/legacy-fed-input-without-inputs.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input -tf-input-shapes='' -tf-output-arrays=input -tf-convert-legacy-fed-inputs -o - | FileCheck --check-prefix=NODATATYPE %s
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/README.md

    ```python
    import tensorflow as tf
    
    @Composite(
        'FusedFullyConnected',
        inputs=['input_: T', 'filter_: T', 'bias: T'],
        attrs=['act: {"", "RELU", "RELU6", "TANH"} = ""'],
        derived_attrs=['T: {float, int8}'],
        outputs=['o: T'])
    def _composite_fully_connected(input_, filter_, bias, act):
      res = tf.raw_ops.MatMul(
          a=input_, b=filter_, transpose_a=False, transpose_b=True)
      res = tf.raw_ops.Add(x=res, y=bias)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/composite.py

                   op_name,
                   inputs=None,
                   attrs=None,
                   derived_attrs=None,
                   outputs=None):
        self._op_name = op_name
        self._inputs = inputs
        self._attrs = attrs
        self._derived_attrs = derived_attrs
        self._outputs = outputs
    
      def __call__(self, compose_fn):
        # TODO(fengliuai): more sanity check of the input function and make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

      %data_format = tfr.constant "NHWC" -> !tfr.attr
      %MaxPool = tfr.call @tf__max_pool(%input_, %stride, %filter, %padding, %explicit_paddings, %data_format) : (!tfr.tensor, !tfr.attr, !tfr.attr, !tfr.attr, !tfr.attr, !tfr.attr) -> (!tfr.tensor)
      tfr.return %MaxPool : !tfr.tensor
    // CHECK: tf__max_pool
    }
    
    // CHECK-LABEL: @tf__cast_float
    tfr.func @tf__cast_float(%input_: !tfr.tensor, %out_type: !tfr.attr{tfr.name="out_type"}) -> (!tfr.tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

              .format(op_name, expected_args, all_func_args))
    
        cxx_reg_code = ['\nREGISTER_OP("{}")'.format(op_name)]
        for input_ in inputs:
          cxx_reg_code.append('.Input("{}")'.format(input_))
        for attr in attrs:
          py_str = attr.replace('"', "'")
          cxx_reg_code.append('.Attr("{}")'.format(py_str))
        for attr in all_dec_args.get('derived_attrs', []):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/emptydecl.input

    Robert Griesemer <******@****.***> 1408667113 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 148 bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/stdin2.input

    Robert Griesemer <******@****.***> 1408667113 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 101 bytes
    - Viewed (0)
Back to top