Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for DT_INT64 (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

            string_val: "value"
          }
        }
      }
    }
    node {
      name: "Const_2"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_INT64
            tensor_shape {
            }
            int64_val: -1
          }
        }
      }
    }
    node {
      name: "result"
      op: "ParseExample"
      input: "serilaized"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

                       .WithXlaCluster("cluster_0");
    
      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT64);
      Output size = ops::Placeholder(root.WithOpName("size"), DT_INT64);
      Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size);
    
      std::unique_ptr<Graph> result;
      TF_ASSERT_OK(IncreaseDynamismForAutoJit(root, &result));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

          {},
          // Nodes
          {
              {{"two"},
               "Const",
               {},
               {{"value", test::AsScalar<int32>(2)}, {"dtype", DT_INT64}}},
              {{"scale"},
               "Cast",
               {"two"},
               {{"SrcT", DT_INT64}, {"DstT", DT_FLOAT}}},
              {{"y"}, "Mul", {"x", "scale"}, {{"T", DT_FLOAT}}},
          });
    
      tensorflow::set_tf2_execution(true);
      FunctionDefLibrary flib;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

      return {slice_inputs};
    }
    
    // Casts `x` to a DT_INT64 if it isn't one already.
    Output MakeInt64(const Scope& host_scope, absl::string_view name,
                     const Output& x) {
      return x.type() == DT_INT64
                 ? x
                 : ops::Cast(host_scope.WithOpName(name, "_s64"), x, DT_INT64);
    }
    
    // Returns `slice_inputs` with the index and size inputs cast to DT_INT64.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
    
      const std::string dir = testing::TmpDir();
      const std::string output_file_path = io::JoinPath(dir, "statistics.pbtxt");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/parse_example_v2.mlir

    "tfdtype$DT_FLOAT"], dense_shapes = [#tf_type.shape<>, #tf_type.shape<>], device = "", num_sparse = 2 : i64, ragged_split_types = [], ragged_value_types = [], resultSegmentSizes = array<i32: 2, 2, 2, 2, 0, 0>, sparse_types = ["tfdtype$DT_STRING", "tfdtype$DT_INT64"]} : (tensor<32x!tf_type.string>, tensor<0x!tf_type.string>, tensor<2x!tf_type.string>, tensor<2x!tf_type.string>, tensor<0x!tf_type.string>, tensor<0xf32>, tensor<0xf32>) -> (tensor<?x2xi64>, tensor<?x2xi64>, tensor<?x!tf_type.string>, tensor<?xi64>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-resource-args.pbtxt

    node {
      name: "x"
      op: "VarHandleOp"
      device: "/CPU:0"
      attr {
        key: "container"
        value {
          s: "a"
        }
      }
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: "x"
        }
      }
    }
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

        case DT_INT16:
          *type = builder.getIntegerType(16);
          return absl::OkStatus();
        case DT_INT32:
          *type = builder.getIntegerType(32);
          return absl::OkStatus();
        case DT_INT64:
          *type = builder.getIntegerType(64);
          return absl::OkStatus();
        case DT_UINT8:
          *type = builder.getIntegerType(8, /*isSigned=*/false);
          return absl::OkStatus();
        case DT_UINT16:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/parse_example.mlir

    // CHECK-NEXT:   value {
    // CHECK-NEXT:     i: 0
    // CHECK-NEXT:   }
    // CHECK-NEXT: }
    // CHECK-NEXT: attr {
    // CHECK-NEXT:   key: "Tdense"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     list {
    // CHECK-NEXT:       type: DT_INT64
    // CHECK-NEXT:     }
    // CHECK-NEXT:   }
    // CHECK-NEXT: }
    // CHECK-NEXT: attr {
    // CHECK:        key: "dense_shapes"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     list {
    // CHECK-NEXT:       shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/convert_type.cc

        case tflite::TensorType_INT32:
          return tensorflow::DT_INT32;
        case tflite::TensorType_UINT32:
          return tensorflow::DT_UINT32;
        case tflite::TensorType_INT64:
          return tensorflow::DT_INT64;
        case tflite::TensorType_STRING:
          return tensorflow::DT_STRING;
        case tflite::TensorType_UINT8:
          return tensorflow::DT_UINT8;
        case tflite::TensorType_UINT16:
          return tensorflow::DT_UINT16;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top