Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DT_COMPLEX64 (0.21 sec)

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

        // TODO(b/188995810): DenseElementsAttr::get doesn't support complex
        // Attributes being passed, so we bail out for now. This should just be
        //   MATCH(DT_COMPLEX64, scomplex) / 2;
        //   MATCH(DT_COMPLEX128, dcomplex) / 2;
        // when DenseElementsAttr is updated.
        case DT_COMPLEX64:
        case DT_COMPLEX128:
        default:
          return -1;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top