Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for new_args (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME: %[[INPUT:[a-z0-9]+]]: tensor<2x4x8x16x32x64xf32>
    func.func @strided_slice_new_axis_mask(%input: tensor<2x4x8x16x32x64xf32>) {
      // For StridedSlice input[1, tf.new_axis, ..., 8:, :10, 2:6:2, tf.new_axis]
      // New axis mask is at index 1 and 6 of sparse spec, so
      // new_axis_mask = 2^1 + 2^6 = 66
      // The ellipsis mask is applied to dim #1, #2 of input i.e, we get
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    
    #if GTEST_HAS_DEATH_TEST
    
    const ::std::vector<testing::internal::string>& GetInjectableArgvs();
    void SetInjectableArgvs(const ::std::vector<testing::internal::string>*
                                 new_argvs);
    
    // A copy of all command line arguments.  Set by InitGoogleTest().
    extern ::std::vector<testing::internal::string> g_argvs;
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    // Defines synchronization primitives.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      dense->end.resize(dense->dims);
      dense->strides.resize(dense->dims);
      dense->begin_mask = 0;
      dense->end_mask = 0;
      dense->shrink_axis_mask = 0;
    
      // Count number of new_axis after ellipsis. This helps in calculating the
      // number of dimensions ellipsis represents in the sparse spec.
      bool ellipsis_seen = false;
      int num_new_axis_after_ellipsis = 0;
    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/ir/tf_generated_ops.td

        TensorOf<[TF_Float16, TF_Float32, TF_Float64, TF_Int8, TF_Qint8]>:$filter,
        Variadic<TF_Tensor>:$args,
        Variadic<TF_Float32Tensor>:$host_args,
    
        ConfinedAttr<I64Attr, [IntMinValue<0>]>:$num_args,
        I64ArrayAttr:$strides,
        TF_AnyStrAttrOf<["SAME", "VALID", "EXPLICIT"]>:$padding,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$explicit_paddings,
    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