Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for X__val (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            Args:
              use_variable: If True, creates a variable for weight.
            """
            super().__init__()
            w_val = np.random.randn(128, 32).astype('f4')
            if use_variable:
              self.w = variables.Variable(w_val)
            else:
              self.w = w_val
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Replace
    //   (float)OneHot(index, depth, on_val, off_val, axis)
    // With
    //   OneHot(index, depth, (float)on_val, (float)off_val, axis)
    def FuseOneHotAndCastToFloat : Pat<
      (TFL_CastOp:$output (TFL_OneHotOp $indices,
                                        $depth,
                                        (Arith_ConstantOp $on_val),
                                        (Arith_ConstantOp $off_val),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              use_variable: If True, creates a variable for weight.
            """
            super(GatherModel, self).__init__()
            w_val = np.random.randn(128, 32).astype('f4')
            if use_variable:
              self.w = variables.Variable(w_val)
            else:
              self.w = w_val
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"FreeAddrInfoW", Func, 1},
    		{"FreeEnvironmentStrings", Func, 0},
    		{"FreeLibrary", Func, 0},
    		{"Fsid", Type, 0},
    		{"Fsid.Val", Field, 0},
    		{"Fsid.X__fsid_val", Field, 2},
    		{"Fsid.X__val", Field, 0},
    		{"Fstat", Func, 0},
    		{"Fstatat", Func, 12},
    		{"Fstatfs", Func, 0},
    		{"Fstore_t", Type, 0},
    		{"Fstore_t.Bytesalloc", Field, 0},
    		{"Fstore_t.Flags", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _outputs = _o->outputs.size() ? _fbb.CreateVector<::flatbuffers::Offset<tflite::TensorMap>> (_o->outputs.size(), [](size_t i, _VectorArgs *__va) { return CreateTensorMap(*__va->__fbb, __va->__o->outputs[i].get(), __va->__rehasher); }, &_va ) : 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        // number without knowing this, so we need to manually dispatch to each
        // possible member of TensorProto, depening on its dtype.
    #define MATCH(DTYPE, FIELD) \
      case DTYPE:               \
        return tensor.FIELD##_val().size()
    
      switch (tensor.dtype()) {
        MATCH(DT_FLOAT, float);
        MATCH(DT_DOUBLE, double);
        MATCH(DT_INT8, int);
        MATCH(DT_UINT8, int);
        MATCH(DT_INT16, int);
        MATCH(DT_UINT16, int);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (shape_x.size() == shape_y.size()) {
        llvm::SmallVector<int64_t, 4> out_shape(shape_x.size());
        for (int i = 0; i < shape_x.size(); i++) {
          auto x_val = shape_x[i];
          auto y_val = shape_y[i];
          out_shape[i] = std::max(x_val, y_val);
        }
        return tensorflow::GetTypeFromTFTensorShape(out_shape, element_type);
      }
    
      auto shape_large = shape_x.size() > shape_y.size() ? shape_x : shape_y;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	DT_ENCODING     DynTag = 32 /* Values greater than or equal to DT_ENCODING
    	   and less than DT_LOOS follow the rules for
    	   the interpretation of the d_un union
    	   as follows: even == 'd_ptr', even == 'd_val'
    	   or none */
    	DT_PREINIT_ARRAY   DynTag = 32 /* Address of the array of pointers to pre-initialization functions. */
    	DT_PREINIT_ARRAYSZ DynTag = 33 /* Size in bytes of the array of pre-initialization functions. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top