Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for DT_INT64 (0.25 sec)

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

      attr: {
        key: "Tcaptured"
        value: {
          list: {
            type: [DT_INT64]
          }
        }
      }
      attr: {
        key: "Tin"
        value: {
          list: {
            type: [DT_INT64]
          }
        }
      }
      attr: {
        key: "Tout"
        value: {
          list: {
            type: [DT_INT64]
          }
        }
      }
      attr: {
        key: "batch_timeout_micros"
        value: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes.pbtxt

              }
            }
          }
        }
      }
    }
    node {
      name: "Const0"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_INT64
            tensor_shape {
            }
            int64_val: -1
          }
        }
      }
      attr {
        key: "_output_shapes"
        value {
          list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 21 04:07:13 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/kernels/bitcast_op_test.cc

      OpDef op_def = reg->op_def;
      NodeDef def;
      TF_CHECK_OK(NodeDefBuilder("dummy", &op_def)
                      .Attr("type", DT_INT8)
                      .Attr("T", DT_INT64)
                      .Input(FakeInput(DT_INT64))
                      .Finalize(&def));
      shape_inference::InferenceContext c(0, def, op_def, {S({3, 4})}, {}, {}, {});
      std::vector<shape_inference::ShapeHandle> input_shapes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

        tf_executor.fetch %0#2 : !tf_executor.control
      }
      func.return
    }
    
    // CHECK-LABEL: func @testNextIterationMissingSourceDevice
    func.func @testNextIterationMissingSourceDevice() {
      tf_executor.graph {
        // CHECK:      tf_executor.NextIteration.Source
        %0:3 = tf_executor.NextIteration.Source : tensor<i64> {T = "tfdtype$DT_INT64"}
        // CHECK:      "tf.Identity"({{.+}}) :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/const-values.pbtxt

          }
        }
      }
    }
    node {
      name: "y"
      op: "Const"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_INT64
            tensor_shape {
              dim {
                size: 2
              }
              dim {
                size: 3
              }
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top