Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TruncatedNormal (0.15 sec)

  1. tensorflow/compiler/jit/compilability_check_util.h

        return op_name == "RandomUniform" || op_name == "RandomShuffle" ||
               op_name == "RandomUniformInt" || op_name == "RandomStandardNormal" ||
               op_name == "TruncatedNormal" || op_name == "Multinomial";
      }
    
      bool OpProducesOrConsumesVariant(const Node& node) const {
        auto is_variant = [](DataType dtype) { return dtype == DT_VARIANT; };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // return %[[RESULT]]
        func.return %0 : tensor<*xf32>
      }
    
      func.func @truncated_normal() -> tensor<2x2xf32> {
        // CHECK-NOT: tf.TruncatedNormal
        %0 = mhlo.constant dense<[2, 2]> : tensor<2xi32>
        %1 = "tf.TruncatedNormal"(%0) {T = i32, device = "", dtype = f32, seed = 0 : i64, seed2 = 1950157571 : i64} : (tensor<2xi32>) -> tensor<2x2xf32>
        func.return %1 : tensor<2x2xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top