Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LinSpace (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[LINSPACE:%.*]] = chlo.broadcast_add [[MUL]], [[START]] {broadcast_dimensions = array<i64>}
      // CHECK: return [[LINSPACE]]
      %0 = "tf.Const"() {_output_shapes = ["tfshape$"], device = "", dtype = i32, value = dense<4> : tensor<i32>} : () -> tensor<i32>
      %1 = "tf.LinSpace"(%arg0, %arg1, %0) : (tensor<f32>, tensor<f32>, tensor<i32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        axis.push_back((val.getSExtValue() + rank) % rank);
      }
    
      return builder->getI64TensorAttr(axis);
    }
    
    /// Converts the LinSpace tensorflow op to a mhlo.iota op with a scaling
    /// and offset applied to generate the linspace values. The output tensor needs
    /// to have a static shape.  The implementation is defined in C++ because there
    /// is no type inference for the iota op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top