Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fully_connected (0.31 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0, %1, %2 : tensor<2xi32>, tensor<2xf32>, tensor<i32>
    }
    
    // -----
    
    func.func @fully_connected(%arg0: tensor<1x37xf32>, %arg1: tensor<40x37xf32>, %arg2: tensor<40xf32>) -> tensor<1x40xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK: %[[ARG:.*]] = "tfl.transpose"(%arg1, %[[CST]]) : (tensor<37x40xf32>, tensor<2xi32>) -> tensor<40x37xf32>
    // CHECK: %[[CST_0:.*]] = "tfl.no_value"() <{value}> : () -> none
    // CHECK: "tfl.fully_connected"(%arg0, %[[ARG]], %[[CST_0]]) <{fused_activation_function = "NONE", keep_num_dims = false, weights_format = "DEFAULT"}> : (tensor<40x37xf32>, tensor<40x37xf32>, none) -> tensor<40x40xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        std::vector<int> GetQuantizableOperandIndices() { return {1}; }
      }];
    }
    
    // TODO(jpienaar): Update post discussion on semantics of FC OP.
    def TFL_FullyConnectedOp : TFL_Op<"fully_connected", [
        Pure, AccumulatorUniformScale<2, 0, 1>,
        AffineQuantizedOpInterface,
        AffineOpCoefficient<0, 1>,
        TFL_SparseOp,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>,
        QuantizableResult,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. RELEASE.md

        modified to return nan when they have seen less or equal to 1 unit of
        weight.
    *   Adds time series models to contrib. See contrib/timeseries/README.md for
        details.
    *   Adds FULLY_CONNECTED Op to tensorflow/lite/schema.fbs
    
    ## Known Issues
    
    *   Tensorflow_gpu compilation fails with Bazel 0.5.3.
    
    ## Bug Fixes and Other Changes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top