Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for deim (0.05 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

      SmallVector<int64_t, 4> permutation_array(updates_type.getRank());
      int64_t dim = 0;
      // Move leading indices to the back of the array.
      const auto permutation_array_size = permutation_array.size();
      for (int64_t i = update_window_dims.size(); i < permutation_array_size; ++i) {
        permutation_array[i] = dim;
        ++dim;
      }
      // Move trailing indices to the front of the array.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/end2end/unroll_batch_matmul.pbtxt

      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 2
            }
            dim {
              size: 5
            }
            dim {
              size: 3
            }
          }
        }
      }
    }
    node {
      name: "Placeholder_1"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example_v2.pbtxt

            dtype: DT_FLOAT
            tensor_shape {
              dim {
              }
            }
          }
        }
      }
    }
    node {
      name: "ParseExample/Const_1"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_FLOAT
            tensor_shape {
              dim {
              }
            }
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes.pbtxt

          tensor {
            dtype: DT_INT64
            tensor_shape {
              dim {
                size: 2
              }
            }
            tensor_content: "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00"
          }
        }
      }
      attr {
        key: "_output_shapes"
        value {
          list {
            shape {
              dim {
                size: 2
              }
            }
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 21 04:07:13 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. tensorflow/c/kernels/tensor_shape_utils.cc

      tensorflow::string s = "[";
      for (int i = 0; i < TF_NumDims(tensor); ++i) {
        if (i > 0) tensorflow::strings::StrAppend(&s, ",");
        int64_t dim = TF_Dim(tensor, i);
        // A TF_Tensor cannot have an unknown dimension.
        CHECK_GE(dim, 0);
        tensorflow::strings::StrAppend(&s, dim);
      }
      tensorflow::strings::StrAppend(&s, "]");
      return s;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 03 21:44:58 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/test_graph_tfunknownop.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 233 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/test_graph_tfgather.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "params" }
      shape {
        dim { size: 4 }
      }
    }
    feed {
      id { node_name: "indices" }
      shape {
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "gather_output" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 238 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

      llvm::SmallVector<bool, 4> is_reduce_dim(rank, false);
      for (const APInt &index : indices.getValues<APInt>()) {
        int64_t dim = GetDimForAxis(index.getSExtValue(), rank);
        // Invalid input.
        if (dim < 0 || dim >= rank) return UnrankedTensorType::get(element_ty);
    
        if (!is_reduce_dim[dim]) {
          is_reduce_dim[dim] = true;
          num_reduce_dim++;
        }
      }
    
      ArrayRef<int64_t> shape = ranked_ty.getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tests/test_graph_tfcond.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "p_hold" }
      shape {}
    }
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "result" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 08 01:00:16 UTC 2018
    - 279 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_STRING
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_STRING
            tensor_shape {
              dim {
                size: 1
              }
            }
            string_val: ""
          }
        }
      }
    }
    node {
      name: "Const"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_STRING
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top