Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsVector (0.36 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        } else if (value.IsFloat()) {
          mlir_vector.push_back(BuildVhloFloatV1Attr(value.AsFloat(), builder));
        } else if (value.IsVector()) {
          std::vector<mlir::Attribute> nested_mlir_vector =
              BuildAttributeVectorFromFlatbuffer(value.AsVector(), builder);
          mlir_vector.push_back(
              BuildVhloArrayV1Attr(std::move(nested_mlir_vector), builder));
        }
      }
    
      return mlir_vector;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        if (!flexbuffers::VerifyBuffer(opt_data, opt_size)) {
          return emitError(loc, "invalid custom options");
        }
    
        const flexbuffers::Vector& v =
            flexbuffers::GetRoot(opt_data, opt_size).AsVector();
    
        op_name = v[0].AsString().str();
    
        if (!node_def.ParseFromString(v[1].AsString().str())) {
          return emitError(
              loc, "failed to parse 'custom_options' data into a valid NodeDef");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. RELEASE.md

        example, the shape argument to `tf.reshape` can't be a scalar anymore). The
        open source release was already scalar strict, so outside Google `IsScalar`
        and `IsVector` are exact replacements.
    *   The following files are being removed from `tensorflow/core/public/`:
        *   `env.h` -> `../platform/env.h`
        *   `status.h` -> `../lib/core/status.h`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type DmTargetDeps struct {
    	Count uint32
    	_     uint32
    }
    
    type DmTargetVersions struct {
    	Next    uint32
    	Version [3]uint32
    }
    
    type DmTargetMsg struct {
    	Sector uint64
    }
    
    const (
    	SizeofDmIoctl      = 0x138
    	SizeofDmTargetSpec = 0x28
    )
    
    type KeyctlDHParams struct {
    	Private int32
    	Prime   int32
    	Base    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top