Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for narrower (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                absl::StrJoin(names, ", "),
                " with multiple concrete functions. Add "
                "@tf.function(input_signature=[...]) on this function, or use a "
                "narrower list of exported names that excludes this function.");
          }
        }
      }
      return absl::OkStatus();
    }
    
    // Recursively traverses a StructuredValue, linearizing all the leaves.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_fiat64.go

    package fiat
    
    import "math/bits"
    
    type p521Uint1 uint64 // We use uint64 instead of a more narrow type for performance reasons; see https://github.com/mit-plv/fiat-crypto/pull/1006#issuecomment-892625927
    type p521Int1 int64   // We use uint64 instead of a more narrow type for performance reasons; see https://github.com/mit-plv/fiat-crypto/pull/1006#issuecomment-892625927
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                .succeeded()) {
          CreateResizeBilinearOp(conv_op, output_sizes, align_corners, rewriter);
          return success();
        }
    
        // These checks narrow down the support to depthwise transpose conv2d.
        mhlo::ConvDimensionNumbersAttr dnums = conv_op.getDimensionNumbers();
        const int input_feature_dimension = dnums.getInputFeatureDimension();
        const int input_channels =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top