Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ParallelDynamicStitch (0.41 sec)

  1. tensorflow/cc/gradients/data_flow_grad.cc

        grad_outputs->push_back(Gather(scope, grad_inputs[0], index));
      }
    
      return scope.status();
    }
    REGISTER_GRADIENT_OP("DynamicStitch", DynamicStitchGrad);
    REGISTER_GRADIENT_OP("ParallelDynamicStitch", DynamicStitchGrad);
    
    }  // anonymous namespace
    }  // namespace ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      func.return %0 : tensor<1x2xf32>
    }
    
    // CHECK-LABEL: func @ParallelDynamicStitch
    func.func @ParallelDynamicStitch(%arg0: tensor<2x2xf32>) -> tensor<2x2xf32> {
      %indices = "tf.Const"() {value = dense<[1, 0]> : tensor<2xi32>} : () -> tensor<2xi32>
      // CHECK-NOT: tf.ParallelDynamicStitch
      %0 = "tf.ParallelDynamicStitch"(%indices, %arg0) : (tensor<2xi32>, tensor<2x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Values are merged in order, so if an index appears in both `indices[m][i]` and
    `indices[n][j]` for `(m,i) < (n,j)` the slice `data[n][j]` will appear in the
    merged result. If you do not need this guarantee, ParallelDynamicStitch might
    perform better on some devices.
    
    For example:
    
    ```python
        indices[0] = 6
        indices[1] = [4, 1]
        indices[2] = [[5, 2], [0, 3]]
        data[0] = [61, 62]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top