Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for DT_INT64 (0.16 sec)

  1. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      ASSERT_EQ(absl::OkStatus(),
                model_api->GetVariable("sub_module.uninitialized_variable",
                                       &uninitialized_variable));
      ASSERT_EQ(tensorflow::DT_INT64, uninitialized_variable->dtype());
    
      TF_DeleteSavedModel(saved_model);
      TF_DeleteStatus(status);
      TFE_DeleteContext(ctx);
    }
    
    TEST_P(CSavedModelAPITest, LoadSavedModelWithWhileLoop) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, GatherNdGrad_SliceIndexing_Int64) {
      TensorShape shape({2, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto indices = Cast(scope_, Const(scope_, {{1}, {0}}), DT_INT64);
      auto y = GatherNd(scope_, x, indices);
      RunTest(x, shape, y, shape);
    }
    
    TEST_F(ArrayGradTest, CheckNumericsGrad) {
      TensorShape shape({5, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_util.cc

        case DT_INT16:
        case DT_QINT16:
          return PrintArray(num_elts, t.flat<int16>().data());
        case DT_INT8:
        case DT_QINT8:
          return PrintArray(num_elts, t.flat<int8>().data());
        case DT_INT64:
          return PrintArray(num_elts, t.flat<int64_t>().data());
        case DT_BOOL:
          return PrintArray(num_elts, t.flat<bool>().data());
        case DT_STRING: {
          string ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/array_grad.cc

      // so it's fine to convert it back to int32 regardless of truncation.
      auto params = op.input(0);
      auto colocate_scope = scope.ColocateWith(params);
      Shape::Attrs shape_attrs;
      shape_attrs.out_type_ = DT_INT64;
      auto params_shape64 = Shape(colocate_scope, params, shape_attrs);
      Output params_shape = Cast(colocate_scope, params_shape64, DT_INT32);
    
      auto indices = op.input(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      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));
      EXPECT_EQ(TF_QINT8, static_cast<TF_DataType>(tensorflow::DT_QINT8));
      EXPECT_EQ(TF_QUINT8, static_cast<TF_DataType>(tensorflow::DT_QUINT8));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (status.ok()) {
          // We can only leave the transpose op on host if its dtype is supported on
          // host.
          if (dtype == tensorflow::DT_UINT64 || dtype == tensorflow::DT_INT64 ||
              dtype == tensorflow::DT_UINT32 || dtype == tensorflow::DT_INT32 ||
              dtype == tensorflow::DT_UINT16 || dtype == tensorflow::DT_INT16 ||
    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