Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for DT_COMPLEX64 (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

          mlir::IntegerType::get(
              &context, 64, mlir::IntegerType::SignednessSemantics::Unsigned)));
    
      ASSERT_NO_FATAL_FAILURE(VerifyConversion<std::complex<float>>(
          {{0.0, 1.0}, {1.0, 0.0}}, DT_COMPLEX64,
          mlir::ComplexType::get(mlir::FloatType::getF32(&context))));
      ASSERT_NO_FATAL_FAILURE(VerifyConversion<std::complex<double>>(
          {{0.0, 1.0}, {1.0, 0.0}}, DT_COMPLEX128,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          return DT_UINT64;
        case toco::IODataType::STRING:
          return DT_STRING;
        case toco::IODataType::BOOL:
          return DT_BOOL;
        case toco::IODataType::COMPLEX64:
          return DT_COMPLEX64;
        case toco::IODataType::COMPLEX128:
          return DT_COMPLEX128;
        case toco::IODataType::RESOURCE:
          return DT_RESOURCE;
        case toco::IODataType::VARIANT:
          return DT_VARIANT;
        default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

                  type: DT_DOUBLE
                  type: DT_UINT8
                  type: DT_INT8
                  type: DT_INT16
                  type: DT_INT32
                  type: DT_INT64
                  type: DT_COMPLEX64
                  type: DT_COMPLEX128
                  type: DT_STRING
                }
              }
            }
          }
          op {
            name: "Assign"
            input_arg {
              name: "ref"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

    // Conjugate helper function returns the conjugate of an Output if it
    // is complex valued.
    Output ConjugateHelper(const Scope& scope, const Output& out) {
      DataType dtype = out.type();
      if (dtype == DT_COMPLEX64 || dtype == DT_COMPLEX128) {
        return Conj(scope, out);
      } else {
        return out;
      }
    }
    
    // TODO(andydavis) Add control dependencies to gradient functions (as needed).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

    TEST_KERNEL_TYPE_CONSTRAINT(TF_UINT16, DT_UINT16);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_UINT8, DT_UINT8);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_INT8, DT_INT8);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_INT32, DT_INT32);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_COMPLEX64, DT_COMPLEX64);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_COMPLEX128, DT_COMPLEX128);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_QINT8, DT_QINT8);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_QUINT8, DT_QUINT8);
    TEST_KERNEL_TYPE_CONSTRAINT(TF_QINT32, DT_QINT32);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

    };
    
    // Template instantiations here
    
    inline bool IsDtypeTrainable(DataType dtype) {
      switch (dtype) {
        case DT_HALF:
        case DT_BFLOAT16:
        case DT_FLOAT:
        case DT_DOUBLE:
        case DT_COMPLEX64:
        case DT_COMPLEX128:
        case DT_RESOURCE:
        case DT_VARIANT:
          return true;
        case DT_QINT8:
        case DT_QINT16:
        case DT_QINT32:
        case DT_QUINT8:
        case DT_QUINT16:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_INT8, static_cast<TF_DataType>(tensorflow::DT_INT8));
      EXPECT_EQ(TF_STRING, static_cast<TF_DataType>(tensorflow::DT_STRING));
      EXPECT_EQ(TF_COMPLEX64, static_cast<TF_DataType>(tensorflow::DT_COMPLEX64));
      EXPECT_EQ(TF_COMPLEX, TF_COMPLEX64);
      EXPECT_EQ(TF_INT64, static_cast<TF_DataType>(tensorflow::DT_INT64));
      EXPECT_EQ(TF_BOOL, static_cast<TF_DataType>(tensorflow::DT_BOOL));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

              dtype == tensorflow::DT_HALF || dtype == tensorflow::DT_BFLOAT16 ||
              dtype == tensorflow::DT_FLOAT || dtype == tensorflow::DT_DOUBLE ||
              dtype == tensorflow::DT_COMPLEX64 ||
              dtype == tensorflow::DT_COMPLEX128 || dtype == tensorflow::DT_BOOL) {
            return {};
          }
        }
      }
    
      // Permutations defined by constant operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top